操作屏

This commit is contained in:
2024-08-21 15:36:03 +08:00
parent 36455395aa
commit 088b82cc4d
2 changed files with 3 additions and 3 deletions

View File

@@ -331,7 +331,7 @@ export default {
this.options2 = [...res.content] this.options2 = [...res.content]
}) })
} else if (type === 2 && name in this.pointState) { } else if (type === 2 && name in this.pointState) {
crudProduceScreen.regionOrder(this.pointState[name]).then(res => { crudProduceScreen.regionOrder(this.pkObj.value, this.pointState[name]).then(res => {
this.n1List = [...res.content] this.n1List = [...res.content]
this.vechineList = [] this.vechineList = []
this.show = true this.show = true

View File

@@ -49,9 +49,9 @@ export function regionPoints(code) {
// } // }
// 根据工序查询订单 // 根据工序查询订单
export function regionOrder(code) { export function regionOrder(code, code1) {
return request({ return request({
url: 'api/fab/regionOrder?regionCode=' + code, url: 'api/fab/regionOrder?regionCode=' + code + '&deviceCode=' + code1,
method: 'get' method: 'get'
}) })
} }