var template = '' $.ajax('../../../component/statistics/GxbCy/index.html', { data: {}, dataType: 'html', cache: false, timeout: 60000, async: false, error: function (res) {}, success: function (res) { template = res } }) Vue.component('gxb-cy', { template: template, props: [], data: function () { return { years: [], yearType: '1', chooseYear: null, chooseTime: null, rangeOptions: [ { label: '区', value: 'town' }, { label: '社区', value: 'hospital' }, { label: '团队', value: 'team' } ], areaOptions: [ { label: '思明区', value: '350203' }, { label: '海沧区', value: '350205' }, { label: '湖里区', value: '350206' }, { label: '集美区', value: '350211' }, { label: '同安区', value: '350212' }, { label: '翔安区', value: '350213' } ], hospitalOptions: [], teamOptions: [], form: { range: 'town' }, loading: false, exportLoading: false, tableData: [], tableHeader: [ { label: '名称', prop: 'name', width: '100' }, { label: '已下转次数', prop: 'totalTimes', width: '100' }, { label: '出院下转次数', prop: 'zyTimes', width: '110' }, { label: '已下转人数', prop: 'totalNum', width: '100' }, { label: '出院下转人数', prop: 'zyNum', width: '110' }, { label: '出院下转已评估', prop: 'screenNum', width: '140' }, { label: '出院下转未评估', prop: 'unScreenNum', width: '140' } ], tableHeaderChildren: [ { label: '随访1', children: [ { label: '已登记人数', prop: 'v1Num', width: '100' }, { label: '已达标人数', prop: 'vd1Num', width: '100' }, { label: '达标率', prop: 'v1Rate', width: '100' } ] }, { label: '随访2', children: [ { label: '已登记人数', prop: 'v2Num', width: '100' }, { label: '已达标人数', prop: 'vd2Num', width: '100' }, { label: '达标率', prop: 'v2Rate', width: '100' } ] }, { label: '随访3', children: [ { label: '已登记人数', prop: 'v3Num', width: '100' }, { label: '已达标人数', prop: 'vd3Num', width: '100' }, { label: '达标率', prop: 'v3Rate', width: '100' } ] }, { label: '随访4', children: [ { label: '已登记人数', prop: 'v4Num', width: '100' }, { label: '已达标人数', prop: 'vd4Num', width: '100' }, { label: '达标率', prop: 'v4Rate', width: '100' } ] } ], page: 1, size: 10, total: 0, level: 0 } }, methods: { init() { var selectedRole = JSON.parse(sessionStorage.getItem('selectedRole')) if (selectedRole.code.indexOf('350200') > -1) { this.level = 1 // 市卫健委 this.areaOptions = [ { label: '厦门市', value: '' }, { label: '思明区', value: '350203' }, { label: '海沧区', value: '350205' }, { label: '湖里区', value: '350206' }, { label: '集美区', value: '350211' }, { label: '同安区', value: '350212' }, { label: '翔安区', value: '350213' } ] } else if (selectedRole.code.length == 6) { this.level = 2 // 区管理 this.areaOptions = [{ label: selectedRole.name.substring(0, 3), value: selectedRole.code }] this.form = { range: 'town', area: selectedRole.code } this.getHospital(selectedRole.code) } else { this.level = 3 // 社区管理 this.rangeOptions = [ { label: '社区', value: 'hospital' }, { label: '团队', value: 'team' } ] this.areaOptions = [{ label: selectedRole.name.substring(0, 3), value: selectedRole.code.substring(0, 6) }] this.hospitalOptions = [{ name: selectedRole.name, code: selectedRole.code }] this.form = { range: 'hospital', area: selectedRole.code.substring(0, 6), hospital: selectedRole.code } this.getTeam(selectedRole.code) } this.initTime() this.getList() }, initTime() { var vm = this var now = new Date() vm.nowyear = vm.chooseYear = now.getFullYear() vm.years = [] for (i = vm.nowyear; i >= 2013; i--) { vm.years.push(i) } }, resetArea() { if (this.level == 1) { delete this.form.area delete this.form.hospital delete this.form.team } else if (this.level == 2) { delete this.form.hospital delete this.form.team } else { delete this.form.team } }, getList() { var vm = this this.loading = true var params = { ...this.form, page: this.page, pageSize: this.size } if (this.yearType == '1') { params.startDate = this.chooseYear + '-01-01' params.endDate = this.chooseYear + '-12-31' } else { if (this.chooseTime) { params.startDate = this.chooseTime[0] params.endDate = this.chooseTime[1] } } httpRequest.get('statistics/collaborate/gxbZyTurnDownInfo', { data: params }).then(function (res) { if (res.status == 200) { vm.tableData = res.detailModelList vm.total = res.totalCount } vm.loading = false }) }, queryDate() { this.page = 1 this.getList() }, exportTable() { var vm = this var params = { ...this.form, page: this.page, pageSize: this.size } if (this.yearType == '1') { params.startDate = this.chooseYear + '-01-01' params.endDate = this.chooseYear + '-12-31' } else { if (this.chooseTime) { params.startDate = this.chooseTime[0] params.endDate = this.chooseTime[1] } } this.exportLoading = true var fileName = `冠心病出院下转统计表${new Date().getTime()}.xls` httpRequest.downLoadFileForAjax('statistics/collaborate/exportZyTurnDownInfo', fileName, params).then(function () { vm.exportLoading = false }) }, eliminateClick() { this.resetArea() this.yearType = '1' this.chooseYear = new Date().getFullYear() this.chooseTime = null this.$forceUpdate() }, getHospital(code) { var vm = this delete this.form.hospital delete this.form.team var params = { type: 5, code: code } httpRequest.post('common/district', { data: params }).then(function (res) { vm.hospitalOptions = [{ code: '', name: '全部' }] vm.hospitalOptions = vm.hospitalOptions.concat(res.list) }) }, getTeam(code) { var vm = this delete this.form.team var params = { hospital: code, area: this.form.area } httpRequest.get('statisticsExport/teamList', { data: params }).then(function (res) { vm.teamOptions = [{ id: '', name: '全部' }] vm.teamOptions = vm.teamOptions.concat(res.data) }) }, handleCurrentChange(val) { this.page = val this.getList() }, handleSizeChange(val) { this.size = val this.getList() }, renderHeader: function (h, item) { var index = item.$index var column = item.column if (index == 6 || index == 7) { return [ index == '6' ? '出院下转已评估' : '出院下转未评估', h( 'el-tooltip', { props: { content: (function () { return index == '6' ? '统计查询时间内,出院下转的患者中,在当年已进行ASCVD风险评估的患者人数' : '统计查询时间内,出院下转的患者中,在当年未进行ASCVD风险评估的患者人数' })(), placement: 'top' } }, [ h('span', { class: { 'el-icon-question': true } }) ] ) ] } else { return [column.label] } } }, mounted() { this.init() } })