刻字工序
This commit is contained in:
@@ -64,12 +64,20 @@ export default {
|
|||||||
// 设备下拉框
|
// 设备下拉框
|
||||||
async _letterDeviceList () {
|
async _letterDeviceList () {
|
||||||
let res = await letterDeviceList('1535144682756116480')
|
let res = await letterDeviceList('1535144682756116480')
|
||||||
this.options2 = [...res.data]
|
if (res.code === 200) {
|
||||||
|
this.options2 = [...res.content]
|
||||||
|
} else {
|
||||||
|
this.toast(res.msg)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 车间下拉框
|
// 车间下拉框
|
||||||
async _pourDictList () {
|
async _pourDictList () {
|
||||||
let res = await pourDictList('product_area')
|
let res = await pourDictList('product_area')
|
||||||
this.options1 = [...res.data]
|
if (res.code === 200) {
|
||||||
|
this.options1 = [...res.content]
|
||||||
|
} else {
|
||||||
|
this.toast(res.msg)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 确认入库
|
// 确认入库
|
||||||
async toSure () {
|
async toSure () {
|
||||||
|
|||||||
@@ -63,12 +63,20 @@ export default {
|
|||||||
// 设备下拉框
|
// 设备下拉框
|
||||||
async _pourDeviceList () {
|
async _pourDeviceList () {
|
||||||
let res = await pourDeviceList()
|
let res = await pourDeviceList()
|
||||||
this.options2 = [...res.data]
|
if (res.code === 200) {
|
||||||
|
this.options2 = [...res.content]
|
||||||
|
} else {
|
||||||
|
this.toast(res.msg)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 车间下拉框
|
// 车间下拉框
|
||||||
async _pourDictList () {
|
async _pourDictList () {
|
||||||
let res = await pourDictList('product_area')
|
let res = await pourDictList('product_area')
|
||||||
this.options1 = [...res.data]
|
if (res.code === 200) {
|
||||||
|
this.options1 = [...res.content]
|
||||||
|
} else {
|
||||||
|
this.toast(res.msg)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 确认入库
|
// 确认入库
|
||||||
async toSure () {
|
async toSure () {
|
||||||
|
|||||||
Reference in New Issue
Block a user