This commit is contained in:
2026-03-02 14:03:20 +08:00
parent 3503e76631
commit 61c6e3075c
2 changed files with 24 additions and 12 deletions

View File

@@ -155,18 +155,24 @@
try {
let current = await getSD01GroupLog(v1, v2)
if (current && current?.material) {
uni.showModal({
title: '提示',
cancelText: '取消',
confirmText: '确定',
content: '已发现近期从SD01出库的组盘信息是否自动填充',
success: (res) => {
if (res.confirm) {
this.dataList.push(...current.material)
this.flag = true
if (current?.regionCode) {
this.index = '1'
this.index2 = current.regionCode
}
if (current?.material) {
uni.showModal({
title: '提示',
cancelText: '取消',
confirmText: '确定',
content: '已发现近期从SD01出库的组盘信息是否自动填充',
success: (res) => {
if (res.confirm) {
this.dataList = [...current.material]
this.flag = true
}
}
}
})
})
}
}
} catch (e) {
console.log(e)