Browse Source

物料号

master
蔡玲 1 month ago
parent
commit
24d4b44932
  1. 9
      lms/nladmin-ui/src/views/wms/produceScreen/index.vue

9
lms/nladmin-ui/src/views/wms/produceScreen/index.vue

@ -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 = []

Loading…
Cancel
Save