This commit is contained in:
2025-09-18 16:49:05 +08:00
parent 66db2bd854
commit 3410732a36
3 changed files with 7 additions and 4 deletions

View File

@@ -127,10 +127,11 @@
async _getOutGroupInfo () {
try {
let res = await getOutGroupInfo(this.val1)
if (res && res.data.length > 0) {
if (res && res.data.data.length > 0) {
this.val2 = res.data.bom_code
this.val3 = res.data.device_code
this.dataList = [...res.data.data]
this.dataList = res.data.data
console.log(this.dataList, 666)
} else {
this.dataList = []
}