|
@@ -63,6 +63,10 @@ export default {
|
|
|
materialName: null,
|
|
|
//物资编码
|
|
|
materialCode:null,
|
|
|
+ // 物资规格
|
|
|
+ materialSpecification:null,
|
|
|
+ // 物资型号
|
|
|
+ materialModel:null,
|
|
|
//盘点数量
|
|
|
materialNumber:null,
|
|
|
//物资id
|
|
@@ -114,6 +118,9 @@ export default {
|
|
|
currentRadioChange1(selection) {
|
|
|
console.log(selection);
|
|
|
this.materialName = selection.materialName;
|
|
|
+ this.materialCode = selection.materialCode;
|
|
|
+ this.materialSpecification = selection.materialSpecification;
|
|
|
+ this.materialModel = selection.materialModel;
|
|
|
this.max = selection.max;
|
|
|
},
|
|
|
currentRadioChange2(selection) {
|