|
@@ -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,
|