Browse Source

操作屏

master
蔡玲玲 7 days ago
parent
commit
b4e378c146
  1. 16
      lms/nladmin-ui/src/views/wms/produceScreen/index.vue
  2. 4
      lms/nladmin-ui/src/views/wms/produceScreen/mork.js

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

@ -389,11 +389,13 @@ export default {
} }
}, },
handleCurrentChange(val) { handleCurrentChange(val) {
this.currentRow = val if (val) {
this.imgSrc = val.vehicle_path this.currentRow = val
crudProduceScreen.fabMaterial({ vehicle_code: this.currentRow.vehicle_code }).then(res => { this.imgSrc = val.vehicle_path
this.popSecList = [...res] crudProduceScreen.fabMaterial({ vehicle_code: this.currentRow.vehicle_code }).then(res => {
}) this.popSecList = [...res]
})
}
}, },
toSure() { toSure() {
this.disabled = true this.disabled = true
@ -464,7 +466,9 @@ export default {
rows.splice(index, 1) rows.splice(index, 1)
}, },
handleCurrentChange1(val) { handleCurrentChange1(val) {
this.imgSrc = val.vehicle_path if (val) {
this.imgSrc = val.vehicle_path
}
} }
} }
} }

4
lms/nladmin-ui/src/views/wms/produceScreen/mork.js

@ -30,7 +30,7 @@ export function deviceInLogin() {
// 4.根据工序查询订单 // 4.根据工序查询订单
export function regionOrder(code) { export function regionOrder(code) {
const res = { const res = {
content: [{ vehicle_code: '123', order_code: '800034202869', region_code: '111-07', material_id: 'A7E0019008760_00', material_type: 'S39_SA01', custom: 'BBC支撑板后上', material_qty: '120', plan_date: '2024/8/11', vehicle_path: 'http://127.0.0.1:5500/src/assets/images/screen_bg.jpg.preview' }, { order_code: '1', vehicle_path: 'http://127.0.0.1:5500/src/assets/images/screen_bg.jpg.preview' }, { order_code: '2' }, { order_code: '3' }, { order_code: '4' }, { order_code: '5' }, { order_code: '6' }, { order_code: '7' }, { order_code: '8' }, { order_code: '9' }] content: [{ vehicle_code: '123', order_code: '800034202869', region_code: '111-07', material_id: 'A7E0019008760_00', material_type: 'S39_SA01', custom: 'BBC支撑板后上', material_qty: '120', plan_date: '2024/8/11', vehicle_path: '' }, { order_code: '1', vehicle_path: '' }, { order_code: '2' }, { order_code: '3' }, { order_code: '4' }, { order_code: '5' }, { order_code: '6' }, { order_code: '7' }, { order_code: '8' }, { order_code: '9' }]
} }
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
resolve(res) resolve(res)
@ -40,7 +40,7 @@ export function regionOrder(code) {
// 5.查询载具物料信息 // 5.查询载具物料信息
export function fabMaterial() { export function fabMaterial() {
const res = [ const res = [
{ order_code: '111-02', material_qty: '', vehicle_path: 'http://127.0.0.1:5500/src/assets/images/screen_bg.jpg.preview' } { order_code: '111-02', material_qty: '', vehicle_path: '' }
] ]
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
resolve(res) resolve(res)

Loading…
Cancel
Save