|
@@ -129,7 +129,10 @@ export default {
|
|
|
} else if (outParam.type === 21) {
|
|
|
return '湖南省长沙市住院费用结算单'
|
|
|
}
|
|
|
- return isEmployeeOutpatient.value ? '湖南省长沙市门诊统筹费用结算单' : '湖南省长沙市(普通、特殊)门诊费用结算单'
|
|
|
+ if (!isEmployeeOutpatient.value) {
|
|
|
+ return '湖南省长沙市(普通、特殊)门诊费用结算单'
|
|
|
+ }
|
|
|
+ return isProvincial.value ? '湖南省省本级门诊统筹费用结算单' : '湖南省长沙市门诊统筹费用结算单';
|
|
|
})
|
|
|
const nowdate = getDate()
|
|
|
const setlinfo = ref({
|
|
@@ -139,6 +142,7 @@ export default {
|
|
|
polItemInfo: {}
|
|
|
})
|
|
|
const isEmployeeOutpatient = ref(false)
|
|
|
+ const isProvincial = ref(false)
|
|
|
const executeQrySetlinfo = () => {
|
|
|
setlinfo.value = {
|
|
|
mdtrtId: '',
|
|
@@ -149,6 +153,7 @@ export default {
|
|
|
querySiSetlList(outParam).then((res) => {
|
|
|
setlinfo.value = res
|
|
|
isEmployeeOutpatient.value = res.insutype === '310'
|
|
|
+ isProvincial.value = res.insuplcAdmdvs === '439900'
|
|
|
})
|
|
|
}
|
|
|
|