|
@ -48,7 +48,7 @@ Vue.component('gxb-mz', {
|
|
|
{ label: '已下转人数', prop: 'totalNum', width: '110' },
|
|
|
{ label: '门诊下转人数', prop: 'mzNum', width: '110' },
|
|
|
{ label: '门诊下转已评估', prop: 'screenNum', width: '110' },
|
|
|
{ label: '门诊下转未评估', prop: 'unScreenNum', width: '110' },
|
|
|
{ label: '门诊下转未评估', prop: 'unScreenNum', width: '110' }
|
|
|
],
|
|
|
page: 1,
|
|
|
size: 10,
|
|
@ -62,6 +62,7 @@ Vue.component('gxb-mz', {
|
|
|
if (selectedRole.code.indexOf('350200') > -1) {
|
|
|
this.level = 1 // 市卫健委
|
|
|
this.areaOptions = [
|
|
|
{ label: '厦门市', value: '' },
|
|
|
{ label: '思明区', value: '350203' },
|
|
|
{ label: '海沧区', value: '350205' },
|
|
|
{ label: '湖里区', value: '350206' },
|
|
@ -84,7 +85,7 @@ Vue.component('gxb-mz', {
|
|
|
{ label: '团队', value: 'team' }
|
|
|
]
|
|
|
this.areaOptions = [{ label: selectedRole.name.substring(0, 3), value: selectedRole.code }]
|
|
|
this.hospital = [{ label: selectedRole.name, value: selectedRole.code }]
|
|
|
this.hospitalOptions = [{ name: selectedRole.name, code: selectedRole.code }]
|
|
|
this.form = {
|
|
|
range: 'hospital',
|
|
|
area: selectedRole.code.substring(0, 6),
|
|
@ -171,11 +172,14 @@ Vue.component('gxb-mz', {
|
|
|
},
|
|
|
eliminateClick() {
|
|
|
this.resetArea()
|
|
|
this.form.hospital = ''
|
|
|
this.hospitalOptions = []
|
|
|
this.form.team = ''
|
|
|
this.teamOptions = []
|
|
|
this.yearType = '1'
|
|
|
this.chooseYear = new Date().getFullYear()
|
|
|
this.chooseTime = null
|
|
|
this.$forceUpdate()
|
|
|
|
|
|
},
|
|
|
getHospital(code) {
|
|
|
var vm = this
|
|
@ -185,6 +189,11 @@ Vue.component('gxb-mz', {
|
|
|
type: 5,
|
|
|
code: code
|
|
|
}
|
|
|
if (!code) {
|
|
|
vm.hospitalOptions = [{ name: '全部', value: '' }]
|
|
|
vm.teamOptions = [{ name: '全部', value: '' }]
|
|
|
return false
|
|
|
}
|
|
|
httpRequest.post('common/district', { data: params }).then(function (res) {
|
|
|
vm.hospitalOptions = res.list
|
|
|
})
|
|
@ -220,7 +229,9 @@ Vue.component('gxb-mz', {
|
|
|
{
|
|
|
props: {
|
|
|
content: (function () {
|
|
|
return index == '6' ? '统计查询时间内,门诊下转的患者中,在当年有进行ASCVD风险评估的患者人数' : '统计查询时间内,门诊下转的患者中,在当年未进行ASCVD风险评估的患者人数'
|
|
|
return index == '6'
|
|
|
? '统计查询时间内,门诊下转的患者中,在当年有进行ASCVD风险评估的患者人数'
|
|
|
: '统计查询时间内,门诊下转的患者中,在当年未进行ASCVD风险评估的患者人数'
|
|
|
})(),
|
|
|
placement: 'top'
|
|
|
}
|