index.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464
  1. var template = ''
  2. $.ajax('../../../component/statistics/OutsideHospitalManage/index.html', {
  3. data: {},
  4. dataType: 'html',
  5. cache: false,
  6. timeout: 60000,
  7. async: false,
  8. error: function(res) {},
  9. success: function(res) {
  10. template = res
  11. }
  12. })
  13. Vue.component('outside-hospital-manage', {
  14. template: template,
  15. props: [],
  16. data: function() {
  17. return {
  18. years: [],
  19. yearType: '1',
  20. chooseYear: null,
  21. chooseTime: null,
  22. rangeOptions: [{ label: '区', value: 'town' }, { label: '医院', value: 'hospital' }, { label: '团队', value: 'team' }],
  23. hospitalOptions: [],
  24. teamOptions: [],
  25. form: {
  26. range: 'town'
  27. },
  28. loading: false,
  29. exportLoading: false,
  30. tableData: [
  31. {
  32. patientName: '11',
  33. idcard: '11',
  34. hospitalName: '11',
  35. doctorName: '',
  36. code: '11',
  37. v1Num: 1,
  38. vd1Num: 1
  39. }
  40. ],
  41. tableHeader: [
  42. { label: '医院名称', prop: 'patientName', width: '110' },
  43. { label: '患者总数', prop: 'idcard', width: '110' },
  44. { label: '康复管理人数', prop: 'hospitalName', width: '180' },
  45. { label: '康复计划数量', prop: 'doctorName', width: '110' }
  46. ],
  47. tableHeaderChildren: [
  48. {
  49. label: '复诊1',
  50. children: [
  51. {
  52. label: '应服务人次',
  53. prop: 'v1Num',
  54. width: '130'
  55. },
  56. {
  57. label: '已服务人次',
  58. prop: 'vd1Num',
  59. width: '130'
  60. }
  61. ]
  62. },
  63. {
  64. label: '复诊2',
  65. children: [
  66. {
  67. label: '应服务人次',
  68. prop: 'v1Num',
  69. width: '130'
  70. },
  71. {
  72. label: '已服务人次',
  73. prop: 'vd1Num',
  74. width: '130'
  75. }
  76. ]
  77. },
  78. {
  79. label: '复诊3',
  80. children: [
  81. {
  82. label: '应服务人次',
  83. prop: 'v1Num',
  84. width: '130'
  85. },
  86. {
  87. label: '已服务人次',
  88. prop: 'vd1Num',
  89. width: '130'
  90. }
  91. ]
  92. },
  93. {
  94. label: '复诊4',
  95. children: [
  96. {
  97. label: '应服务人次',
  98. prop: 'v1Num',
  99. width: '130'
  100. },
  101. {
  102. label: '已服务人次',
  103. prop: 'vd1Num',
  104. width: '130'
  105. }
  106. ]
  107. }
  108. ],
  109. page: 1,
  110. size: 10,
  111. total: 0,
  112. level: 0,
  113. messageVisible: false,
  114. messTxt: '',
  115. paramsObj: {
  116. name: '',
  117. type: '',
  118. signDoctorName: '',
  119. hospitalName: ''
  120. },
  121. dialogHeader: [],
  122. visible: false,
  123. // 详情
  124. query: {
  125. name: '',
  126. signHospitalName: '',
  127. signDoctorName: '',
  128. remind: '',
  129. serve: ''
  130. },
  131. dialogTableData: [
  132. {
  133. name: '11',
  134. sex: '男',
  135. age: 18,
  136. phoen: 1254813
  137. }
  138. ],
  139. dialogLoading: false,
  140. dialogHeader: [],
  141. title: '',
  142. dialogExportLoading: false
  143. }
  144. },
  145. methods: {
  146. closeMessageDialog() {
  147. this.messageVisible = false
  148. },
  149. init() {
  150. var selectedRole = JSON.parse(sessionStorage.getItem('selectedRole'))
  151. if (selectedRole.code.indexOf('350200') > -1) {
  152. this.level = 1 // 市卫健委
  153. this.areaOptions = [
  154. { label: '思明区', value: '350203' },
  155. { label: '海沧区', value: '350205' },
  156. { label: '湖里区', value: '350206' },
  157. { label: '集美区', value: '350211' },
  158. { label: '同安区', value: '350212' },
  159. { label: '翔安区', value: '350213' }
  160. ]
  161. } else if (selectedRole.code.length == 6) {
  162. this.level = 2 // 区管理
  163. this.areaOptions = [{ label: selectedRole.name.substring(0, 3), value: selectedRole.code }]
  164. this.form = {
  165. range: 'town',
  166. area: selectedRole.code
  167. }
  168. this.getHospital(selectedRole.code)
  169. } else {
  170. this.level = 3 // 社区管理
  171. this.rangeOptions = [{ label: '医院', value: 'hospital' }, { label: '团队', value: 'team' }]
  172. this.areaOptions = [{ label: selectedRole.name.substring(0, 3), value: selectedRole.code }]
  173. this.hospital = [{ label: selectedRole.name, value: selectedRole.code }]
  174. this.form = {
  175. range: 'hospital',
  176. area: selectedRole.code.substring(0, 6),
  177. hospital: selectedRole.code
  178. }
  179. this.getTeam(selectedRole.code)
  180. }
  181. this.initTime()
  182. this.getList()
  183. },
  184. initTime() {
  185. var vm = this
  186. var now = new Date()
  187. vm.nowyear = vm.chooseYear = now.getFullYear()
  188. vm.years = []
  189. for (i = vm.nowyear; i >= 2013; i--) {
  190. vm.years.push(i)
  191. }
  192. },
  193. resetArea() {
  194. if (this.level == 1) {
  195. delete this.form.area
  196. delete this.form.hospital
  197. delete this.form.team
  198. } else if (this.level == 2) {
  199. delete this.form.hospital
  200. delete this.form.team
  201. } else {
  202. delete this.form.team
  203. }
  204. },
  205. getList() {
  206. var vm = this
  207. this.loading = true
  208. var params = {
  209. ...this.paramsObj,
  210. page: this.page,
  211. size: this.size
  212. }
  213. if (this.yearType == '1') {
  214. params.startTime = this.chooseYear + '-01-01' + ' 00:00:00'
  215. params.endTime = this.chooseYear + '-12-31' + ' 11:59:59'
  216. } else {
  217. if (this.chooseTime) {
  218. params.startTime = this.chooseTime[0] + ' 00:00:00'
  219. params.endTime = this.chooseTime[1] + ' 11:59:59'
  220. }
  221. }
  222. httpRequest.get('statistics/collaborate/selectSmsInfoList', { data: params }).then(function(res) {
  223. if (res.status == 200) {
  224. // vm.tableData = res.detailModelList
  225. vm.total = res.totalCount
  226. }
  227. vm.loading = false
  228. })
  229. },
  230. queryDate() {
  231. this.page = 1
  232. this.getList()
  233. },
  234. exportTable() {
  235. var vm = this
  236. var params = {
  237. ...this.paramsObj
  238. }
  239. if (this.yearType == '1') {
  240. params.startDate = this.chooseYear + '-01-01 00:00'
  241. params.endDate = this.chooseYear + '-12-31 23:59'
  242. } else {
  243. if (this.chooseTime) {
  244. params.startDate = this.chooseTime[0] + ' 00:00'
  245. params.endDate = this.chooseTime[1] + ' 23:59'
  246. }
  247. }
  248. this.exportLoading = true
  249. var fileName = `消息推送明细.xls`
  250. httpRequest.downLoadFileForAjax('statistics/collaborate/exportSelectSmsInfoList', fileName, params).then(function() {
  251. vm.exportLoading = false
  252. })
  253. },
  254. showInfo(item) {
  255. this.messTxt = item.content
  256. this.messageVisible = true
  257. },
  258. eliminateClick() {
  259. this.resetArea()
  260. this.yearType = '1'
  261. this.paramsObj = {
  262. name: '',
  263. type: '',
  264. signDoctorName: '',
  265. hospitalName: ''
  266. }
  267. this.chooseYear = new Date().getFullYear()
  268. this.chooseTime = null
  269. this.$forceUpdate()
  270. },
  271. getHospital(code) {
  272. var vm = this
  273. delete this.form.hospital
  274. delete this.form.team
  275. var params = {
  276. type: 5,
  277. code: code
  278. }
  279. httpRequest.post('common/district', { data: params }).then(function(res) {
  280. vm.hospitalOptions = res.list
  281. })
  282. },
  283. getTeam(code) {
  284. var vm = this
  285. delete this.form.team
  286. var params = {
  287. hospital: code
  288. }
  289. httpRequest.get('statisticsExport/teamList', { data: params }).then(function(res) {
  290. vm.teamOptions = res.data
  291. })
  292. },
  293. handleCurrentChange(val) {
  294. this.page = val
  295. this.getList()
  296. },
  297. handleSizeChange(val) {
  298. this.size = val
  299. this.getList()
  300. },
  301. //详情
  302. openDialog(row, prop) {
  303. // if (!row.code) return
  304. // this.page = 1
  305. // this.query = {}
  306. // var len = row.code.length
  307. // if (len == 6) {
  308. // this.query.range = 'town'
  309. // this.query.area = row.code
  310. // } else if (len == 10) {
  311. // this.query.range = 'hospital'
  312. // this.query.hospital = row.code
  313. // } else {
  314. // this.query.range = 'team'
  315. // this.query.team = row.code
  316. // }
  317. // this.dataRangeOption = [{ label: row.name, value: row.code }]
  318. if (prop == 'idcard' || prop == 'hospitalName') {
  319. this.title = '下转情况数据列表'
  320. this.dialogHeader = [
  321. { label: '姓名', prop: 'name', width: '110' },
  322. { label: '性别', prop: 'sex', width: '110' },
  323. { label: '年龄', prop: 'age', width: '110' },
  324. { label: '手机号', prop: 'phoen', width: '110' },
  325. { label: '下转次数', prop: 'sex', width: '110' },
  326. { label: '最近一次下转诊断', prop: 'age', width: '110' },
  327. { label: '最近一次下转时间', prop: 'phoen', width: '110' }
  328. ]
  329. this.visible = true
  330. } else if (prop == 'vd1Num' || prop == 'v4Num') {
  331. this.title = '康复复诊记录明细'
  332. this.dialogHeader = [
  333. { label: '姓名', prop: 'name' },
  334. { label: '性别', prop: 'sex' },
  335. { label: '年龄', prop: 'age' },
  336. { label: '手机号', prop: 'mobile' },
  337. { label: '管理医院', prop: 'turnHospitalName' },
  338. { label: '管理医生', prop: 'turnDoctorName' },
  339. { label: '服务方式', prop: 'createTime' },
  340. { label: '服务时间', prop: 'hospitalName' }
  341. ]
  342. this.visible = true
  343. }
  344. },
  345. closeDialog() {
  346. this.visible = false
  347. },
  348. dialogReset() {
  349. var params = {
  350. ...this.query
  351. }
  352. this.query = {
  353. visitCount: params.visitCount,
  354. range: typeof params.range == 'undefined' ? '' : params.range,
  355. area: typeof params.area == 'undefined' ? '' : params.area,
  356. hospital: typeof params.hospital == 'undefined' ? '' : params.hospital,
  357. team: typeof params.team == 'undefined' ? '' : params.team
  358. }
  359. },
  360. dialogExportFn() {
  361. var vm = this
  362. this.exportLoading = true
  363. if (this.title == '康复随访记录明细') {
  364. var params = {
  365. ...this.query
  366. }
  367. if (this.yearType == '1') {
  368. params.startDate = this.chooseYear + '-01-01'
  369. params.endDate = this.chooseYear + '-12-31'
  370. } else {
  371. if (this.chooseTime) {
  372. params.startDate = this.chooseTime[0]
  373. params.endDate = this.chooseTime[1]
  374. }
  375. }
  376. var fileName = `康复随访记录明细${new Date().getTime()}.xls`
  377. httpRequest.downLoadFileForAjax('statistics/collaborate/exportGxbRehabilitationFollowupRecord', fileName, params).then(function() {
  378. vm.exportLoading = false
  379. })
  380. } else {
  381. var params = {
  382. ...this.query,
  383. type: 2
  384. }
  385. if (this.yearType == '1') {
  386. params.startDate = this.chooseYear + '-01-01'
  387. params.endDate = this.chooseYear + '-12-31'
  388. } else {
  389. if (this.chooseTime) {
  390. params.startDate = this.chooseTime[0]
  391. params.endDate = this.chooseTime[1]
  392. }
  393. }
  394. var fileName = `康复随访消息推送明细${new Date().getTime()}.xls`
  395. httpRequest.downLoadFileForAjax('statistics/collaborate/exportSelectSmsInfoList', fileName, params).then(function() {
  396. vm.exportLoading = false
  397. })
  398. }
  399. },
  400. dialogSearchFn() {
  401. this.page = 1
  402. this.dialogSearch()
  403. },
  404. dialogSearch() {
  405. if (this.title == '康复随访记录明细') {
  406. this.gxbRehabilitationFollowupRecord()
  407. } else {
  408. this.selectSmsInfoList()
  409. }
  410. },
  411. renderHeader: function(h, item) {
  412. var label = item.column.label
  413. var column = item.column
  414. var tooltip = {
  415. 签约社区: '显示为该患者当前的签约社区医院名称',
  416. 社区医院: '显示为该患者当前的签约社区医院名称',
  417. 签约医院: '显示为该患者当前的签约社区医院名称',
  418. 签约医生: '显示为该患者当前的签约社区医生名称',
  419. 家庭医生: '显示为该患者当前的签约社区医生名称'
  420. }
  421. if (label == '签约社区' || label == '签约医生' || label == '签约医院' || label == '家庭医生' || label == '社区医院') {
  422. return [
  423. label,
  424. h(
  425. 'el-tooltip',
  426. {
  427. props: {
  428. content: (function() {
  429. return tooltip[label]
  430. })(),
  431. placement: 'top'
  432. }
  433. },
  434. [
  435. h('span', {
  436. class: {
  437. 'el-icon-question': true
  438. }
  439. })
  440. ]
  441. )
  442. ]
  443. } else {
  444. return [column.label]
  445. }
  446. },
  447. // 个人案
  448. seePatientDetail(row, prop) {
  449. if (prop == 'name') {
  450. EventBus.$emit('preview-person-info', { type: '5', code: row.code })
  451. }
  452. }
  453. },
  454. mounted() {
  455. this.init()
  456. }
  457. })