XMLWAN 2 anni fa
parent
commit
2142e6da41

+ 24 - 0
src/api/drug/drug.js Vedi File

@@ -507,3 +507,27 @@ export function getGoodNewQuery(params) {
507 507
     params: params
508 508
   })
509 509
 }
510
+
511
+export function getGoodWarehouseOutInfoById(params) {
512
+  return request({
513
+    url: '/api/drug/getgoodwarehouseoutinfobyid',
514
+    method: 'get',
515
+    params: params
516
+  })
517
+}
518
+
519
+export function getGoodPatientList(params) {
520
+  return request({
521
+    url: '/api/good/getgoodpatientlist',
522
+    method: 'get',
523
+    params: params
524
+  })
525
+}
526
+
527
+export function getWarehouseOutDetailByPatientId(params) {
528
+  return request({
529
+    url: '/api/good/getwarehouseoutdetailbypatientid',
530
+    method: 'Get',
531
+    params: params
532
+  })
533
+}

+ 3 - 0
src/xt_pages/hospitalStation/components/deskPrescription.vue Vedi File

@@ -3130,6 +3130,9 @@ export default {
3130 3130
 
3131 3131
           if (temp.length > 0) {
3132 3132
             for (let b = 0; b < temp.length; b++) {
3133
+              if(temp[b].max_unit == temp[b].min_unit){
3134
+                temp[b].retail_price = temp[b].min_price
3135
+              }
3133 3136
               let temp_index = b + 1
3134 3137
               let obj = {
3135 3138
                 advice_id: 0,

+ 4 - 1
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue Vedi File

@@ -3089,7 +3089,7 @@
3089 3089
             var temp2 = this.deepClone(this.teamList)
3090 3090
 
3091 3091
             var temp3 = this.deepClone(templateDrugs)
3092
-
3092
+           console.log("我的23323232232323232323哈哈哈哈哈哈",temp)
3093 3093
             if (temp3.length > 0) {
3094 3094
               for (let b = 0; b < temp3.length; b++) {
3095 3095
                 let obj = {
@@ -3125,6 +3125,9 @@
3125 3125
 
3126 3126
             if (temp.length > 0) {
3127 3127
               for (let b = 0; b < temp.length; b++) {
3128
+                if(temp[b].max_unit == temp[b].min_unit){
3129
+                  temp[b].retail_price = temp[b].min_price
3130
+                }
3128 3131
                 let temp_index = b + 1
3129 3132
                 let obj = {
3130 3133
                   advice_id: 0,

+ 2 - 2
src/xt_pages/stock/drugs/query.vue Vedi File

@@ -1262,7 +1262,7 @@ export default {
1262 1262
       var min_str = "";
1263 1263
       var total = 0;
1264 1264
       var newarr = arr;
1265
-      console.log("这是什sfsdfsf么!!!!!",storehouse_id)
1265
+      
1266 1266
       if (newarr.length > 0) {
1267 1267
         for (let i = 0; i < newarr.length; i++) {
1268 1268
           if (newarr[i].storehouse_id == storehouse_id) {
@@ -1285,7 +1285,7 @@ export default {
1285 1285
           min_str = (total % min_number) + min_unit;
1286 1286
         }
1287 1287
       }
1288
-      console.log("这是什么!!!!!",max_str + min_str)
1288
+      
1289 1289
       return max_str + min_str;
1290 1290
     },
1291 1291
     getOutFlushNight(

+ 170 - 4
src/xt_pages/stock/query/goodNewQuery.vue Vedi File

@@ -91,7 +91,7 @@
91 91
                 <span v-if="org_id!=3907 && org_id!=9583">
92 92
                   <tr style="background: none" v-for="(item,index) in scope.row.warehouse_out_info" :key="index">
93 93
                     <td style="border-right: none; border-inline-end: none;text-align: center">
94
-                      <span style="color:blue" @click="d"> {{getWareOutInfoCount(scope.row.warehouse_out_info,item.storehouse_id)}}</span>&nbsp;
94
+                      <span style="color:#0099FF" @click="toDialogClick(scope.row.id,scope.row.good_name,scope.row.specification_name)"> {{getWareOutInfoCount(scope.row.warehouse_out_info,item.storehouse_id)}}</span>&nbsp;
95 95
                     </td>
96 96
                   </tr>
97 97
               </span>
@@ -190,13 +190,112 @@
190 190
             </el-pagination>
191 191
      </div>
192 192
 
193
+
194
+
195
+    <el-dialog
196
+      title="出库详情"
197
+      :visible.sync="dialogVisible"
198
+      width="70%">
199
+      <span>
200
+        耗材名称:{{good_name}}
201
+        规格&单位:{{specification_name}}
202
+        查询日期:
203
+          <el-date-picker
204
+            size="small"
205
+            v-model="start_first_time"
206
+            prefix-icon="el-icon-date"
207
+            :editable="false"
208
+            style="width: 150px;"
209
+            type="date"
210
+            placeholder="选择日期时间"
211
+            align="right"
212
+            format="yyyy-MM-dd"
213
+            value-format="yyyy-MM-dd"
214
+            @change="startFirstTimeChange"
215
+           ></el-date-picker> 
216
+            <span>-</span> 
217
+            <el-date-picker
218
+              size="small"
219
+              v-model="end_first_time"
220
+              prefix-icon="el-icon-date"
221
+              :editable="false"
222
+              style="width: 150px;"
223
+              type="date"
224
+              placeholder="选择日期时间"
225
+              align="right"
226
+              format="yyyy-MM-dd"
227
+              value-format="yyyy-MM-dd"
228
+              @change="endEndTimeChange"
229
+          ></el-date-picker>
230
+      </span>
231
+      <el-divider></el-divider>
232
+       <el-table
233
+          :row-style="{ color: '#303133' }"
234
+          :header-cell-style="{
235
+            backgroundColor: 'rgb(245, 247, 250)',
236
+            color: '#606266'
237
+          }"
238
+          :data="tableData"
239
+          :class="signAndWeighBoxPatients"
240
+          border
241
+          >
242
+          <el-table-column label="单据编号" align="center">
243
+            <template slot-scope="scope">
244
+              {{scope.row.warehouse_out_order_number}}
245
+            </template>
246
+          </el-table-column>
247
+          <el-table-column label="操作时间" align="center">
248
+            <template slot-scope="scope">
249
+              {{getTime(scope.row.ctime)}}
250
+            </template>
251
+          </el-table-column>
252
+          <el-table-column label="出库数量" align="center">
253
+              <template slot-scope="scope">
254
+                {{scope.row.count}}
255
+              </template>
256
+          </el-table-column>
257
+          <el-table-column label="库存数量" align="center">
258
+            <template slot-scope="scope">
259
+               
260
+            </template>
261
+          </el-table-column>
262
+          <el-table-column label="使用人" align="center">
263
+            <template slot-scope="scope">
264
+              {{getName(scope.row.patient_id)}}
265
+            </template>
266
+          </el-table-column>
267
+          <el-table-column label="备注" align="center">
268
+            <template slot-scope="scope">
269
+              {{scope.row.remark}}
270
+            </template>
271
+          </el-table-column>
272
+       </el-table>
273
+       <el-pagination
274
+            @size-change="handleSizeChangeOne"
275
+            @current-change="handleCurrentChangeOne"
276
+            :page-sizes="[10, 50, 100,200,500,1000]"
277
+            :page-size="10"
278
+            background
279
+            align="right"
280
+            style="margin-top:20px;"
281
+            layout="total, sizes, prev, pager, next, jumper"
282
+            :total="totalone"
283
+          >
284
+            </el-pagination>
285
+      <span slot="footer" class="dialog-footer">
286
+        <el-button @click="dialogVisible = false">取 消</el-button>
287
+        <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
288
+      </span>
289
+    </el-dialog>
290
+
193 291
   </div>
194 292
 </template>
195 293
 <script>
196
-import { getStorehouseList,getGoodNewQuery } from "@/api/drug/drug"
294
+import { getStorehouseList,getGoodNewQuery,getGoodWarehouseOutInfoById } from "@/api/drug/drug"
197 295
 import {
198 296
   getStockDrugCount
199 297
 } from "@/api/stock";
298
+import { uParseTime } from '@/utils/tools'
200 299
 export default {
201 300
 
202 301
   data(){
@@ -215,6 +314,9 @@ export default {
215 314
      limit:10,
216 315
      page:1,
217 316
      total:0,
317
+     limitone:10,
318
+     pageone:1,
319
+     totalone:0,
218 320
      keyword:"",
219 321
      goodTypeList:[],
220 322
      start_time:"",
@@ -224,6 +326,14 @@ export default {
224 326
      autoCountList:[],
225 327
      cancelCountList:[],
226 328
      org_id:this.$store.getters.xt_user.org_id,
329
+     dialogVisible:false,
330
+     start_first_time:"",
331
+     end_first_time:"",
332
+     tableData:[],
333
+     good_id:0,
334
+     patientList:[],
335
+     good_name:"",
336
+     specification_name:""
227 337
     }
228 338
   
229 339
   },
@@ -249,7 +359,9 @@ export default {
249 359
       this.$router.push({path:"/stock/in/stockflow?id="+val.id+"&manufacturer="+manufacturer_name+"&packing_unit="+val.packing_unit+"&overCount="+overCount})
250 360
     },
251 361
     toClickOne(val){
362
+    
252 363
       var manufacturer_name = ""
364
+      var specification_name = ""
253 365
       for(let i=0;i<this.manufacturerList.length;i++){
254 366
           if(val.manufacturer == this.manufacturerList[i].id){
255 367
             manufacturer_name = this.manufacturerList[i].manufacturer_name
@@ -273,6 +385,7 @@ export default {
273 385
            }
274 386
            this.manufacturerList = response.data.data.manufacturerList
275 387
            this.goodTypeList = response.data.data.goodTypeList
388
+           this.patientList = response.data.data.patientList
276 389
          }
277 390
       })
278 391
     },
@@ -317,13 +430,19 @@ export default {
317 430
     handleSizeChange(val) {
318 431
       this.limit = val;
319 432
       this.getlist()
320
-     
321
-
322 433
     },
323 434
     handleCurrentChange(val) {
324 435
       this.page = val;
325 436
       this.getlist()
326 437
     },
438
+    handleSizeChangeOne(val) {
439
+      this.limitone = val;
440
+      this.toDialogClick(this.good_id,this.good_name,this.specification_name)
441
+    },
442
+    handleCurrentChangeOne(val) {
443
+      this.pageone = val;
444
+      this.toDialogClick(this.good_id,this.good_name,this.specification_name)
445
+    },
327 446
    seach(){
328 447
     this.getlist()
329 448
    },
@@ -528,6 +647,53 @@ export default {
528 647
      }
529 648
      return total
530 649
    },
650
+   toDialogClick(id,good_name,specification_name){
651
+    this.good_id = id
652
+    this.good_name = good_name
653
+    this.specification_name = specification_name
654
+     var params = {
655
+       good_id:id,
656
+       limit:this.limitone,
657
+       page:this.pageone,
658
+       start_first_time:this.start_first_time,
659
+       end_first_time:this.end_first_time,
660
+     }
661
+     getGoodWarehouseOutInfoById(params).then(response=>{
662
+       if(response.data.state == 1){
663
+         var list = response.data.data.list
664
+         console.log("list23233233232w",list)
665
+         this.tableData = list
666
+         this.totalone = response.data.data.total
667
+         this.dialogVisible = true
668
+       }
669
+     })
670
+   
671
+   },
672
+   startFirstTimeChange(){
673
+    
674
+   },
675
+   endEndTimeChange(){
676
+
677
+   },
678
+  getTime(val) {
679
+    if(val < 0){
680
+      return ""
681
+    }
682
+   if(val == ""){
683
+     return ""
684
+   }else {
685
+    return uParseTime(val, '{y}-{m}-{d}')
686
+   }
687
+   },
688
+  getName(id){
689
+    var name = ""
690
+    for(let i=0;i<this.patientList.length;i++){
691
+      if(id == this.patientList[i].id){
692
+        name = this.patientList[i].name
693
+      }
694
+    }
695
+    return name
696
+  }
531 697
   },
532 698
   created(){
533 699
     this.getStorehouseList()

+ 397 - 6
src/xt_pages/stock/query/patientQuery.vue Vedi File

@@ -1,7 +1,398 @@
1 1
 <template>
2
-  <div class="main-contain">
3
-     <div class="app-container ">
4
-       患者查询 库存查询喔喔喔
5
-     </div>
6
-  </div>
7
-</template>
2
+    <div class="main-contain">
3
+        <div class="app-container">
4
+         <el-container>
5
+               <div style="width:27%">
6
+                <el-row>
7
+                   时间:
8
+                    <el-date-picker
9
+                      size="small"
10
+                      v-model="start_time"
11
+                      prefix-icon="el-icon-date"
12
+                      :editable="false"
13
+                      style="width:160px;"
14
+                      type="date"
15
+                      placeholder="选择日期时间"
16
+                      align="right"
17
+                      format="yyyy-MM-dd"
18
+                      value-format="yyyy-MM-dd"
19
+                      @change="startTimeChange"
20
+                    ></el-date-picker> 
21
+                      <span>-</span> 
22
+                      <el-date-picker
23
+                        size="small"
24
+                        v-model="end_time"
25
+                        prefix-icon="el-icon-date"
26
+                        :editable="false"
27
+                        style="width:160px;"
28
+                        type="date"
29
+                        placeholder="选择日期时间"
30
+                        align="right"
31
+                        format="yyyy-MM-dd"
32
+                        value-format="yyyy-MM-dd"
33
+                        @change="endTimeChange"
34
+                    ></el-date-picker>
35
+                </el-row>
36
+                <el-row></el-row>
37
+                 <el-row>
38
+                   <el-col :span="24">
39
+                      <el-input style="width:200px;margin-top:10px;margin-bottom:10px" placeholder="请输入患者姓名" v-model="keyword"></el-input>&nbsp;<el-button type="primary" @click="onSearch" icon="el-icon-search">搜索</el-button>
40
+                   </el-col>
41
+                  </el-row>
42
+
43
+                  <el-row>
44
+                      <el-table
45
+                          ref="singleTable"
46
+                          :data="patientList"
47
+                          highlight-current-row
48
+                           border
49
+                          @current-change="handleCurrentChange"
50
+                           height="440"
51
+                           :row-style="{ color: '#303133' }"
52
+                          :header-cell-style="{
53
+                            backgroundColor: 'rgb(245, 247, 250)',
54
+                            color: '#606266'
55
+                          }"
56
+                        >
57
+                     <el-table-column
58
+                       prop="date"
59
+                       label="序号"
60
+                      align="center"
61
+                      >
62
+                      <template slot-scope="scope">
63
+                        {{scope.$index + 1}}
64
+                      </template>
65
+                    </el-table-column>
66
+                     <el-table-column
67
+                       prop="name"
68
+                      label="姓名"
69
+                      align="center">
70
+                      <template slot-scope="scope">
71
+                        {{scope.row.name}}
72
+                      </template>
73
+                     </el-table-column>
74
+
75
+                     </el-table>
76
+                  </el-row>
77
+               </div>
78
+
79
+                 <el-main>
80
+                  <div class="main newMain">
81
+                      
82
+                        
83
+                  <el-tabs>
84
+
85
+                   <el-tab-pane label="患者使用列表">
86
+                   
87
+                     <el-table
88
+                          :data="tableList"
89
+                          highlight-current-row
90
+                           border
91
+                           height="440"
92
+                           :row-style="{ color: '#303133' }"
93
+                          :header-cell-style="{
94
+                            backgroundColor: 'rgb(245, 247, 250)',
95
+                            color: '#606266'
96
+                          }"
97
+                        >
98
+                     <el-table-column
99
+                       prop="date"
100
+                       label="名称"
101
+                      align="center"
102
+                      >
103
+                      <template slot-scope="scope">
104
+                        {{scope.row.GoodInfo.good_name}}
105
+                      </template>
106
+                    </el-table-column>
107
+                     <el-table-column
108
+                       prop="name"
109
+                      label="生产厂家"
110
+                      align="center">
111
+                      <template slot-scope="scope">
112
+                        {{getManufacturName(scope.row.manufacturer)}}
113
+                      </template>
114
+                     </el-table-column>
115
+                      <el-table-column
116
+                       prop="name"
117
+                      label="规格&单位"
118
+                      align="center">
119
+                      <template slot-scope="scope">
120
+                        {{scope.row.GoodInfo.specification_name}}
121
+                      </template>
122
+                     </el-table-column>
123
+                      <el-table-column
124
+                       prop="name"
125
+                      label="数量"
126
+                      align="center">
127
+                      <template slot-scope="scope">
128
+                        {{scope.row.count}}
129
+                      </template>
130
+                     </el-table-column>
131
+
132
+                     </el-table>
133
+                    </el-tab-pane>
134
+                   </el-tabs>
135
+                </div>
136
+             </el-main>
137
+          </el-container>
138
+        </el-container>
139
+      </el-container>
140
+      </div>
141
+    </div>
142
+
143
+</template>
144
+<script>
145
+import { getGoodPatientList,getWarehouseOutDetailByPatientId } from "@/api/drug/drug"
146
+export default {
147
+  data(){
148
+    return{
149
+      zoneList:[],
150
+      zone_id:0,
151
+      tableData:[],
152
+      DeviceTypeType:[],
153
+      device_type:"",
154
+      forms:{},
155
+      start_time:"",
156
+      end_time:"",
157
+      patientList:[],
158
+      tableList:[],
159
+      keyword:"",
160
+      manufacturerList:[],
161
+      patient_id:0,
162
+      patient:{},
163
+    }
164
+  },
165
+  methods:{
166
+    startTimeChange(){
167
+      this.handleCurrentChange(this.patient)
168
+    },
169
+    endTimeChange(){
170
+      this.handleCurrentChange(this.patient)
171
+    },
172
+    getlist(){
173
+        var params = {
174
+          keyword:this.keyword,
175
+        }
176
+      getGoodPatientList(params).then(response=>{
177
+        if(response.data.state == 1){
178
+          var list = response.data.data.list
179
+          this.patientList = list
180
+          this.$refs.singleTable.setCurrentRow(this.patientList[0]);
181
+          this.handleCurrentChange(this.patientList[0])
182
+        }
183
+      })
184
+    },
185
+   onSearch(){
186
+     this.getlist()
187
+   },
188
+   handleCurrentChange(val){
189
+       this.patient = val
190
+       var params = {
191
+         patient_id:val.id,
192
+         start_time:this.start_time,
193
+         end_time:this.end_time,
194
+       }
195
+     getWarehouseOutDetailByPatientId(params).then(response=>{
196
+        if(response.data.state == 1){
197
+          var list = response.data.data.list
198
+          this.manufacturerList = response.data.data.manufacturerList
199
+          this.tableList = list
200
+        }
201
+     })
202
+   },
203
+   getManufacturName(id){
204
+     var manufacturer_name = ""
205
+     for(let i=0;i<this.manufacturerList.length;i++){
206
+        if(id == this.manufacturerList[i].id){
207
+          manufacturer_name = this.manufacturerList[i].manufacturer_name
208
+        } 
209
+     }
210
+     return manufacturer_name
211
+   }
212
+  },
213
+  created(){
214
+    var nowDate = new Date();
215
+    var nowYear = nowDate.getFullYear();
216
+    var nowMonth = nowDate.getMonth() + 1;
217
+    var nowDay = nowDate.getDate();
218
+    this.end_time =
219
+      nowYear +
220
+      "-" +
221
+      (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
222
+      "-" +
223
+      (nowDay < 10 ? "0" + nowDay : nowDay);
224
+    nowDate.setMonth(nowDate.getMonth() - 1);
225
+    nowYear = nowDate.getFullYear();
226
+    nowMonth = nowDate.getMonth() + 1;
227
+    nowDay = nowDate.getDate();
228
+    this.start_time =
229
+      nowYear +
230
+      "-" +
231
+      (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
232
+      "-" +
233
+      (nowDay < 10 ? "0" + nowDay : nowDay);
234
+     this.getlist()
235
+  },
236
+  
237
+}
238
+</script>
239
+
240
+
241
+   
242
+<style lang="scss" scoped>
243
+    .zone{
244
+      //  margin-left: 30px;
245
+      //  text-align: left;
246
+       width: 70px;
247
+       display: inline-block;
248
+       color:#606266;
249
+    }
250
+    .disinfect{
251
+      position: relative;
252
+      .newButton{
253
+        // position: absolute;
254
+        // right: 2%;
255
+        // top:4px;
256
+        // z-index: 9;
257
+        margin-bottom: 10px;
258
+    margin-left: 90%;
259
+      }
260
+    }
261
+    .disinfectOne{
262
+      position: relative;
263
+      .newButtonOne{
264
+        position: absolute;
265
+         right: 0;
266
+         top: -10;
267
+         z-index: 18;
268
+      }
269
+    }
270
+    .but{
271
+      width: 200px;
272
+      height: 50px;
273
+      // border: solid 1px red;
274
+      margin-left: 77%;
275
+    }
276
+    .clearn{
277
+      width: 460px;
278
+      height: 50px;
279
+      // border:solid 1px red;
280
+      margin-left:650px;
281
+    }
282
+
283
+  .zClass{
284
+    width: 200px;
285
+    height: 200px;
286
+    // border:solid 1px red;
287
+    margin-left: 450px;
288
+    margin-top: 200px;
289
+  }
290
+  .warn{
291
+    color: red;
292
+    font-size: 14px;
293
+    width: 100%;
294
+    display: inline-block;
295
+    margin-left: 96px;
296
+  }
297
+
298
+  .userbutton{
299
+       margin-bottom: 10px;
300
+    margin-left: 82%
301
+  }
302
+
303
+</style>
304
+<style lang="scss">
305
+   .a{
306
+     margin-bottom: 10px;
307
+      margin-top: 6px;
308
+
309
+   }
310
+
311
+   .b{
312
+    .el-button{
313
+      margin-left: 90%;
314
+      margin-bottom: 10px;
315
+    }
316
+   }
317
+
318
+   .stoppage{
319
+     .el-form-item__label{
320
+       width:190px;
321
+     }
322
+   }
323
+   .st{
324
+     .el-form-item__label{
325
+       width:-10px;
326
+     }
327
+   }
328
+   .main{
329
+     position: relative;
330
+     .newButtonOne{
331
+       position:absolute;
332
+       right: 0;
333
+       z-index: 2;
334
+     }
335
+   }
336
+
337
+    .elbutton{
338
+      // border: solid 1px red;
339
+      height: 50px;
340
+      width: 400px;
341
+      margin-left: 650px;
342
+    }
343
+  // .el-form-item__label {
344
+  //   width: 130px;
345
+  //   font-size: 14px;
346
+  // }
347
+  .el-form-item__error {
348
+    margin-left: 130px;
349
+  }
350
+
351
+ .el-upload-list__item-name {
352
+    color: #606266;
353
+    display: block;
354
+    margin-right: 40px;
355
+    overflow: hidden;
356
+    padding-left: 4px;
357
+    text-overflow: ellipsis;
358
+    transition: color .3s;
359
+    white-space: nowrap;
360
+}
361
+.el-main{
362
+  padding-top: 0px;
363
+}
364
+.newMain{
365
+  .el-form-item__label{
366
+    width: 104px;
367
+  }
368
+}
369
+.newDisinfectOne{
370
+  .el-input--prefix .el-input__inner{
371
+    padding-left: 15px
372
+  }
373
+}
374
+.stoppage{
375
+  .el-form-item__label{
376
+    width: 18%;
377
+  }
378
+}
379
+.newItem{
380
+  .el-form-item__label{
381
+    width: 130px;
382
+  }
383
+}
384
+.formItem{
385
+  .el-form-item__label{
386
+    width: 104px;
387
+    line-height: 30px;
388
+  }
389
+}
390
+.newname{
391
+  .el-form-item__label{
392
+    width: 60px;
393
+  }
394
+}
395
+::-webkit-scrollbar{
396
+  height: 20px;
397
+}
398
+</style>

+ 7 - 1
src/xt_pages/stock/stockBatchNumber.vue Vedi File

@@ -38,7 +38,8 @@
38 38
               value-format="yyyy-MM-dd"
39 39
               @change="endTimeChange"
40 40
           ></el-date-picker>
41
-  
41
+          
42
+          
42 43
       </div>
43 44
       
44 45
        <el-table
@@ -92,6 +93,11 @@
92 93
              <span v-if="scope.row.packing_price > 0"> {{scope.row.packing_price}}</span>
93 94
            </template>
94 95
         </el-table-column>
96
+        <!-- <el-table-column prop="drug_name" label="该批次剩余库存" align="center">
97
+           <template slot-scope="scope">
98
+             <span> {{scope.row.stock_count}}</span>
99
+           </template>
100
+        </el-table-column> -->
95 101
         <el-table-column prop="drug_name" label="备注" align="center">
96 102
            <template slot-scope="scope">
97 103
              <span>{{scope.row.remark}}</span>