Commit 09986e63 by LJM

add

parent 0f28a562
Showing with 4 additions and 3 deletions
...@@ -786,12 +786,13 @@ ...@@ -786,12 +786,13 @@
}, 200); }, 200);
}, },
showDrawer(index) { showDrawer(index) {
this.image_list = [];
this.detail = this.list[index]; this.detail = this.list[index];
this.stockPreCheckTallyParams.tally_num = this.detail.tally_qty || ''; this.stockPreCheckTallyParams.tally_num = this.detail.tally_qty || '';
this.stockPreCheckTallyParams.tally_remark = ''; this.stockPreCheckTallyParams.tally_remark = this.detail.tally_remark || '';
this.stockPreCheckTallyParams.preckeck_imgs = ''; this.stockPreCheckTallyParams.preckeck_imgs = this.detail.precheck_images;
this.stockPreCheckTallyParams.is_print_label = 1; this.stockPreCheckTallyParams.is_print_label = 1;
this.image_list = []; this.image_list = this.stockPreCheckTallyParams.preckeck_imgs ? this.stockPreCheckTallyParams.preckeck_imgs.split(',') : [];
this.$refs.showRight.open(); this.$refs.showRight.open();
}, },
closeDrawer() { closeDrawer() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment