From 5a88bafd895f5200c173f0e682afc03ef822b282 Mon Sep 17 00:00:00 2001 From: jackal <13856223047@163.com> Date: Sat, 20 Apr 2024 13:41:35 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E9=85=8D=E4=BB=B6=E6=96=B0=E8=B4=AD?= =?UTF-8?q?=E5=85=A5=E5=BA=93bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../newAccessory/newAccessoryAccept.vue | 16 +- .../newBuy/newAccessory/newAccessoryList.vue | 376 ++-- .../warehousing/accessoryWarehousing.vue | 1588 ++++++++--------- 3 files changed, 939 insertions(+), 1041 deletions(-) diff --git a/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryAccept.vue b/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryAccept.vue index d10e2a67..c6c6c298 100644 --- a/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryAccept.vue +++ b/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryAccept.vue @@ -216,6 +216,13 @@ v-if="!isCheck && scope.row.status==0" @click="handleDelete(scope.row)" >删除 + 删除 @@ -343,6 +350,7 @@ export default { }, taskId: '', isView: false, + isShow: false, isEdit: false, isCheck: false, addForm: { @@ -397,6 +405,12 @@ export default { }, }, created() { + const isShow = this.$route.query && this.$route.query.isShow + if (isShow && isShow == 'true') { + this.isShow = true + } else { + this.isShow = false + } const taskId = this.$route.query && this.$route.query.taskId this.taskId = taskId if (this.taskId == '' || !this.taskId) { @@ -406,14 +420,12 @@ export default { this.getTaskInfo() } const isView = this.$route.query && this.$route.query.isView - console.log(this.isView, 'isView') if (isView && isView == 'true') { this.isView = true } else { this.isView = false } const isCheck = this.$route.query && this.$route.query.isCheck - console.log(this.isCheck, 'isCheck') if (isCheck && isCheck == 'true') { this.isCheck = true } else { diff --git a/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryList.vue b/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryList.vue index f6bf1c60..b563b276 100644 --- a/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryList.vue +++ b/sgzb-ui/src/views/store/newBuy/newAccessory/newAccessoryList.vue @@ -1,11 +1,19 @@