Kaynağa Gözat

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

csx 3 yıl önce
ebeveyn
işleme
ec1f5624f9

+ 14 - 0
src/xt_pages/hospitalStation/components/prescriptionTable.vue Dosyayı Görüntüle

@@ -21,6 +21,15 @@
21 21
           </div>
22 22
         </template>
23 23
       </el-table-column>
24
+
25
+      <el-table-column align="center" prop="single_dose" width="90" label="规格">
26
+        <template slot-scope="scope">
27
+          <div style="display:flex;align-items:center;">
28
+                <span v-if="scope.row.drug.min_unit != scope.row.drug.dose_unit">{{scope.row.drug.dose}}{{scope.row.drug.dose_unit}}&nbsp;* &nbsp;</span>{{scope.row.drug.min_number}}{{scope.row.drug.min_unit}}/{{scope.row.drug.max_unit}}
29
+          </div>
30
+        </template>
31
+      </el-table-column>
32
+
24 33
       <el-table-column align="center" prop="delivery_way" width="100" label="用法">
25 34
         <template slot-scope="scope">
26 35
           <el-select v-model="scope.row.delivery_way" placeholder="请选择">
@@ -90,6 +99,11 @@
90 99
       <el-table-column align="center" prop="statistical_classification" width="100" label="组">
91 100
         <template slot-scope="scope">{{scope.row.type == 2?getGroup(scope.row.statistical_classification):"耗材"}}</template>
92 101
       </el-table-column>
102
+
103
+      <el-table-column align="center" prop="statistical_classification" width="100" label="规格">
104
+        <template slot-scope="scope">{{scope.row.type == 2?"":scope.row.good_info.specification_name}}</template>
105
+      </el-table-column>
106
+
93 107
       <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
94 108
         <template slot-scope="scope">
95 109
           <el-input v-model="scope.row.single_dose" @input="getProjectSingleDose(scope)" placeholder=""></el-input>

+ 3 - 1
src/xt_pages/hospitalStation/doctorDesk.vue Dosyayı Görüntüle

@@ -1116,7 +1116,9 @@
1116 1116
                     id: prescription.advices[b].drug_id,
1117 1117
                     drug: prescription.advices[b].drug,
1118 1118
                     groupno: prescription.advices[b].groupno,
1119
-                    hosp_appr_flag: prescription.advices[b].hosp_appr_flag.toString()
1119
+                    hosp_appr_flag: prescription.advices[b].hosp_appr_flag.toString(),
1120
+
1121
+
1120 1122
 
1121 1123
                   }
1122 1124
                   tempAdvice.push(obj)