瀏覽代碼

添加医保报销费用的仅供参考提示。

lighter 4 年之前
父節點
當前提交
1659222495
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      src/views/hospital-service/inpatient-service/InPatientService.vue

+ 2 - 3
src/views/hospital-service/inpatient-service/InPatientService.vue

@@ -1,7 +1,8 @@
 <template>
   <window-size>
-    <van-empty :image="empty" description="未找到您的在院信息" v-if="showEmpty"></van-empty>
+    <van-empty v-if="showEmpty" van-empty description="未找到您的在院信息"></van-empty>
     <div v-else>
+      <van-notice-bar left-icon="warning-o" text="医保报销费用仅供参考,实际报销金额以出院结算单为准。" />
       <van-cell title="姓名" :value="data.name"></van-cell>
       <van-cell title="住院号" :value="data.inpatientNo"></van-cell>
       <van-cell title="住院科室" :value="data.deptName"></van-cell>
@@ -31,7 +32,6 @@
 <script>
 import { computed, onMounted, ref } from 'vue'
 import { useRouter } from 'vue-router'
-import empty from '../../../assets/empty.png'
 import { getInpatientInfo } from '../../../api/inpatient-service'
 export default {
   name: 'InPatientService',
@@ -71,7 +71,6 @@ export default {
       })
     })
     return {
-      empty,
       data,
       showEmpty,
       toZyFeeDetail,