|
@@ -358,7 +358,9 @@
|
358
|
358
|
|
359
|
359
|
<el-table-column label="药品追溯码" width="150" align="center">
|
360
|
360
|
<template slot-scope="scope">
|
361
|
|
- <el-input v-model="scope.row.drug_code" placeholder="请输入药品追溯码"></el-input>
|
|
361
|
+ <div @click="changeDrugCode(scope.row,scope.$index)">
|
|
362
|
+ <el-input v-model="scope.row.drug_code" placeholder="请输入药品追溯码"></el-input>
|
|
363
|
+ </div>
|
362
|
364
|
</template>
|
363
|
365
|
</el-table-column>
|
364
|
366
|
|
|
@@ -410,6 +412,25 @@
|
410
|
412
|
<div style="margin-top: 20px;">合计金额: {{getTotalPirce() }} </div>
|
411
|
413
|
</el-form>
|
412
|
414
|
</div>
|
|
415
|
+
|
|
416
|
+ <el-dialog
|
|
417
|
+ title="药品追溯码"
|
|
418
|
+ :visible.sync="dialogVisible"
|
|
419
|
+ width="40%">
|
|
420
|
+ <span>
|
|
421
|
+ <el-input
|
|
422
|
+ type="textarea"
|
|
423
|
+ placeholder="请输入内容"
|
|
424
|
+ v-model="textarea"
|
|
425
|
+ :rows="10"
|
|
426
|
+ >
|
|
427
|
+ </el-input>
|
|
428
|
+ </span>
|
|
429
|
+ <span slot="footer" class="dialog-footer">
|
|
430
|
+ <el-button @click="dialogVisible = false">取 消</el-button>
|
|
431
|
+ <el-button type="primary" @click="saveTextArea()">确 定</el-button>
|
|
432
|
+ </span>
|
|
433
|
+ </el-dialog>
|
413
|
434
|
</div>
|
414
|
435
|
</template>
|
415
|
436
|
|
|
@@ -545,9 +566,29 @@ export default {
|
545
|
566
|
warehousing_id:0,
|
546
|
567
|
showCheck:false,
|
547
|
568
|
showReturnCheck:false,
|
|
569
|
+ dialogVisible:false,
|
|
570
|
+ currentRow:{},
|
|
571
|
+ currentIndex:0,
|
|
572
|
+ textarea:""
|
548
|
573
|
};
|
549
|
574
|
},
|
550
|
575
|
methods: {
|
|
576
|
+ changeDrugCode(row,index){
|
|
577
|
+ this.textarea=""
|
|
578
|
+ this.textarea = row.drug_code
|
|
579
|
+ this.currentRow = row
|
|
580
|
+ this.currentIndex =index
|
|
581
|
+ this.dialogVisible = true
|
|
582
|
+ },
|
|
583
|
+ saveTextArea(){
|
|
584
|
+
|
|
585
|
+ for(let i=0;i<this.recordInfo.recordData.length;i++){
|
|
586
|
+ if(this.currentIndex == i){
|
|
587
|
+ this.recordInfo.recordData[i].drug_code = this.textarea
|
|
588
|
+ }
|
|
589
|
+ }
|
|
590
|
+ this.dialogVisible = false
|
|
591
|
+ },
|
551
|
592
|
handleSave: function () {
|
552
|
593
|
if (this.recordInfo.recordData.length <= 0) {
|
553
|
594
|
this.$message.error("请添加入库信息");
|