From 0f488e2b310c569c35416e7a2d3f3aa5f68500b4 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Thu, 27 Jun 2024 17:23:45 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=80=E6=96=99=E6=8A=A5=E5=BA=9F=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../picking/apply/component/AddPicking.vue | 2 +- .../return/apply/component/home.vue | 1 + .../return/receive/component/home.vue | 1 + .../return/scrap/component/config.js | 2 +- .../return/scrap/component/home.vue | 2 -- .../claimAndreturn/return/scrap/index.vue | 20 ++++++++-------- sgzb-ui/src/views/repairTest/repair/index.vue | 1 + .../views/repairTest/repairScrap/index.vue | 23 ++++++++++++++++++- .../views/repairTest/testExamine/index.vue | 2 +- .../forecastWaste/auditing/config.js | 3 ++- .../forecastWaste/auditing/index.vue | 16 +++++++++---- 11 files changed, 53 insertions(+), 20 deletions(-) diff --git a/sgzb-ui/src/views/claimAndreturn/picking/apply/component/AddPicking.vue b/sgzb-ui/src/views/claimAndreturn/picking/apply/component/AddPicking.vue index d4f733f0..51430022 100644 --- a/sgzb-ui/src/views/claimAndreturn/picking/apply/component/AddPicking.vue +++ b/sgzb-ui/src/views/claimAndreturn/picking/apply/component/AddPicking.vue @@ -63,7 +63,7 @@ placeholder="请选择设备类型" clearable filterable - :disabled="isEdit" + :disabled="isEdit || leaseApplyDetails.length > 0" > diff --git a/sgzb-ui/src/views/claimAndreturn/return/apply/component/home.vue b/sgzb-ui/src/views/claimAndreturn/return/apply/component/home.vue index 7ccc8ebe..5222ba07 100644 --- a/sgzb-ui/src/views/claimAndreturn/return/apply/component/home.vue +++ b/sgzb-ui/src/views/claimAndreturn/return/apply/component/home.vue @@ -78,6 +78,7 @@ end-placeholder="结束日期" type="date" value-format="yyyy-MM-dd" + placeholder="请选择时间" style="width: 240px" > diff --git a/sgzb-ui/src/views/claimAndreturn/return/receive/component/home.vue b/sgzb-ui/src/views/claimAndreturn/return/receive/component/home.vue index d997e46f..94ab3fdb 100644 --- a/sgzb-ui/src/views/claimAndreturn/return/receive/component/home.vue +++ b/sgzb-ui/src/views/claimAndreturn/return/receive/component/home.vue @@ -423,6 +423,7 @@ export default { let params = { flag: 1, companyId: this.companyId, + backSource: 2, ...this.queryParams, } console.log('paramsparamsparams', params) diff --git a/sgzb-ui/src/views/claimAndreturn/return/scrap/component/config.js b/sgzb-ui/src/views/claimAndreturn/return/scrap/component/config.js index 5ca3ccd9..4ae932e5 100644 --- a/sgzb-ui/src/views/claimAndreturn/return/scrap/component/config.js +++ b/sgzb-ui/src/views/claimAndreturn/return/scrap/component/config.js @@ -108,7 +108,7 @@ export const dialogConfigReturn = { { t_width: '', t_props: 'typeName', t_label: '设备类型' }, { t_width: '', t_props: 'typeModelName', t_label: '规格型号' }, { t_width: '', t_props: 'maCode', t_label: '设备编码' }, - { t_width: '', t_props: 'status', t_label: '退料状态' }, + // { t_width: '', t_props: 'status', t_label: '退料状态' }, ], } diff --git a/sgzb-ui/src/views/claimAndreturn/return/scrap/component/home.vue b/sgzb-ui/src/views/claimAndreturn/return/scrap/component/home.vue index 2f181b21..999e2929 100644 --- a/sgzb-ui/src/views/claimAndreturn/return/scrap/component/home.vue +++ b/sgzb-ui/src/views/claimAndreturn/return/scrap/component/home.vue @@ -125,7 +125,6 @@ export default { }, /* 驳回退料 */ handleRejectReturn(data) { - console.log('驳回退料', data) this.$emit('openReturnPage', data) }, /* 外层弹框关闭 */ @@ -140,7 +139,6 @@ export default { activated() { if (this.isRefresh) { - console.log('刷新列表---') this.$refs.tbRef.getList() } }, diff --git a/sgzb-ui/src/views/claimAndreturn/return/scrap/index.vue b/sgzb-ui/src/views/claimAndreturn/return/scrap/index.vue index 0b5d04d4..2c050ae2 100644 --- a/sgzb-ui/src/views/claimAndreturn/return/scrap/index.vue +++ b/sgzb-ui/src/views/claimAndreturn/return/scrap/index.vue @@ -1,13 +1,14 @@ @@ -25,16 +26,17 @@ export default { isHome: true, returnInfo: null, isRefresh: false, + isShowComponent: 'Home', } }, methods: { openReturnPage(data) { this.returnInfo = data - this.isHome = false + this.isShowComponent = 'Return' }, closeReturnPage(val) { this.isRefresh = false - this.isHome = true + this.isShowComponent = 'Home' if (val == 1) { this.isRefresh = true diff --git a/sgzb-ui/src/views/repairTest/repair/index.vue b/sgzb-ui/src/views/repairTest/repair/index.vue index c367c8bb..ff09638e 100644 --- a/sgzb-ui/src/views/repairTest/repair/index.vue +++ b/sgzb-ui/src/views/repairTest/repair/index.vue @@ -621,6 +621,7 @@ export default { type: '', backCode: '', repairStatus: '', + backSource: 2, }, dialogQueryParams: { pageNum: 1, diff --git a/sgzb-ui/src/views/repairTest/repairScrap/index.vue b/sgzb-ui/src/views/repairTest/repairScrap/index.vue index 18df8a39..2ad4feeb 100644 --- a/sgzb-ui/src/views/repairTest/repairScrap/index.vue +++ b/sgzb-ui/src/views/repairTest/repairScrap/index.vue @@ -1,4 +1,5 @@