index.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  1. var template = ''
  2. $.ajax('../../../component/statistics/ActivityRegister/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('activity-register', {
  14. template: template,
  15. props: {
  16. header: {}
  17. },
  18. data() {
  19. return {
  20. years: [],
  21. yearType: '1',
  22. chooseYear: null,
  23. chooseTime: null,
  24. form: {
  25. range: 'town'
  26. },
  27. tableData: [],
  28. dialogShow: false,
  29. info: {},
  30. page: 1,
  31. size: 10,
  32. total: 0,
  33. page1: 1,
  34. size1: 10,
  35. total1: 0,
  36. loading: false,
  37. exportLoading: false,
  38. rangeOptions: [
  39. { label: '按区', value: 'town' },
  40. { label: '按社区', value: 'hospital' }
  41. ],
  42. areaOptions: [
  43. { label: '思明区', value: '350203' },
  44. { label: '海沧区', value: '350205' },
  45. { label: '湖里区', value: '350206' },
  46. { label: '集美区', value: '350211' },
  47. { label: '同安区', value: '350212' },
  48. { label: '翔安区', value: '350213' }
  49. ],
  50. level: 0,
  51. tableHeader: [],
  52. dialogShow: false,
  53. query: {},
  54. query1: {},
  55. dialogTableData: [],
  56. dialogHeader: [
  57. { label: '活动名称', prop: 'title' },
  58. { label: '活动一级类别', prop: 'firstClassify' },
  59. { label: '活动二级类别', prop: 'secondClassify' },
  60. { label: '活动状态', prop: 'activityStatus' },
  61. { label: '主办机构', prop: 'organizer' },
  62. { label: '预计报名人数', prop: 'num' },
  63. { label: '已报名人数', prop: 'joinNum' },
  64. { label: '参与社区医院数量', prop: 'hospitalNum', width: '140' },
  65. { label: '活动创建时间', prop: 'createTime' },
  66. { label: '报名截止时间', prop: 'registrationEndTime' },
  67. { label: '活动下线时间', prop: 'offlineEndTime' }
  68. ],
  69. dialogLoading: false,
  70. dialogExportLoading: false,
  71. dialogShow1: false,
  72. dialogTableData1: [],
  73. dialogHeader1: [
  74. { label: '姓名', prop: 'name' },
  75. { label: '性别', prop: 'sex' },
  76. { label: '年龄', prop: 'age' },
  77. { label: '证件号码', prop: 'idcard', width: '140' },
  78. { label: '手机号码', prop: 'mobile' },
  79. { label: '签约机构', prop: 'hospitalName' },
  80. { label: '签约医生', prop: 'doctorName' },
  81. { label: '活动名称', prop: 'title' },
  82. { label: '活动一级类别', prop: 'firstClassify', width: '120' },
  83. { label: '活动二级类别', prop: 'secondClassify', width: '120' },
  84. { label: '主办机构', prop: 'organizer' },
  85. { label: '获得积分', prop: 'total' },
  86. { label: '获得奖励金额', prop: 'feeTotal', width: '120' },
  87. { label: '参与活动时间', prop: 'updateTime', width: '160' }
  88. ],
  89. dialogLoading1: false,
  90. dialogExportLoading1: false,
  91. hospitalOptions: []
  92. }
  93. },
  94. watch: {
  95. header: {
  96. handler() {
  97. if (this.form.range == 'town') {
  98. this.tableHeader = [
  99. { label: '地区', prop: 'town', width: '120' },
  100. { label: '社区', prop: 'hospital', width: '140' }
  101. ].concat(this.header)
  102. } else if (this.form.range == 'hospital') {
  103. this.tableHeader = [{ label: '社区', prop: 'hospital', width: '140' }].concat(this.header)
  104. }
  105. }
  106. }
  107. },
  108. methods: {
  109. init() {
  110. var vm = this
  111. var selectedRole = JSON.parse(sessionStorage.getItem('selectedRole'))
  112. if (selectedRole.code.indexOf('350200') > -1) {
  113. this.level = 1 // 市卫健委
  114. this.areaOptions = [
  115. { label: '思明区', value: '350203' },
  116. { label: '海沧区', value: '350205' },
  117. { label: '湖里区', value: '350206' },
  118. { label: '集美区', value: '350211' },
  119. { label: '同安区', value: '350212' },
  120. { label: '翔安区', value: '350213' }
  121. ]
  122. } else if (selectedRole.code.length == 6) {
  123. this.level = 2 // 区管理
  124. this.areaOptions = [{ label: selectedRole.name.substring(0, 3), value: selectedRole.code }]
  125. this.form = {
  126. range: 'town',
  127. area: selectedRole.code
  128. }
  129. this.getHospital(selectedRole.code)
  130. } else {
  131. this.rangeOptions = [{ label: '按社区', value: 'hospital' }]
  132. this.form = {
  133. range: 'hospital',
  134. area: selectedRole.code.substring(0, 6),
  135. hospital: selectedRole.code
  136. }
  137. this.level = 3 // 社区管理
  138. this.areaOptions = [{ label: selectedRole.name.substring(0, 3), value: selectedRole.code.substring(0, 6) }]
  139. this.hospitalOptions = [{ name: selectedRole.name, code: selectedRole.code }]
  140. }
  141. this.initTime()
  142. setTimeout(function () {
  143. vm.searchFn()
  144. }, 200)
  145. },
  146. initTime() {
  147. var vm = this
  148. var now = new Date()
  149. vm.nowyear = vm.chooseYear = now.getFullYear()
  150. vm.years = []
  151. for (i = vm.nowyear; i >= 2013; i--) {
  152. vm.years.push(i)
  153. }
  154. },
  155. searchFn() {
  156. var vm = this
  157. this.loading = true
  158. var params = {
  159. ...this.form,
  160. isTotal: 1,
  161. menu: this.header
  162. .map(function (item) {
  163. return item.prop
  164. })
  165. .join(',')
  166. }
  167. vm.tableData = []
  168. if (this.yearType == '1') {
  169. params.startDate = this.chooseYear + '-01-01'
  170. params.endDate = this.chooseYear + '-12-31'
  171. } else {
  172. if (this.chooseTime) {
  173. params.startDate = this.chooseTime[0]
  174. params.endDate = this.chooseTime[1]
  175. }
  176. }
  177. httpRequest.get('doctor/healthBank/clubEventStatistics', { data: params }).then(function (res) {
  178. if (res.status == 200) {
  179. vm.tableData = res.data.list.map(function (item) {
  180. var data = JSON.parse(JSON.stringify(item))
  181. if (vm.form.range == 'town') {
  182. data.town = item.name
  183. data.hasChildren = item.code && true
  184. } else if (vm.form.range == 'hospital') {
  185. data.hospital = item.name
  186. data.hasChildren = false
  187. }
  188. return data
  189. })
  190. }
  191. vm.loading = false
  192. })
  193. },
  194. exportTable() {
  195. var vm = this
  196. var params = {
  197. ...this.form,
  198. menu: this.header
  199. .map(function (item) {
  200. return item.prop
  201. })
  202. .join(',')
  203. }
  204. if (this.yearType == '1') {
  205. params.startDate = this.chooseYear + '-01-01'
  206. params.endDate = this.chooseYear + '-12-31'
  207. } else {
  208. if (this.chooseTime) {
  209. params.startDate = this.chooseTime[0]
  210. params.endDate = this.chooseTime[1]
  211. }
  212. }
  213. this.exportLoading = true
  214. var fileName = `活动举办报名汇总${new Date().getTime()}.xls`
  215. httpRequest.downLoadFileForAjax('doctor/healthBank/exportClubEventStatistics', fileName, params).then(function () {
  216. vm.exportLoading = false
  217. })
  218. },
  219. eliminateClick() {
  220. var selectedRole = JSON.parse(sessionStorage.getItem('selectedRole'))
  221. if (this.level == 1) {
  222. this.form = {
  223. range: 'town'
  224. }
  225. } else if (this.level == 2) {
  226. this.form = {
  227. range: 'town',
  228. area: selectedRole.code
  229. }
  230. this.getHospital(selectedRole.code)
  231. } else {
  232. this.form = {
  233. range: 'hospital',
  234. area: selectedRole.code.substring(0, 6),
  235. hospital: selectedRole.code
  236. }
  237. this.level = 3 // 社区管理
  238. this.areaOptions = [{ label: selectedRole.name.substring(0, 3), value: selectedRole.code.substring(0, 6) }]
  239. this.hospitalOptions = [{ name: selectedRole.name, code: selectedRole.code }]
  240. }
  241. this.yearType = '1'
  242. this.chooseYear = new Date().getFullYear()
  243. this.chooseTime = null
  244. this.$forceUpdate()
  245. },
  246. closeDialog() {
  247. this.dialogShow = false
  248. },
  249. closeDialog1() {
  250. this.dialogShow1 = false
  251. },
  252. getHospital(code) {
  253. var vm = this
  254. delete this.form.hospital
  255. delete this.form.team
  256. var params = {
  257. type: 5,
  258. code: code
  259. }
  260. httpRequest.post('common/district', { data: params }).then(function (res) {
  261. vm.hospitalOptions = [{ code: '', name: '全部' }]
  262. vm.hospitalOptions = vm.hospitalOptions.concat(res.list)
  263. })
  264. },
  265. resetArea() {
  266. if (this.level == 1) {
  267. delete this.form.area
  268. delete this.form.hospital
  269. delete this.form.team
  270. } else if (this.level == 2) {
  271. delete this.form.hospital
  272. delete this.form.team
  273. } else {
  274. delete this.form.team
  275. }
  276. },
  277. load(row, treeNode, resolve) {
  278. var params = {
  279. menu: this.header
  280. .map(function (item) {
  281. return item.prop
  282. })
  283. .join(',')
  284. }
  285. var len = row.code.length
  286. if (len == 6) {
  287. params.range = 'hospital'
  288. params.area = row.code
  289. }
  290. if (this.yearType == '1') {
  291. params.startDate = this.chooseYear + '-01-01'
  292. params.endDate = this.chooseYear + '-12-31'
  293. } else {
  294. if (this.chooseTime) {
  295. params.startDate = this.chooseTime[0]
  296. params.endDate = this.chooseTime[1]
  297. }
  298. }
  299. httpRequest.get('doctor/healthBank/clubEventStatistics', { data: params }).then(function (res) {
  300. if (res.status == 200) {
  301. var children = res.data.list.map(function (item) {
  302. var data = {
  303. ...item
  304. }
  305. if (len == 6) {
  306. data.hospital = item.name
  307. data.hasChildren = false
  308. data.town1 = row.code
  309. }
  310. return data
  311. })
  312. resolve(children)
  313. }
  314. })
  315. },
  316. searchActivityHold() {
  317. var vm = this
  318. this.dialogLoading = true
  319. var params = {
  320. range: this.form.range,
  321. area: this.form.area ?? '',
  322. hospital: this.form.hospital ?? '',
  323. ...this.query,
  324. page: this.page,
  325. size: this.size
  326. }
  327. if (params.activityStatus == '7') {
  328. params.isDoing = '1'
  329. params.activityStatus = ''
  330. }
  331. if (this.yearType == '1') {
  332. params.startDate = this.chooseYear + '-01-01'
  333. params.endDate = this.chooseYear + '-12-31'
  334. } else {
  335. if (this.chooseTime) {
  336. params.startDate = this.chooseTime[0]
  337. params.endDate = this.chooseTime[1]
  338. }
  339. }
  340. httpRequest.get('doctor/healthBank/eventDetail', { data: params }).then(function (res) {
  341. if (res.status == 200) {
  342. vm.dialogTableData = res.detailModelList
  343. vm.total = res.totalCount
  344. }
  345. vm.dialogLoading = false
  346. })
  347. },
  348. exportActivityHold() {
  349. var vm = this
  350. var params = {
  351. range: this.form.range,
  352. area: this.form.area ?? '',
  353. hospital: this.form.hospital ?? '',
  354. ...this.query
  355. }
  356. if (this.yearType == '1') {
  357. params.startDate = this.chooseYear + '-01-01'
  358. params.endDate = this.chooseYear + '-12-31'
  359. } else {
  360. if (this.chooseTime) {
  361. params.startDate = this.chooseTime[0]
  362. params.endDate = this.chooseTime[1]
  363. }
  364. }
  365. this.dialogExportLoading = true
  366. var fileName = `活动举办明细${new Date().getTime()}.xls`
  367. httpRequest.downLoadFileForAjax('doctor/healthBank/exportEventDetail', fileName, params).then(function () {
  368. vm.dialogExportLoading = false
  369. })
  370. },
  371. searchActivityRegistry() {
  372. var vm = this
  373. this.dialogLoading1 = true
  374. var params = {
  375. range: this.form.range,
  376. area: this.form.area,
  377. hospital: this.form.hospital,
  378. ...this.query1,
  379. page: this.page1,
  380. size: this.size1
  381. }
  382. if (this.yearType == '1') {
  383. params.startDate = this.chooseYear + '-01-01'
  384. params.endDate = this.chooseYear + '-12-31'
  385. } else {
  386. if (this.chooseTime) {
  387. params.startDate = this.chooseTime[0]
  388. params.endDate = this.chooseTime[1]
  389. }
  390. }
  391. httpRequest.get('doctor/healthBank/eventRegistrationDetail', { data: params }).then(function (res) {
  392. if (res.status == 200) {
  393. vm.dialogTableData1 = res.detailModelList
  394. vm.total1 = res.totalCount
  395. }
  396. vm.dialogLoading1 = false
  397. })
  398. },
  399. exportActivityRegistry() {
  400. var vm = this
  401. var params = {
  402. range: this.form.range,
  403. area: this.form.area ?? '',
  404. hospital: this.form.hospital ?? '',
  405. ...this.query1
  406. }
  407. if (this.yearType == '1') {
  408. params.startDate = this.chooseYear + '-01-01'
  409. params.endDate = this.chooseYear + '-12-31'
  410. } else {
  411. if (this.chooseTime) {
  412. params.startDate = this.chooseTime[0]
  413. params.endDate = this.chooseTime[1]
  414. }
  415. }
  416. this.dialogExportLoading1 = true
  417. var fileName = `活动报名明细${new Date().getTime()}.xls`
  418. httpRequest.downLoadFileForAjax('doctor/healthBank/exportEventRegistrationDetail', fileName, params).then(function () {
  419. vm.dialogExportLoading1 = false
  420. })
  421. },
  422. handleCurrentChange(val, type) {
  423. if (type == 1) {
  424. this.page = val
  425. this.searchActivityHold()
  426. } else {
  427. this.page1 = val
  428. this.searchActivityRegistry()
  429. }
  430. },
  431. handleSizeChange(val, type) {
  432. if (type == 1) {
  433. this.size = val
  434. this.searchActivityHold()
  435. } else {
  436. this.size1 = val
  437. this.searchActivityRegistry()
  438. }
  439. },
  440. getClass(row, prop) {
  441. if (
  442. [
  443. 'eventTotal',
  444. 'eventDoneNum',
  445. 'eventIngNum',
  446. 'eventNotStartNum',
  447. 'healthSportNum',
  448. 'healthEduNum',
  449. 'promoteBusinessNum',
  450. 'signUpTotal',
  451. 'healthSportSignUpNum',
  452. 'healthEduSignUpNum',
  453. 'promoteBusinessSignUpNum'
  454. ].includes(prop) &&
  455. row.code
  456. ) {
  457. return 'pointer c-409eff'
  458. } else {
  459. return ''
  460. }
  461. },
  462. openDialog(row, prop) {
  463. var range
  464. if (row.code.length == 6) {
  465. range = 'town'
  466. } else if (row.code.length == 10) {
  467. range = 'hospital'
  468. }
  469. if (['eventTotal', 'eventDoneNum', 'eventIngNum', 'eventNotStartNum', 'healthSportNum', 'healthEduNum', 'promoteBusinessNum'].includes(prop)) {
  470. this.query = {
  471. title: '',
  472. firstClassify: '',
  473. secondClassify: '',
  474. activityStatus: '',
  475. range: range
  476. }
  477. switch (prop) {
  478. case 'eventTotal':
  479. this.query.activityStatus = ''
  480. break
  481. case 'eventDoneNum':
  482. this.query.activityStatus = '6'
  483. break
  484. case 'eventIngNum':
  485. this.query.activityStatus = '7'
  486. break
  487. case 'eventNotStartNum':
  488. this.query.activityStatus = '4'
  489. break
  490. case 'healthSportNum':
  491. this.query.firstClassify = '健康运动类'
  492. break
  493. case 'healthEduNum':
  494. this.query.firstClassify = '健康教育类'
  495. break
  496. case 'promoteBusinessNum':
  497. this.query.firstClassify = '促进业务类'
  498. break
  499. }
  500. if (range == 'town') {
  501. this.query.area = row.code
  502. } else if (range == 'hospital') {
  503. this.query.hospital = row.code
  504. }
  505. this.dialogShow = true
  506. this.searchActivityHold()
  507. this.page = 1
  508. } else if (['signUpTotal', 'healthSportSignUpNum', 'healthEduSignUpNum', 'promoteBusinessSignUpNum'].includes(prop)) {
  509. this.query1 = {
  510. title: '',
  511. hospitalName: '',
  512. doctorName: '',
  513. firstClassify: '',
  514. secondClassify: '',
  515. range: range
  516. }
  517. if (range == 'town') {
  518. this.query1.area = row.code
  519. } else if (range == 'hospital') {
  520. this.query1.hospital = row.code
  521. }
  522. var dict = {
  523. signUpTotal: '',
  524. healthSportSignUpNum: '健康运动类',
  525. healthEduSignUpNum: '健康教育类',
  526. promoteBusinessSignUpNum: '促进业务类'
  527. }
  528. this.query1.firstClassify = dict[prop]
  529. this.dialogShow1 = true
  530. this.searchActivityRegistry()
  531. this.page1 = 1
  532. }
  533. },
  534. previewRegisterDetail(row, prop) {
  535. this.query1 = {
  536. activityId: row.id,
  537. title: row.title,
  538. hospitalName: '',
  539. doctorName: '',
  540. firstClassify: row.firstClassify,
  541. secondClassify: row.secondClassify
  542. }
  543. if (prop == 'title') {
  544. this.dialogShow1 = true
  545. this.searchActivityRegistry()
  546. }
  547. },
  548. getSecondClassifyList(val) {
  549. return getSecondClassifyList(val)
  550. }
  551. },
  552. mounted() {
  553. this.init()
  554. }
  555. })