Bladeren bron

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

csx 4 jaren geleden
bovenliggende
commit
3f09f9e3ef

+ 10 - 5
src/xt_pages/outpatientCharges/summaryDetail.vue Bestand weergeven

@@ -29,11 +29,6 @@
29 29
                         </el-table-column>
30 30
 
31 31
 
32
-                        <el-table-column align="center" prop="statistical_classification" width="100" label="组">
33
-                          <template slot-scope="scope">
34
-                            {{getGroup(scope.row.statistical_classification)}}
35
-                          </template>
36
-                        </el-table-column>
37 32
                         <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
38 33
                           <template slot-scope="scope">{{scope.row.single_dose}}&nbsp;&nbsp;{{scope.row.single_dose_unit}}</template>
39 34
 
@@ -65,6 +60,16 @@
65 60
 
66 61
                           </template>
67 62
                         </el-table-column>
63
+
64
+                          <el-table-column align="center" prop="name" width="60" label="总价">
65
+                              <template slot-scope="scope">
66
+                                  <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
67
+                                  {{scope.row.price}}元
68
+
69
+                              </template>
70
+                          </el-table-column>
71
+
72
+
68 73
                         <el-table-column align="center" prop="name" width="80" label="备注">
69 74
                           <template slot-scope="scope">
70 75
                             <!--<el-input v-model="scope.row.remark" readonly></el-input>-->

+ 7 - 0
src/xt_pages/outpatientRecord/outpatientRecord.vue Bestand weergeven

@@ -323,6 +323,13 @@
323 323
                       obj.label = that.insutype_arr[b].label
324 324
                     }
325 325
                   }
326
+                  if(response.data.data.info.output.insuinfo[i].psn_insu_stas == 1){
327
+                    obj.label =  obj.label
328
+
329
+                  }else{
330
+                    obj.label =  obj.label +"(已暂停)"
331
+                  }
332
+
326 333
                   that.insutypes.push(obj)
327 334
 
328 335
                 }