소스 검색

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

csx 4 년 전
부모
커밋
97cff67126
1개의 변경된 파일8개의 추가작업 그리고 8개의 파일을 삭제
  1. 8 8
      src/xt_pages/outpatientRecord/outpatientRecord.vue

+ 8 - 8
src/xt_pages/outpatientRecord/outpatientRecord.vue 파일 보기

31
                     <template slot-scope="scope">{{scope.row.record.trt_dcla_detl_sn}}</template>
31
                     <template slot-scope="scope">{{scope.row.record.trt_dcla_detl_sn}}</template>
32
                 </el-table-column>
32
                 </el-table-column>
33
                 <el-table-column align="center" prop="name" label="时间">
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
                 </el-table-column>
35
                 </el-table-column>
36
                 <el-table-column align="center" prop="name" label="姓名">
36
                 <el-table-column align="center" prop="name" label="姓名">
37
                     <template slot-scope="scope">{{scope.row.name}}</template>
37
                     <template slot-scope="scope">{{scope.row.name}}</template>
84
 
84
 
85
                 <el-table-column align="center" prop="name" label="险种类型">
85
                 <el-table-column align="center" prop="name" label="险种类型">
86
                     <template slot-scope="scope">
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
                     </template>
94
                     </template>
95
                 </el-table-column>
95
                 </el-table-column>
96
 
96