|
@@ -109,8 +109,18 @@
|
|
|
</el-table>
|
|
|
</aside>
|
|
|
<div class="layout_main" style="padding: 30px; position: relative">
|
|
|
- <img v-if="mzVisit.settledFlag === 1" :src="mzSettled" alt="" style="z-index: 999; width: 230px;
|
|
|
- position: absolute; top: 160px; left: 260px; background: rgba(255,255,255,.5)">
|
|
|
+ <img
|
|
|
+ v-if="mzVisit.settledFlag == 1"
|
|
|
+ :src="mzSettled"
|
|
|
+ class="settle-img"
|
|
|
+ alt=""
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ v-if="mzVisit.settledFlag == 2"
|
|
|
+ :src="mipSettled"
|
|
|
+ class="settle-img"
|
|
|
+ alt=""
|
|
|
+ >
|
|
|
<mz-receipt :mz-visit="mzVisit" :receipts="currentReceipts" show-checkbox/>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -209,6 +219,7 @@ import {getDateRangeFormatDate} from '@/utils/date'
|
|
|
import ReadCard from '@/components/medical-insurance/readcard/Index.vue'
|
|
|
import OutpatientDiagnoseSupply from '@/components/medical-insurance/outpatient-diagnose-supply/Index.vue'
|
|
|
import mzSettled from '@/assets/mz-settled.png'
|
|
|
+import mipSettled from '@/assets/mip-settled.png'
|
|
|
import {allAdmdvses} from "@/data/admdvs";
|
|
|
import MzBlRecord from "@/components/outpatient/MzBlRecord.vue";
|
|
|
import MzReceipt from "@/components/outpatient/MzReceipt.vue";
|
|
@@ -726,3 +737,14 @@ onMounted(() => {
|
|
|
})
|
|
|
})
|
|
|
</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+.settle-img {
|
|
|
+ z-index: 999;
|
|
|
+ width: 230px;
|
|
|
+ position: absolute;
|
|
|
+ top: 160px;
|
|
|
+ left: 260px;
|
|
|
+ background: rgba(255, 255, 255, .5);
|
|
|
+}
|
|
|
+</style>
|