index.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. // 慢阻肺患者档案-服务档案
  2. var template = ''
  3. $.ajax('../../../component/statistics/CopdServeNum/index.html', {
  4. data: {},
  5. dataType: 'html',
  6. cache: false,
  7. timeout: 60000,
  8. async: false,
  9. error: function (res) {},
  10. success: function (res) {
  11. template = res
  12. }
  13. })
  14. Vue.component('copd-serve-num', {
  15. template: template,
  16. props: [],
  17. data() {
  18. return {
  19. // 当前显示的字段
  20. communityArr: [],
  21. tableFieldList: [],
  22. quotaStrArr: [],
  23. value1: [],
  24. rangeList: [
  25. { name: '按区', code: 'town' },
  26. { name: '按社区', code: 'hospital' }
  27. ],
  28. startTime: '',
  29. endTime: '',
  30. rangeCode: 'town',
  31. quotaStr: '',
  32. range: '',
  33. area: '',
  34. hospital: '',
  35. page: 1,
  36. size: 20,
  37. chooseYear: '',
  38. years: '',
  39. userRole: '',
  40. levelList: [
  41. { level: '4', areaLevel: '2' },
  42. { level: '3', areaLevel: '3' },
  43. { level: '2', areaLevel: '4' }
  44. ], //两种搜索,地区等级对比
  45. areaLevel: '', // 2、市,3、区,4、社区,5、团队
  46. initareaLevel: '',
  47. initlevel: '',
  48. initarea: '',
  49. level: '',
  50. areaTitle: '',
  51. areaCode: null,
  52. communityList: [{ code: '', name: '全部' }],
  53. communityCode: null,
  54. teamList: [{ code: '', name: '全部' }],
  55. teamCode: '',
  56. form: {
  57. range: 'town'
  58. },
  59. userRoleCode: '',
  60. docInfo: JSON.parse(window.localStorage.getItem('docInfo')),
  61. isShowBtn: false,
  62. isGuGan: false,
  63. areaList: [],
  64. rangeList: [
  65. { name: '按区', code: 'town' },
  66. { name: '按社区', code: 'hospital' }
  67. ],
  68. areaList: [],
  69. tabledata: [],
  70. hospitalOptions: [],
  71. tableHeader: [
  72. { label: '地区', prop: 'name', width: '90' },
  73. { label: '总患者人数', prop: 'patientNum', width: '90' },
  74. { label: '计划服务人数', prop: 'planNum', width: '90' },
  75. { label: '已服务人数', prop: 'serviceNum', width: '90' },
  76. { label: '服务完成度', prop: 'serviceProgress', width: '90' }
  77. ],
  78. radio: '1',
  79. fileList: [],
  80. file: undefined,
  81. isProgressShow: false,
  82. percentage: 0,
  83. success: false,
  84. loading: false,
  85. isOver: false,
  86. status: '',
  87. errList: [],
  88. daLoading: false,
  89. isShow: false,
  90. datatotal: 0,
  91. exportLoading: false
  92. }
  93. },
  94. methods: {
  95. gotoDownLoad() {
  96. const a = document.createElement('a')
  97. a.style.display = 'none'
  98. a.download = '模板.xlsx'
  99. a.href = './template.xls'
  100. a.target = '_blank'
  101. a.click()
  102. },
  103. hospitalList() {
  104. var vm = this
  105. statisticAPI.hospitalList({ queryArea: vm.userRoleCode }).then(function (res) {
  106. if (res.status == 200) {
  107. vm.communityArr = res.detailModelList
  108. }
  109. })
  110. },
  111. //获取省市区 type:区3
  112. getDistrict: function (type, code, name) {
  113. var vm = this,
  114. list = [],
  115. param = ''
  116. if (type == 3) {
  117. list = [{ code: code, name: name }]
  118. param = 'area'
  119. } else if (type == 5) {
  120. list = [{ code: '', name: '全部' }]
  121. param = 'community'
  122. }
  123. var params = {
  124. type: type,
  125. code: code
  126. }
  127. homeAPI.getDistrict(params).then(function (res) {
  128. if (res.status == 200) {
  129. vm[param + 'List'] = list.concat(res.list)
  130. if (type == 3) {
  131. vm[param + 'Code'] = vm[param + 'List'][0].code
  132. vm.selChange(3)
  133. vm.search()
  134. }
  135. } else {
  136. vm.$message.error(res.msg)
  137. }
  138. })
  139. },
  140. // 初始化时间
  141. initTime(vm) {
  142. var now = new Date()
  143. vm.endTime = now.format('yyyy-MM-dd')
  144. var start = now.getFullYear() + '-' + '01-01'
  145. vm.startTime = new Date(start).format('yyyy-MM-dd')
  146. vm.nowyear = vm.chooseYear = now.getFullYear()
  147. // vm.chooseYear = '2022'
  148. vm.nowmonth = now.getMonth() + 1
  149. vm.years = [2025]
  150. // for (i = vm.nowyear; i >= 2013; i--) {
  151. // vm.years.push(i)
  152. // }
  153. },
  154. resetArea() {
  155. if (this.level == 1) {
  156. delete this.areaCode
  157. delete this.hospital
  158. delete this.form.team
  159. } else if (this.level == 2) {
  160. delete this.form.hospital
  161. delete this.form.team
  162. } else {
  163. delete this.form.team
  164. }
  165. },
  166. // 数据范围初始化
  167. initScope(type) {
  168. var vm = this
  169. //获得缓存中缓存的角色权限
  170. var userRole = window.sessionStorage.getItem('selectedRole')
  171. if (!userRole) {
  172. return false
  173. }
  174. vm.userRole = JSON.parse(userRole)
  175. vm.areaTitle = vm.userRole.name
  176. if (vm.isGuGan) {
  177. return
  178. }
  179. if (type == 3) {
  180. this.areaCode = null
  181. this.communityCode = null
  182. if (vm.userRole.code == '350200' || vm.userRole.code == 'jk_350200') {
  183. vm.getDistrict(type, 350200, '厦门市')
  184. this.isShowBtn = true
  185. } else if (vm.userRole.code.indexOf('jk_') > -1) {
  186. vm.getDistrict(type, vm.userRole.code.substring(3), vm.areaTitle.substring(0, 3))
  187. this.isShowBtn = true
  188. } else if (vm.userRole.code.length == 6) {
  189. vm.getDistrict(type, vm.userRole.code, vm.areaTitle.substring(0, 3))
  190. } else if (vm.userRole.code.length == 10) {
  191. this.rangeList = [{ name: '按社区', code: 'hospital' }]
  192. this.rangeCode = 'hospital'
  193. this.areaList = [{ name: this.userRole.name.substring(0, 3), code: this.userRole.code.substring(0, 6) }]
  194. this.areaCode = this.userRole.code.substring(0, 6)
  195. this.communityList = [{ name: this.userRole.name, code: this.userRole.code }]
  196. this.communityCode = this.userRole.code
  197. }
  198. } else {
  199. this.communityCode = null
  200. if (this.rangeCode == 'hospital') vm.getDistrict(type, vm.areaCode)
  201. }
  202. return
  203. },
  204. toggleField(fieldName) {
  205. return this.tableFieldList.indexOf(fieldName) !== -1
  206. },
  207. selChange: function (type) {
  208. var vm = this,
  209. name = ''
  210. if (type == 3) {
  211. vm.initSelOption('community')
  212. vm.initSelOption('team')
  213. vm.getCommunityHospital()
  214. } else if (type == 5) {
  215. vm.initSelOption('team')
  216. // vm.teamListByArea();
  217. }
  218. },
  219. initSelOption: function (param) {
  220. var vm = this
  221. vm[param + 'List'] = [{ code: '', name: '全部' }]
  222. if (param == 'team') {
  223. vm[param + 'List'] = [{ id: '', name: '全部' }]
  224. }
  225. vm[param + 'Code'] = vm[param + 'List'][0].code || vm[param + 'List'][0].id
  226. },
  227. getCommunityHospital: function () {
  228. var vm = this,
  229. list = [{ code: '', name: '全部' }],
  230. param = 'community'
  231. homeAPI.getCommunityHospital({ area: vm.areaCode == '350200' ? '' : vm.areaCode }).then(function (res) {
  232. if (res.status == 200) {
  233. vm[param + 'List'] = list.concat(res.data)
  234. vm[param + 'Code'] = vm[param + 'List'][0].code
  235. } else {
  236. vm.$message.error(res.msg)
  237. }
  238. })
  239. },
  240. exportTable() {
  241. var vm = this
  242. vm.exportLoading = true
  243. var params = {
  244. year: this.chooseYear,
  245. range: this.rangeCode,
  246. area: this.areaCode == '350200' ? '' : this.areaCode === null ? '' : this.areaCode
  247. }
  248. if (this.rangeCode == 'hospital') {
  249. params.hospital = this.communityCode
  250. }
  251. statisticAPI.exportServiceProgress(params, '服务人数配置及进度查询.xls').then(function (res) {
  252. vm.exportLoading = false
  253. vm.$message({
  254. message: '导出成功!',
  255. type: 'success'
  256. })
  257. })
  258. },
  259. getHospital(code) {
  260. var vm = this
  261. homeAPI.getCommunityHospital({ area: vm.areaCode == '350200' ? '' : vm.areaCode }).then(function (res) {
  262. vm.communityList = [{ code: '', name: '全部' }]
  263. vm.communityList = vm.communityList.concat(res.data)
  264. })
  265. },
  266. getTeam(code) {
  267. var vm = this
  268. delete this.form.team
  269. var params = {
  270. hospital: code,
  271. area: this.form.area
  272. }
  273. httpRequest.get('statisticsExport/teamList', { data: params }).then(function (res) {
  274. vm.teamOptions = [{ id: '', name: '全部' }]
  275. vm.teamOptions = vm.teamOptions.concat(res.data)
  276. })
  277. },
  278. resetDate() {
  279. if (this.isGuGan) {
  280. this.rangeCode = 'hospital'
  281. this.areaCode = this.docInfo.town
  282. this.communityCode = this.docInfo.hospital
  283. } else {
  284. this.rangeCode = 'town'
  285. this.areaCode = ''
  286. this.communityCode = ''
  287. }
  288. },
  289. eliminateClick() {
  290. var selectedRole = JSON.parse(sessionStorage.getItem('selectedRole'))
  291. if (this.level == 1) {
  292. this.form = {
  293. range: 'town'
  294. }
  295. this.rangeCode = 'town'
  296. } else if (this.level == 2) {
  297. this.form = {
  298. range: 'town',
  299. area: selectedRole.code
  300. }
  301. this.getHospital(selectedRole.code)
  302. } else {
  303. this.form = {
  304. range: 'hospital',
  305. area: selectedRole.code.substring(0, 6),
  306. hospital: selectedRole.code
  307. }
  308. this.getTeam(selectedRole.code)
  309. }
  310. this.yearType = '1'
  311. this.chooseYear = new Date().getFullYear()
  312. this.chooseTime = null
  313. this.$forceUpdate()
  314. },
  315. handleCurrentChange(val) {
  316. this.page = val
  317. this.search()
  318. },
  319. handleSizeChange(val) {
  320. this.size = val
  321. this.search()
  322. },
  323. //上传
  324. toggle(isShow) {
  325. this.isShow = isShow
  326. if (!isShow) {
  327. this.reset()
  328. }
  329. },
  330. reset(type) {
  331. this.percentage = 0
  332. this.success = false
  333. this.isOver = false
  334. this.errList = []
  335. if (type != 1) {
  336. this.loading = false
  337. this.file = undefined
  338. this.month = ''
  339. }
  340. },
  341. search() {
  342. var vm = this
  343. vm.daLoading = true
  344. var params = {
  345. year: this.chooseYear,
  346. range: this.rangeCode,
  347. area: this.areaCode == '350200' ? '' : this.areaCode === null ? '' : this.areaCode
  348. }
  349. if (this.rangeCode == 'hospital') {
  350. params.hospital = this.communityCode
  351. }
  352. statisticAPI.getServiceProgress(params).then(function (res) {
  353. vm.daLoading = false
  354. if (res.status == 200) {
  355. vm.tabledata = res.detailModelList
  356. vm.totalCount = res.totalCount
  357. vm.totalPage = res.totalPage
  358. } else {
  359. vm.$message.error(res.msg)
  360. }
  361. })
  362. },
  363. close(type) {
  364. this.reset(type)
  365. this.isProgressShow = false
  366. if (type != 1) {
  367. this.isShow = false
  368. }
  369. },
  370. beforeUploadPic(file) {
  371. this.file = file
  372. },
  373. check() {
  374. var vm = this
  375. vm.loading = true
  376. if (!vm.file) {
  377. vm.loading = false
  378. vm.$message('请选择文件')
  379. return
  380. }
  381. vm.save()
  382. },
  383. save() {
  384. var vm = this
  385. vm.daLoading = true
  386. var formData = new FormData()
  387. formData.append('file', vm.file)
  388. // vm.initProgress()
  389. httpRequest
  390. .post('doctor/jkCopd/importPlanExcel', {
  391. data: formData,
  392. cache: false, //上传文件无需缓存
  393. processData: false, //用于对data参数进行序列化处理 这里必须false
  394. contentType: false //必须
  395. })
  396. .then(function (res) {
  397. if (res.status == 200) {
  398. vm.search()
  399. vm.daLoading = false
  400. vm.isShow = false
  401. vm.$message({
  402. message: '导入成功!',
  403. type: 'success'
  404. })
  405. } else {
  406. vm.$message.error('导入失败!')
  407. vm.daLoading = false
  408. }
  409. })
  410. .catch(function (e) {
  411. console.error(e)
  412. vm.daLoading = false
  413. })
  414. },
  415. initProgress() {
  416. var vm = this
  417. this.isProgressShow = true
  418. setTimeout(() => {
  419. if (!vm.isOver && vm.percentage != 90) {
  420. vm.percentage += 10
  421. vm.initProgress()
  422. }
  423. }, 1000)
  424. }
  425. },
  426. mounted() {
  427. var vm = this
  428. var userRole = JSON.parse(window.sessionStorage.getItem('selectedRole'))
  429. vm.userRoleCode = userRole.code
  430. this.initTime(this)
  431. if (this.docInfo.expandLevelName) {
  432. this.isGuGan = this.docInfo.expandLevelName.indexOf('慢病骨干') > -1
  433. }
  434. this.initScope(3)
  435. if (this.isGuGan) {
  436. // 如何是慢病骨干 则只能选社区,并且限定死社区
  437. this.rangeList = [{ name: '按社区', code: 'hospital' }]
  438. this.rangeCode = 'hospital'
  439. this.areaList = [{ name: this.docInfo.hospitalName.substring(0, 3), code: this.docInfo.town }]
  440. this.areaCode = this.docInfo.town
  441. this.communityList = [{ name: this.docInfo.hospitalName, code: this.docInfo.hospital }]
  442. this.communityCode = this.docInfo.hospital
  443. // vm.receivingHospitalList = [{code:this.docInfo.hospital,name:this.docInfo.hospitalName}]
  444. // this.hospital = this.docInfo.hospital
  445. }
  446. this.search()
  447. EventBus.$on('copd-record-filter-change', function (event) {
  448. vm.quotaStrArr = event
  449. })
  450. },
  451. destroyed() {
  452. EventBus.$off('copd-record-filter-change')
  453. }
  454. })