Browse Source

1.修改货位查看

fix_bug_pro20231227
0.0 2 years ago
parent
commit
bfbce84207
  1. 24
      src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue

24
src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue

@ -358,16 +358,22 @@
});
},
async beforeOpen(done, type) {
// if (["edit", "view"].includes(type)) {
// await getDetail(this.form.id).then(async res => {
// //
// await getQRCode(this.form.qrCode).then(res=>{
// let url = window.URL.createObjectURL(res.data);
// console.log("url>>>>>>>",url);
// this.form.qrCodeUrl = url;
// console.log(res);
// })
// console.log(this.form);
// this.form = res.data.data;
// });
// }
// done();
if (["edit", "view"].includes(type)) {
await getDetail(this.form.id).then(async res => {
//
await getQRCode(this.form.qrCode).then(res=>{
let url = window.URL.createObjectURL(res.data);
console.log("url>>>>>>>",url);
this.form.qrCodeUrl = url;
console.log(res);
})
console.log(this.form);
getDetail(this.form.id).then(res => {
this.form = res.data.data;
});
}

Loading…
Cancel
Save