Browse Source

Merge branch '20201109_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20201109_pc_vue_new_branch

csx 4 years ago
parent
commit
97cff67126
1 changed files with 8 additions and 8 deletions
  1. 8 8
      src/xt_pages/outpatientRecord/outpatientRecord.vue

+ 8 - 8
src/xt_pages/outpatientRecord/outpatientRecord.vue View File

@@ -31,7 +31,7 @@
31 31
                     <template slot-scope="scope">{{scope.row.record.trt_dcla_detl_sn}}</template>
32 32
                 </el-table-column>
33 33
                 <el-table-column align="center" prop="name" label="时间">
34
-                    <template slot-scope="scope" v-if="scope.row.ctime > 0">{{getTimes(scope.row.ctime)}}</template>
34
+                    <template slot-scope="scope" v-if="scope.row.record.ctime > 0">{{getTimes(scope.row.record.ctime)}}</template>
35 35
                 </el-table-column>
36 36
                 <el-table-column align="center" prop="name" label="姓名">
37 37
                     <template slot-scope="scope">{{scope.row.name}}</template>
@@ -84,13 +84,13 @@
84 84
 
85 85
                 <el-table-column align="center" prop="name" label="险种类型">
86 86
                     <template slot-scope="scope">
87
-                        <div v-if="scope.row.insutype == '310'">职工基本医疗保险</div>
88
-                        <div v-if="scope.row.insutype == '320'">公务员医疗补助</div>
89
-                        <div v-if="scope.row.insutype == '330'">大额医疗费用补助</div>
90
-                        <div v-if="scope.row.insutype == '340'">离休人员医疗保障</div>
91
-                        <div v-if="scope.row.insutype == '390'">城乡居民基本医疗保险</div>
92
-                        <div v-if="scope.row.insutype == '392'">城乡居民大病医疗保险</div>
93
-                        <div v-if="scope.row.insutype == '510'">生育保险</div>
87
+                        <div v-if="scope.row.record.insutype == '310'">职工基本医疗保险</div>
88
+                        <div v-if="scope.row.record.insutype == '320'">公务员医疗补助</div>
89
+                        <div v-if="scope.row.record.insutype == '330'">大额医疗费用补助</div>
90
+                        <div v-if="scope.row.record.insutype == '340'">离休人员医疗保障</div>
91
+                        <div v-if="scope.row.record.insutype == '390'">城乡居民基本医疗保险</div>
92
+                        <div v-if="scope.row.record.insutype == '392'">城乡居民大病医疗保险</div>
93
+                        <div v-if="scope.row.record.insutype == '510'">生育保险</div>
94 94
                     </template>
95 95
                 </el-table-column>
96 96