index.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  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. secondClassifyList: [
  92. { label: '全部', value: '' },
  93. { label: '健康运动', value: '健康运动' },
  94. { label: '健康问答', value: '健康问答' },
  95. { label: '健康咨询', value: '健康咨询' }
  96. ]
  97. }
  98. },
  99. watch: {
  100. header: {
  101. handler() {
  102. if (this.form.range == 'town') {
  103. this.tableHeader = [
  104. { label: '地区', prop: 'town', width: '120' },
  105. { label: '社区', prop: 'hospital', width: '140' }
  106. ].concat(this.header)
  107. } else if (this.form.range == 'hospital') {
  108. this.tableHeader = [{ label: '社区', prop: 'hospital', width: '140' }].concat(this.header)
  109. }
  110. }
  111. }
  112. },
  113. methods: {
  114. init() {
  115. var vm = this
  116. var selectedRole = JSON.parse(sessionStorage.getItem('selectedRole'))
  117. if (selectedRole.code.indexOf('350200') > -1) {
  118. this.level = 1 // 市卫健委
  119. this.areaOptions = [
  120. { label: '思明区', value: '350203' },
  121. { label: '海沧区', value: '350205' },
  122. { label: '湖里区', value: '350206' },
  123. { label: '集美区', value: '350211' },
  124. { label: '同安区', value: '350212' },
  125. { label: '翔安区', value: '350213' }
  126. ]
  127. } else if (selectedRole.code.length == 6) {
  128. this.level = 2 // 区管理
  129. this.areaOptions = [{ label: selectedRole.name.substring(0, 3), value: selectedRole.code }]
  130. this.form = {
  131. range: 'town',
  132. area: selectedRole.code
  133. }
  134. this.getHospital(selectedRole.code)
  135. }
  136. this.initTime()
  137. setTimeout(function () {
  138. vm.searchFn()
  139. }, 200)
  140. },
  141. initTime() {
  142. var vm = this
  143. var now = new Date()
  144. vm.nowyear = vm.chooseYear = now.getFullYear()
  145. vm.years = []
  146. for (i = vm.nowyear; i >= 2013; i--) {
  147. vm.years.push(i)
  148. }
  149. },
  150. searchFn() {
  151. var vm = this
  152. this.loading = true
  153. var params = {
  154. ...this.form,
  155. isTotal: 1,
  156. menu: this.header
  157. .map(function (item) {
  158. return item.prop
  159. })
  160. .join(',')
  161. }
  162. vm.tableData = []
  163. if (this.yearType == '1') {
  164. params.startDate = this.chooseYear + '-01-01'
  165. params.endDate = this.chooseYear + '-12-31'
  166. } else {
  167. if (this.chooseTime) {
  168. params.startDate = this.chooseTime[0]
  169. params.endDate = this.chooseTime[1]
  170. }
  171. }
  172. httpRequest.get('doctor/healthBank/clubEventStatistics', { data: params }).then(function (res) {
  173. if (res.status == 200) {
  174. vm.tableData = res.data.list.map(function (item) {
  175. var data = JSON.parse(JSON.stringify(item))
  176. if (vm.form.range == 'town') {
  177. data.town = item.name
  178. data.hasChildren = item.code && true
  179. } else if (vm.form.range == 'hospital') {
  180. data.hospital = item.name
  181. data.hasChildren = false
  182. }
  183. return data
  184. })
  185. }
  186. vm.loading = false
  187. })
  188. },
  189. exportTable() {
  190. var vm = this
  191. var params = {
  192. ...this.form,
  193. menu: this.header
  194. .map(function (item) {
  195. return item.prop
  196. })
  197. .join(',')
  198. }
  199. if (this.yearType == '1') {
  200. params.startDate = this.chooseYear + '-01-01'
  201. params.endDate = this.chooseYear + '-12-31'
  202. } else {
  203. if (this.chooseTime) {
  204. params.startDate = this.chooseTime[0]
  205. params.endDate = this.chooseTime[1]
  206. }
  207. }
  208. this.exportLoading = true
  209. var fileName = `活动举办报名汇总${new Date().getTime()}.xls`
  210. httpRequest.downLoadFileForAjax('doctor/healthBank/exportClubEventStatistics', fileName, params).then(function () {
  211. vm.exportLoading = false
  212. })
  213. },
  214. eliminateClick() {
  215. var selectedRole = JSON.parse(sessionStorage.getItem('selectedRole'))
  216. if (this.level == 1) {
  217. this.form = {
  218. range: 'town'
  219. }
  220. } else if (this.level == 2) {
  221. this.form = {
  222. range: 'town',
  223. area: selectedRole.code
  224. }
  225. this.getHospital(selectedRole.code)
  226. }
  227. this.yearType = '1'
  228. this.chooseYear = new Date().getFullYear()
  229. this.chooseTime = null
  230. this.$forceUpdate()
  231. },
  232. closeDialog() {
  233. this.dialogShow = false
  234. },
  235. closeDialog1() {
  236. this.dialogShow1 = false
  237. },
  238. getHospital(code) {
  239. var vm = this
  240. delete this.form.hospital
  241. delete this.form.team
  242. var params = {
  243. type: 5,
  244. code: code
  245. }
  246. httpRequest.post('common/district', { data: params }).then(function (res) {
  247. vm.hospitalOptions = [{ code: '', name: '全部' }]
  248. vm.hospitalOptions = vm.hospitalOptions.concat(res.list)
  249. })
  250. },
  251. resetArea() {
  252. if (this.level == 1) {
  253. delete this.form.area
  254. delete this.form.hospital
  255. delete this.form.team
  256. } else if (this.level == 2) {
  257. delete this.form.hospital
  258. delete this.form.team
  259. } else {
  260. delete this.form.team
  261. }
  262. },
  263. load(row, treeNode, resolve) {
  264. var params = {
  265. menu: this.header
  266. .map(function (item) {
  267. return item.prop
  268. })
  269. .join(',')
  270. }
  271. var len = row.code.length
  272. if (len == 6) {
  273. params.range = 'hospital'
  274. params.area = row.code
  275. }
  276. if (this.yearType == '1') {
  277. params.startDate = this.chooseYear + '-01-01'
  278. params.endDate = this.chooseYear + '-12-31'
  279. } else {
  280. if (this.chooseTime) {
  281. params.startDate = this.chooseTime[0]
  282. params.endDate = this.chooseTime[1]
  283. }
  284. }
  285. httpRequest.get('doctor/healthBank/clubEventStatistics', { data: params }).then(function (res) {
  286. if (res.status == 200) {
  287. var children = res.data.list.map(function (item) {
  288. var data = {
  289. ...item
  290. }
  291. if (len == 6) {
  292. data.hospital = item.name
  293. data.hasChildren = false
  294. data.town1 = row.code
  295. }
  296. return data
  297. })
  298. resolve(children)
  299. }
  300. })
  301. },
  302. searchActivityHold() {
  303. var vm = this
  304. this.dialogLoading = true
  305. var params = {
  306. range: this.form.range,
  307. area: this.form.area ?? '',
  308. hospital: this.form.hospital ?? '',
  309. ...this.query,
  310. page: this.page,
  311. size: this.size
  312. }
  313. if (this.yearType == '1') {
  314. params.startDate = this.chooseYear + '-01-01'
  315. params.endDate = this.chooseYear + '-12-31'
  316. } else {
  317. if (this.chooseTime) {
  318. params.startDate = this.chooseTime[0]
  319. params.endDate = this.chooseTime[1]
  320. }
  321. }
  322. httpRequest.get('doctor/healthBank/eventDetail', { data: params }).then(function (res) {
  323. if (res.status == 200) {
  324. vm.dialogTableData = res.detailModelList
  325. vm.total = res.totalCount
  326. }
  327. vm.dialogLoading = false
  328. })
  329. },
  330. exportActivityHold() {
  331. var vm = this
  332. var params = {
  333. range: this.form.range,
  334. area: this.form.area ?? '',
  335. hospital: this.form.hospital ?? '',
  336. ...this.query
  337. }
  338. if (this.yearType == '1') {
  339. params.startDate = this.chooseYear + '-01-01'
  340. params.endDate = this.chooseYear + '-12-31'
  341. } else {
  342. if (this.chooseTime) {
  343. params.startDate = this.chooseTime[0]
  344. params.endDate = this.chooseTime[1]
  345. }
  346. }
  347. this.dialogExportLoading = true
  348. var fileName = `活动举办明细${new Date().getTime()}.xls`
  349. httpRequest.downLoadFileForAjax('doctor/healthBank/exportEventDetail', fileName, params).then(function () {
  350. vm.dialogExportLoading = false
  351. })
  352. },
  353. searchActivityRegistry() {
  354. var vm = this
  355. this.dialogLoading1 = true
  356. var params = {
  357. range: this.form.range,
  358. area: this.form.area,
  359. hospital: this.form.hospital,
  360. ...this.query1,
  361. page: this.page1,
  362. size: this.size1
  363. }
  364. if (this.yearType == '1') {
  365. params.startDate = this.chooseYear + '-01-01'
  366. params.endDate = this.chooseYear + '-12-31'
  367. } else {
  368. if (this.chooseTime) {
  369. params.startDate = this.chooseTime[0]
  370. params.endDate = this.chooseTime[1]
  371. }
  372. }
  373. httpRequest.get('doctor/healthBank/eventRegistrationDetail', { data: params }).then(function (res) {
  374. if (res.status == 200) {
  375. vm.dialogTableData1 = res.detailModelList
  376. vm.total1 = res.totalCount
  377. }
  378. vm.dialogLoading1 = false
  379. })
  380. },
  381. exportActivityRegistry() {
  382. var vm = this
  383. var params = {
  384. range: this.form.range,
  385. area: this.form.area ?? '',
  386. hospital: this.form.hospital ?? '',
  387. ...this.query1
  388. }
  389. if (this.yearType == '1') {
  390. params.startDate = this.chooseYear + '-01-01'
  391. params.endDate = this.chooseYear + '-12-31'
  392. } else {
  393. if (this.chooseTime) {
  394. params.startDate = this.chooseTime[0]
  395. params.endDate = this.chooseTime[1]
  396. }
  397. }
  398. this.dialogExportLoading1 = true
  399. var fileName = `活动报名明细${new Date().getTime()}.xls`
  400. httpRequest.downLoadFileForAjax('doctor/healthBank/exportEventRegistrationDetail', fileName, params).then(function () {
  401. vm.dialogExportLoading1 = false
  402. })
  403. },
  404. handleCurrentChange(val, type) {
  405. if (type == 1) {
  406. this.page = val
  407. this.searchActivityHold()
  408. } else {
  409. this.page1 = val
  410. this.searchActivityRegistry()
  411. }
  412. },
  413. handleSizeChange(val, type) {
  414. if (type == 1) {
  415. this.size = val
  416. this.searchActivityHold()
  417. } else {
  418. this.size1 = val
  419. this.searchActivityRegistry()
  420. }
  421. },
  422. getClass(row, prop) {
  423. if (
  424. [
  425. 'eventTotal',
  426. 'eventDoneNum',
  427. 'eventIngNum',
  428. 'eventNotStartNum',
  429. 'healthSportNum',
  430. 'healthEduNum',
  431. 'promoteBusinessNum',
  432. 'signUpTotal',
  433. 'healthSportSignUpNum',
  434. 'healthEduSignUpNum',
  435. 'promoteBusinessSignUpNum'
  436. ].includes(prop) &&
  437. row.code
  438. ) {
  439. return 'pointer c-409eff'
  440. } else {
  441. return ''
  442. }
  443. },
  444. openDialog(row, prop) {
  445. var range
  446. if (row.code.length == 6) {
  447. range = 'town'
  448. } else if (row.code.length == 10) {
  449. range = 'hospital'
  450. }
  451. if (['eventTotal', 'eventDoneNum', 'eventIngNum', 'eventNotStartNum', 'healthSportNum', 'healthEduNum', 'promoteBusinessNum'].includes(prop)) {
  452. this.query = {
  453. title: '',
  454. firstClassify: '',
  455. secondClassify: '',
  456. activityStatus: '',
  457. range: range
  458. }
  459. if (range == 'town') {
  460. this.query.area = row.code
  461. } else if (range == 'hospital') {
  462. this.query.hospital = row.code
  463. }
  464. this.dialogShow = true
  465. this.searchActivityHold()
  466. this.page = 1
  467. } else if (['signUpTotal', 'healthSportSignUpNum', 'healthEduSignUpNum', 'promoteBusinessSignUpNum'].includes(prop)) {
  468. this.query1 = {
  469. title: '',
  470. hospitalName: '',
  471. doctorName: '',
  472. firstClassify: '',
  473. secondClassify: '',
  474. range: range
  475. }
  476. if (range == 'town') {
  477. this.query1.area = row.code
  478. } else if (range == 'hospital') {
  479. this.query1.hospital = row.code
  480. }
  481. this.dialogShow1 = true
  482. this.searchActivityRegistry()
  483. this.page1 = 1
  484. }
  485. },
  486. previewRegisterDetail(row, prop) {
  487. this.query1 = {
  488. activityId: row.id,
  489. title: '',
  490. hospitalName: '',
  491. doctorName: '',
  492. firstClassify: '',
  493. secondClassify: ''
  494. }
  495. this.dialogShow1 = true
  496. this.searchActivityRegistry()
  497. },
  498. getSecondClassifyList(val) {
  499. switch (val) {
  500. case '':
  501. return [
  502. { label: '全部', value: '' },
  503. { label: '健康运动', value: '健康运动' },
  504. { label: '健康问答', value: '健康问答' },
  505. { label: '健康咨询', value: '健康咨询' }
  506. ]
  507. case '健康运动':
  508. return [
  509. { label: '全部', value: '' },
  510. { label: '健康运动', value: '健康运动' }
  511. ]
  512. case '健康教育':
  513. return [
  514. { label: '全部', value: '' },
  515. { label: '健康问答', value: '健康问答' }
  516. ]
  517. case '促进业务':
  518. return [
  519. { label: '全部', value: '' },
  520. { label: '健康咨询', value: '健康咨询' }
  521. ]
  522. }
  523. }
  524. },
  525. mounted() {
  526. this.init()
  527. }
  528. })