This commit is contained in:
aihe 2024-05-12 22:37:59 +08:00
parent 71a5f3040d
commit d2d632a087

View File

@ -203,9 +203,9 @@
},
async handleSubmit() {
let res = await this.getRealGetWaybillPrintData()
const imageUrl = res?.data?.map(t=> t.imageUrl) || ''
const imageUrl = res?.data?.map(t=> t.imageUrl) || []
this.$refs.curPrint.startPrint({
imageUrl: imageUrl,
imageUrl: imageUrl.filter(v=> !!v),
paperWidth: 480,
})
},