|
|
|
|
@ -484,7 +484,8 @@ export default { |
|
|
|
|
tableData: [], |
|
|
|
|
dialogReceive: false, |
|
|
|
|
receiveForm: { |
|
|
|
|
tableData: [] |
|
|
|
|
tableData: [], |
|
|
|
|
remark:'' |
|
|
|
|
}, |
|
|
|
|
reciveRules: { |
|
|
|
|
applyUser: { required: true, message: '请输入申领人', trigger: 'blur' }, |
|
|
|
|
@ -1035,6 +1036,7 @@ export default { |
|
|
|
|
this.isShowTips = false |
|
|
|
|
this.receiveForm = row |
|
|
|
|
this.receiveForm.tableData = [] |
|
|
|
|
this.receiveForm.remark = '' |
|
|
|
|
this.receiveForm.tableData.push({ |
|
|
|
|
id: row.id, //物资id |
|
|
|
|
goodsName: row.name, //物资名称 |
|
|
|
|
@ -1161,7 +1163,6 @@ export default { |
|
|
|
|
let data = [] |
|
|
|
|
console.log('this.receiveForm.tableData', this.receiveForm.tableData) |
|
|
|
|
this.receiveForm.tableData.map(item => { |
|
|
|
|
console.log(99898, item) |
|
|
|
|
data.push({ |
|
|
|
|
productId: item.id, //物资id |
|
|
|
|
productName: item.goodsName, //物资名称 |
|
|
|
|
|