Browse Source

1.修改货位查看

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

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

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

Loading…
Cancel
Save