物料号

This commit is contained in:
蔡玲
2024-12-09 13:07:54 +08:00
parent 5513bb200b
commit 24d4b44932

View File

@@ -163,9 +163,12 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="material_code"
label="物料号" label="物料号"
/> >
<template slot-scope="scope">
<input v-model="scope.row.material_code" type="text" class="set-input">
</template>
</el-table-column>
<el-table-column <el-table-column
label="数量" label="数量"
> >
@@ -301,7 +304,7 @@ export default {
crudProduceScreen.getPointVehicle({ device_code: this.popData.device_code }).then(res => { crudProduceScreen.getPointVehicle({ device_code: this.popData.device_code }).then(res => {
this.vcode = res this.vcode = res
}) })
this.popList.push({ order_code: '', material_qty: '' }) this.popList.push({ order_code: '', material_qty: '', material_code: '' })
this.show = true this.show = true
} else if (type === 'BACK') { } else if (type === 'BACK') {
const arr = [] const arr = []