var template = '' $.ajax('../../../component/statistics/GxbManageSum/index.html', { data: {}, dataType: 'html', cache: false, timeout: 60000, async: false, error: function (res) {}, success: function (res) { template = res } }) Vue.component('gxb-manage-sum', { 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: [], constantHeader: [ { label: '筛评人数', prop: 'totalNum', width: '90' }, { label: '上转人数', prop: 'turnUpNum', width: '90' }, { label: '下转人数', prop: 'turnDownNum', width: '90' }, { label: '康复管理人数', prop: 'rehabilitationNum', width: '90' } ], level: 0 } }, methods: { init() { var selectedRole = JSON.parse(sessionStorage.getItem('selectedRole')) if (selectedRole.code.indexOf('350200') > -1) { this.level = 1 // 市卫健委 this.areaOptions = [ { 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.searchFn() }, 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 } }, searchFn() { var vm = this this.loading = true var params = { ...this.form, isTotal: 1 } vm.tableData = [] 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] } } if (this.form.range == 'town') { this.tableHeader = getTownHeader().concat(this.constantHeader) } else if (this.form.range == 'hospital') { this.tableHeader = getHospitalHeader().concat(this.constantHeader) } else { this.tableHeader = getTeamHeader().concat(this.constantHeader) } httpRequest.get('statistics/collaborate/gxbScreenInfoTotal', { data: params }).then(function (res) { if (res.status == 200) { vm.tableData = res.detailModelList.map(function (item) { var data = JSON.parse(JSON.stringify(item)) if (vm.form.range == 'town') { data.town = item.name data.hasChildren = item.code && true } else if (vm.form.range == 'hospital') { data.hospital = item.name data.hasChildren = item.code && true } else if (vm.form.range == 'team') { data.team = item.name } return data }) } vm.loading = false }) }, exportTable() { var vm = this var params = { ...this.form } 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/exportGxbScreenInfoTotal', fileName, params).then(function () { vm.exportLoading = false }) }, eliminateClick() { var selectedRole = JSON.parse(sessionStorage.getItem('selectedRole')) if (this.level == 1) { this.form = { range: 'town' } } else if (this.level == 2) { this.form = { range: 'town', area: selectedRole.code } this.getHospital(selectedRole.code) } else { this.form = { range: 'hospital', area: selectedRole.code.substring(0, 6), hospital: selectedRole.code } this.getTeam(selectedRole.code) } 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) }) }, load(row, treeNode, resolve) { var params = {} var len = row.code.length if (len == 6) { params.range = 'hospital' params.area = row.code } else if (len == 10) { params.range = 'team' params.hospital = row.code } 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/gxbScreenInfoTotal', { data: params }).then(function (res) { if (res.status == 200) { var children = res.detailModelList.map(function (item) { var data = { ...item } if (len == 6) { data.hospital = item.name data.hasChildren = true data.town1 = row.code } else if (len == 10) { data.team = item.name data.hospital1 = row.code data.town1 = row.town1 } return data }) resolve(children) } }) }, toPage(row, prop) { if (!row.code) return var len = row.code.length var range, area, hospital, team if (len == 6 && row.code.indexOf('3502') > -1) { range = 'town' area = row.code } else if (len == 10) { range = 'hospital' area = row.town1 hospital = row.code } else { range = 'team' area = row.town1 hospital = row.hospital1 team = row.code } if (prop == 'totalNum') { EventBus.$emit('toPage', { id: '77', range: range, area: area, hospital: hospital, team: team, yearType: this.yearType, time: this.yearType == '1' ? this.chooseYear : this.chooseTime }) } else if (prop == 'turnUpNum') { EventBus.$emit('toPage', { id: '78', range: range, area: area, hospital: hospital, team: team, yearType: this.yearType, time: this.yearType == '1' ? this.chooseYear : this.chooseTime }) } else if (prop == 'turnDownNum') { EventBus.$emit('toPage', { id: '79', range: range, area: area, hospital: hospital, team: team, yearType: this.yearType, time: this.yearType == '1' ? this.chooseYear : this.chooseTime }) } else if (prop == 'rehabilitationNum') { EventBus.$emit('toPage', { id: '80', range: range, area: area, hospital: hospital, team: team, yearType: this.yearType, time: this.yearType == '1' ? this.chooseYear : this.chooseTime }) } } }, mounted() { this.init() } })