var template = '' $.ajax('../../../component/statistics/RedBagReward/index.html', { data: {}, dataType: 'html', cache: false, timeout: 60000, async: false, error: function (res) {}, success: function (res) { template = res } }) Vue.component('red-bag-reward', { 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', serviceType: '' }, loading: false, exportLoading: false, tableData: [], page: 1, size: 10, total: 0, level: 0, health_bank_service_type: [] } }, 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.getList() this.getDictData() }, 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] } } statisticAPI.patientFeeAnalysis(params).then(function (res) { if (res.status == 200) { vm.tableData = res.data.list vm.total = res.data.total } else { vm.$message.error(res.msg) } vm.loading = false }) }, getDictData() { var vm = this statisticAPI.getDictByDictName({ name: 'health_bank_service_type' }).then(function (res) { vm.health_bank_service_type = res.list }) }, 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 statisticAPI .exPatientFeeAnalysis(params, '居民红包奖励明细.xls') .then(function (res) { vm.exportLoading = false }) .catch(function (err) { 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() } }, mounted() { this.init() } })