index.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  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 (this.yearType == '1') {
  328. params.startDate = this.chooseYear + '-01-01'
  329. params.endDate = this.chooseYear + '-12-31'
  330. } else {
  331. if (this.chooseTime) {
  332. params.startDate = this.chooseTime[0]
  333. params.endDate = this.chooseTime[1]
  334. }
  335. }
  336. httpRequest.get('doctor/healthBank/eventDetail', { data: params }).then(function (res) {
  337. if (res.status == 200) {
  338. vm.dialogTableData = res.detailModelList
  339. vm.total = res.totalCount
  340. }
  341. vm.dialogLoading = false
  342. })
  343. },
  344. exportActivityHold() {
  345. var vm = this
  346. var params = {
  347. range: this.form.range,
  348. area: this.form.area ?? '',
  349. hospital: this.form.hospital ?? '',
  350. ...this.query
  351. }
  352. if (this.yearType == '1') {
  353. params.startDate = this.chooseYear + '-01-01'
  354. params.endDate = this.chooseYear + '-12-31'
  355. } else {
  356. if (this.chooseTime) {
  357. params.startDate = this.chooseTime[0]
  358. params.endDate = this.chooseTime[1]
  359. }
  360. }
  361. this.dialogExportLoading = true
  362. var fileName = `活动举办明细${new Date().getTime()}.xls`
  363. httpRequest.downLoadFileForAjax('doctor/healthBank/exportEventDetail', fileName, params).then(function () {
  364. vm.dialogExportLoading = false
  365. })
  366. },
  367. searchActivityRegistry() {
  368. var vm = this
  369. this.dialogLoading1 = true
  370. var params = {
  371. range: this.form.range,
  372. area: this.form.area,
  373. hospital: this.form.hospital,
  374. ...this.query1,
  375. page: this.page1,
  376. size: this.size1
  377. }
  378. if (this.yearType == '1') {
  379. params.startDate = this.chooseYear + '-01-01'
  380. params.endDate = this.chooseYear + '-12-31'
  381. } else {
  382. if (this.chooseTime) {
  383. params.startDate = this.chooseTime[0]
  384. params.endDate = this.chooseTime[1]
  385. }
  386. }
  387. httpRequest.get('doctor/healthBank/eventRegistrationDetail', { data: params }).then(function (res) {
  388. if (res.status == 200) {
  389. vm.dialogTableData1 = res.detailModelList
  390. vm.total1 = res.totalCount
  391. }
  392. vm.dialogLoading1 = false
  393. })
  394. },
  395. exportActivityRegistry() {
  396. var vm = this
  397. var params = {
  398. range: this.form.range,
  399. area: this.form.area ?? '',
  400. hospital: this.form.hospital ?? '',
  401. ...this.query1
  402. }
  403. if (this.yearType == '1') {
  404. params.startDate = this.chooseYear + '-01-01'
  405. params.endDate = this.chooseYear + '-12-31'
  406. } else {
  407. if (this.chooseTime) {
  408. params.startDate = this.chooseTime[0]
  409. params.endDate = this.chooseTime[1]
  410. }
  411. }
  412. this.dialogExportLoading1 = true
  413. var fileName = `活动报名明细${new Date().getTime()}.xls`
  414. httpRequest.downLoadFileForAjax('doctor/healthBank/exportEventRegistrationDetail', fileName, params).then(function () {
  415. vm.dialogExportLoading1 = false
  416. })
  417. },
  418. handleCurrentChange(val, type) {
  419. if (type == 1) {
  420. this.page = val
  421. this.searchActivityHold()
  422. } else {
  423. this.page1 = val
  424. this.searchActivityRegistry()
  425. }
  426. },
  427. handleSizeChange(val, type) {
  428. if (type == 1) {
  429. this.size = val
  430. this.searchActivityHold()
  431. } else {
  432. this.size1 = val
  433. this.searchActivityRegistry()
  434. }
  435. },
  436. getClass(row, prop) {
  437. if (
  438. [
  439. 'eventTotal',
  440. 'eventDoneNum',
  441. 'eventIngNum',
  442. 'eventNotStartNum',
  443. 'healthSportNum',
  444. 'healthEduNum',
  445. 'promoteBusinessNum',
  446. 'signUpTotal',
  447. 'healthSportSignUpNum',
  448. 'healthEduSignUpNum',
  449. 'promoteBusinessSignUpNum'
  450. ].includes(prop) &&
  451. row.code
  452. ) {
  453. return 'pointer c-409eff'
  454. } else {
  455. return ''
  456. }
  457. },
  458. openDialog(row, prop) {
  459. var range
  460. if (row.code.length == 6) {
  461. range = 'town'
  462. } else if (row.code.length == 10) {
  463. range = 'hospital'
  464. }
  465. if (['eventTotal', 'eventDoneNum', 'eventIngNum', 'eventNotStartNum', 'healthSportNum', 'healthEduNum', 'promoteBusinessNum'].includes(prop)) {
  466. this.query = {
  467. title: '',
  468. firstClassify: '',
  469. secondClassify: '',
  470. activityStatus: '',
  471. range: range
  472. }
  473. switch (prop) {
  474. case 'eventTotal':
  475. this.query.activityStatus = ''
  476. break
  477. case 'eventDoneNum':
  478. this.query.activityStatus = '6'
  479. break
  480. case 'eventIngNum':
  481. this.query.activityStatus = '2'
  482. break
  483. case 'eventNotStartNum':
  484. this.query.activityStatus = '4'
  485. break
  486. case 'healthSportNum':
  487. this.query.firstClassify = '健康运动类'
  488. break
  489. case 'healthEduNum':
  490. this.query.firstClassify = '健康教育类'
  491. break
  492. case 'promoteBusinessNum':
  493. this.query.firstClassify = '促进业务类'
  494. break
  495. }
  496. if (range == 'town') {
  497. this.query.area = row.code
  498. } else if (range == 'hospital') {
  499. this.query.hospital = row.code
  500. }
  501. this.dialogShow = true
  502. this.searchActivityHold()
  503. this.page = 1
  504. } else if (['signUpTotal', 'healthSportSignUpNum', 'healthEduSignUpNum', 'promoteBusinessSignUpNum'].includes(prop)) {
  505. this.query1 = {
  506. title: '',
  507. hospitalName: '',
  508. doctorName: '',
  509. firstClassify: '',
  510. secondClassify: '',
  511. range: range
  512. }
  513. if (range == 'town') {
  514. this.query1.area = row.code
  515. } else if (range == 'hospital') {
  516. this.query1.hospital = row.code
  517. }
  518. var dict = {
  519. signUpTotal: '',
  520. healthSportSignUpNum: '健康运动类',
  521. healthEduSignUpNum: '健康教育类',
  522. promoteBusinessSignUpNum: '促进业务类'
  523. }
  524. this.query1.firstClassify = dict[prop]
  525. this.dialogShow1 = true
  526. this.searchActivityRegistry()
  527. this.page1 = 1
  528. }
  529. },
  530. previewRegisterDetail(row, prop) {
  531. this.query1 = {
  532. activityId: row.id,
  533. title: row.title,
  534. hospitalName: '',
  535. doctorName: '',
  536. firstClassify: row.firstClassify,
  537. secondClassify: row.secondClassify
  538. }
  539. if (prop == 'title') {
  540. this.dialogShow1 = true
  541. this.searchActivityRegistry()
  542. }
  543. },
  544. getSecondClassifyList(val) {
  545. return getSecondClassifyList(val)
  546. }
  547. },
  548. mounted() {
  549. this.init()
  550. }
  551. })