完善销售订单

This commit is contained in:
2024-08-13 09:30:42 +08:00
parent 320aca3a47
commit 79800106e0

View File

@@ -239,6 +239,13 @@ export default {
req.fetchBySid(row.sid).then((res) => {
if (res.success) {
this.formobj = res.data
if (this.formobj.files.length > 0) {
const aa = []
this.formobj.files.forEach((e) => {
aa.push(e.url)
})
this.formobj.files = aa
}
}
})
},