|
@@ -808,7 +808,9 @@ import {
|
|
|
getSsfzSurgeriesByIcd,
|
|
|
increaseDiagWeight,
|
|
|
signApply,
|
|
|
- selectSiDiagByBaDiag, frontsheetQualityCheck,
|
|
|
+ selectSiDiagByBaDiag,
|
|
|
+ frontsheetQualityCheck,
|
|
|
+ isMedinsSetl,
|
|
|
} from '@/api/case-front-sheet'
|
|
|
import maleIcon from '@/assets/male-icon.png'
|
|
|
import femaleIcon from '@/assets/female-icon.png'
|
|
@@ -1457,21 +1459,14 @@ const handleClickMessage = (id, index) => {
|
|
|
let showMessageDrawer = $ref(false)
|
|
|
const setlUplaodClick = () => {
|
|
|
if (nullPatient()) return
|
|
|
- if (!patient.value.medType || patient.value.medType==='01' || patient.value.medType==='42') {
|
|
|
- ElMessage({
|
|
|
- message: '自费及工伤患者无需进行医保结算单质控。',
|
|
|
- type: 'warning',
|
|
|
- duration: 2500,
|
|
|
- showClose: true
|
|
|
+ isMedinsSetl(patient.value.bah, patient.value.admissTimes).then(() => {
|
|
|
+ router.push({
|
|
|
+ name: 'SetSheetUpload',
|
|
|
+ query: {
|
|
|
+ patNo: patient.value.bah,
|
|
|
+ times: patient.value.admissTimes,
|
|
|
+ }
|
|
|
})
|
|
|
- return
|
|
|
- }
|
|
|
- router.push({
|
|
|
- name: 'SetSheetUpload',
|
|
|
- query: {
|
|
|
- patNo: patient.value.bah,
|
|
|
- times: patient.value.admissTimes,
|
|
|
- }
|
|
|
})
|
|
|
}
|
|
|
|