huangyw 3 years ago
parent
commit
85eec208a9

+ 2 - 2
src/xt_pages/dialysis/PatientBox.vue View File

42
             </span>
42
             </span>
43
           </div>
43
           </div>
44
 
44
 
45
-          <div class="difficult">
45
+          <!-- <div class="difficult">
46
             疑难内瘘
46
             疑难内瘘
47
-          </div>
47
+          </div> -->
48
         </div>
48
         </div>
49
         </div>
49
         </div>
50
         <div>
50
         <div>

+ 44 - 6
src/xt_pages/stock/stockQuery.vue View File

122
         </el-table-column>
122
         </el-table-column>
123
         <el-table-column label="生产商" align="center">
123
         <el-table-column label="生产商" align="center">
124
           <template slot-scope="scope">
124
           <template slot-scope="scope">
125
-            <tr style="background: none">
125
+            <!-- <tr style="background: none">
126
               <td style="border-right: none; border-inline-end: none">
126
               <td style="border-right: none; border-inline-end: none">
127
                 {{ getManufacture(scope.row.manufacturer) }}
127
                 {{ getManufacture(scope.row.manufacturer) }}
128
               </td>
128
               </td>
129
-            </tr>
129
+            </tr> -->
130
+            <span>
131
+              {{ getManufacture(scope.row.manufacturer) }}
132
+            </span>
130
           </template>
133
           </template>
131
         </el-table-column>
134
         </el-table-column>
132
         <el-table-column label="入库数量" align="center">
135
         <el-table-column label="入库数量" align="center">
183
 
186
 
184
         <el-table-column label="剩余库存量" align="center" v-if="showThree">
187
         <el-table-column label="剩余库存量" align="center" v-if="showThree">
185
           <template slot-scope="scope">
188
           <template slot-scope="scope">
186
-            <span
189
+            <tr style="background: none">
190
+              <td
191
+                v-if="
192
+                  org_id == 9671 ||
193
+                  org_id == 10138 ||
194
+                  org_id == 10028 ||
195
+                  org_id == 9675 ||
196
+                  org_id == 4 ||
197
+                  org_id == 3877 ||
198
+                  org_id == 10243 ||
199
+                  org_id == 10088 ||
200
+                  org_id == 10245 ||
201
+                  org_id == 9779 ||
202
+                  org_id == 10106 ||
203
+                  org_id == 9504 ||
204
+                  org_id == 10215 ||
205
+                  org_id == 10188 ||
206
+                  org_id == 10191 ||
207
+                  org_id == 9919 ||
208
+                  org_id == 10265 ||
209
+                  org_id == 10164 ||
210
+                  org_id == 10290
211
+                "
212
+              >
213
+                {{ getOverFlushInfo(scope.row.xt_warehouse_info) }}
214
+              </td>
215
+              <td v-else>
216
+                {{
217
+                  getWareInfo(scope.row.xt_warehouse_info) -
218
+                  getAutoCount(scope.row.id) -
219
+                  getOutCount(scope.row.id) +
220
+                  getCancelCount(scope.row.id)
221
+                }}
222
+              </td>
223
+            </tr>
224
+            <!-- <span
187
               v-if="
225
               v-if="
188
                 org_id == 9671 ||
226
                 org_id == 9671 ||
189
                 org_id == 10138 ||
227
                 org_id == 10138 ||
213
               getAutoCount(scope.row.id) -
251
               getAutoCount(scope.row.id) -
214
               getOutCount(scope.row.id) +
252
               getOutCount(scope.row.id) +
215
               getCancelCount(scope.row.id)
253
               getCancelCount(scope.row.id)
216
-            }}</span>
254
+            }}</span> -->
217
           </template>
255
           </template>
218
         </el-table-column>
256
         </el-table-column>
219
 
257
 
437
       this.getlist();
475
       this.getlist();
438
       this.getStockDrugCount();
476
       this.getStockDrugCount();
439
     },
477
     },
440
- 
478
+
441
     // 合并单元格样式
479
     // 合并单元格样式
442
     cellStyle({ row, column, rowIndex, columnIndex }) {
480
     cellStyle({ row, column, rowIndex, columnIndex }) {
443
       let arr = [6, 7, 8, 9];
481
       let arr = [6, 7, 8, 9];
906
   display: block;
944
   display: block;
907
   width: 100%;
945
   width: 100%;
908
 }
946
 }
909
-.spanClass .cell tr:last-of-type td{
947
+.spanClass .cell tr:last-of-type td {
910
   border-bottom: none;
948
   border-bottom: none;
911
 }
949
 }
912
 </style>
950
 </style>

+ 2 - 2
src/xt_pages/user/components/PatientForm.vue View File

337
                 </el-form-item>
337
                 </el-form-item>
338
               </el-col>
338
               </el-col>
339
               
339
               
340
-              <el-col :span="8">
340
+              <!-- <el-col :span="8">
341
                 <el-form-item label="疑难内瘘 : " prop="contagions">
341
                 <el-form-item label="疑难内瘘 : " prop="contagions">
342
                   <el-radio-group v-model="form.is_infectious" @change="changeInfectious">
342
                   <el-radio-group v-model="form.is_infectious" @change="changeInfectious">
343
                     <el-radio :label="1">是</el-radio>
343
                     <el-radio :label="1">是</el-radio>
358
                     >
358
                     >
359
                   </el-checkbox-group>
359
                   </el-checkbox-group>
360
                 </el-form-item>
360
                 </el-form-item>
361
-              </el-col>
361
+              </el-col> -->
362
 
362
 
363
               <el-col :span="16" v-if="!isEdit">
363
               <el-col :span="16" v-if="!isEdit">
364
                 <el-form-item label="检查结果日期 : ">
364
                 <el-form-item label="检查结果日期 : ">