|
@@ -356,9 +356,15 @@
|
356
|
356
|
</template>
|
357
|
357
|
</el-table-column>
|
358
|
358
|
|
|
359
|
+ <el-table-column label="药品追溯码" width="150" align="center">
|
|
360
|
+ <template slot-scope="scope">
|
|
361
|
+ <el-input v-model="scope.row.drug_code" placeholder="请输入药品追溯码"></el-input>
|
|
362
|
+ </template>
|
|
363
|
+ </el-table-column>
|
|
364
|
+
|
359
|
365
|
<el-table-column label="备注" width="150" align="center">
|
360
|
366
|
<template slot-scope="scope">
|
361
|
|
- <el-input v-model="scope.row.remark"></el-input>
|
|
367
|
+ <el-input v-model="scope.row.remark" placeholder="请输入备注"></el-input>
|
362
|
368
|
</template>
|
363
|
369
|
</el-table-column>
|
364
|
370
|
|
|
@@ -706,6 +712,7 @@ export default {
|
706
|
712
|
tempObj["last_price"] = "";
|
707
|
713
|
tempObj["count_unit"] = "";
|
708
|
714
|
tempObj["min_number"] = "";
|
|
715
|
+ tempObj["drug_code"] = ""
|
709
|
716
|
this.recordInfo.recordData.push(tempObj);
|
710
|
717
|
},
|
711
|
718
|
handleDelete: function (index, row) {
|
|
@@ -919,6 +926,7 @@ export default {
|
919
|
926
|
list[i].last_price = list[i].price
|
920
|
927
|
list[i].warehousing_count = list[i].warehousing_count.toString()
|
921
|
928
|
list[i].unitList = []
|
|
929
|
+ list[i].drug_code = list[i].drug_code
|
922
|
930
|
var obj = {id:1,name:""}
|
923
|
931
|
obj.name = list[i].drug.max_unit
|
924
|
932
|
var objOne = {id:2,name:""}
|
|
@@ -1178,6 +1186,7 @@ export default {
|
1178
|
1186
|
tempObj["number"] = "";
|
1179
|
1187
|
tempObj["count_unit"] = "";
|
1180
|
1188
|
tempObj["min_number"] = "";
|
|
1189
|
+ tempObj["drug_code"] = ""
|
1181
|
1190
|
this.recordInfo.recordData.push(tempObj);
|
1182
|
1191
|
|
1183
|
1192
|
this.GetConfigInfo();
|