From 758702a2ac946110c46ec35dc62c8a1ccd4aab00 Mon Sep 17 00:00:00 2001 From: bb_pan Date: Tue, 11 Nov 2025 14:59:13 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E6=97=B6=E9=97=B4=E9=80=89=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/business/discountApply/index.vue | 33 +++++--- src/views/business/handlingOrder/index.vue | 32 +++++--- .../claimAndRefund/receive/receiveApply.vue | 32 +++++--- .../claimAndRefund/receive/receiveManage.vue | 31 ++++--- .../receiveByCq/receiveApply.vue | 30 ++++--- .../receiveByCq/receiveManage.vue | 29 ++++--- src/views/material/cost/costDecreaseList.vue | 33 +++++--- .../lease/apply/component/outbound.vue | 25 +++--- .../lease/apply/component/picking.vue | 25 +++--- src/views/material/query/backQuery.vue | 38 +++++---- src/views/material/query/repairAuditQuery.vue | 38 +++++---- src/views/material/query/repairQuery.vue | 38 +++++---- .../material/repair/repairTest/index.vue | 42 ++++++---- .../material/repair/scrapLedger/detail.vue | 38 +++++---- src/views/material/report/backReport.vue | 35 +++++--- .../material/report/goodsEntryReport.vue | 35 +++++--- src/views/material/report/repairReport.vue | 35 +++++--- src/views/material/report/scrapReport.vue | 39 +++++---- .../material/report/testedInBoundReport.vue | 35 +++++--- .../equipment/equipmentTracking/index.vue | 81 ++++++++++++------- .../repair-testing/material-return/index.vue | 30 ++++--- .../repair-testing/one-machine/index.vue | 30 ++++--- .../repair-testing/repair-accessory/index.vue | 30 ++++--- .../engineering-in-use/index.vue | 32 +++++--- 24 files changed, 539 insertions(+), 307 deletions(-) diff --git a/src/views/business/discountApply/index.vue b/src/views/business/discountApply/index.vue index 70188979..86c0da85 100644 --- a/src/views/business/discountApply/index.vue +++ b/src/views/business/discountApply/index.vue @@ -43,17 +43,24 @@ - - + + type="date" + placeholder="开始日期" + style="width: 130px" + /> + + - + +
@@ -430,7 +437,9 @@ export default { agreementCode: '', time: null, maName: null, - typeName: null + typeName: null, + startTime: null, + endTime: null, }, // 多选框选中数据 @@ -583,8 +592,8 @@ export default { maName: this.queryParams.maName, typeName: this.queryParams.typeName, agreementId: this.queryParams.agreementId, - startTime: this.queryParams.time && this.queryParams.time[0], - endTime: this.queryParams.time && this.queryParams.time[1] + startTime: this.queryParams.startTime, + endTime: this.queryParams.endTime } getReliefList(params).then(response => { diff --git a/src/views/business/handlingOrder/index.vue b/src/views/business/handlingOrder/index.vue index 0475b46c..b0174614 100644 --- a/src/views/business/handlingOrder/index.vue +++ b/src/views/business/handlingOrder/index.vue @@ -1,16 +1,24 @@