From f4fe7c32d684c6915fedaebb041c13d7b0c1ca14 Mon Sep 17 00:00:00 2001 From: bb_pan Date: Fri, 30 May 2025 09:55:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/material/equipment/totalLeaseRecord/index.vue | 3 ++- src/views/material/equipment/totalReturnRecord/index.vue | 2 +- src/views/material/lease/outBound/component/homeApply.vue | 6 ++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/src/views/material/equipment/totalLeaseRecord/index.vue b/src/views/material/equipment/totalLeaseRecord/index.vue index 4acaadef..92819f89 100644 --- a/src/views/material/equipment/totalLeaseRecord/index.vue +++ b/src/views/material/equipment/totalLeaseRecord/index.vue @@ -183,6 +183,7 @@ export default { { label: '类型名称', prop: 'typeCode' }, { label: '规格型号', prop: 'modelCode' }, { label: '计量单位', prop: 'unitNames' }, + { label: '设备编码', prop: 'maCode' }, { label: '预领数量', prop: 'preCountNum' }, { label: '出库数量', prop: 'preCountNum' }, { label: '备注', prop: 'remark' } @@ -229,7 +230,7 @@ export default { // 获取详情列表 async getDetailsList(code) { try { - const res = await getDetailsListApi({ code }) + const res = await getDetailsListApi({ ...this.dialogForm, code }) console.log('🚀 ~ 获取详情列表 ~ res:', res) this.dialogList = res.data.rows this.dlgTotal = res.data.total diff --git a/src/views/material/equipment/totalReturnRecord/index.vue b/src/views/material/equipment/totalReturnRecord/index.vue index 69afb7c5..ff96d28a 100644 --- a/src/views/material/equipment/totalReturnRecord/index.vue +++ b/src/views/material/equipment/totalReturnRecord/index.vue @@ -219,7 +219,7 @@ export default { // 获取详情列表 async getDetailsList(code) { try { - const res = await getBackDetailsListApi({ code }) + const res = await getBackDetailsListApi({ code, ...this.dialogForm }) console.log('🚀 ~ 获取详情列表 ~ res:', res) this.dialogList = res.data.rows this.dlgTotal = res.data.total diff --git a/src/views/material/lease/outBound/component/homeApply.vue b/src/views/material/lease/outBound/component/homeApply.vue index cc21074d..106a8fc1 100644 --- a/src/views/material/lease/outBound/component/homeApply.vue +++ b/src/views/material/lease/outBound/component/homeApply.vue @@ -494,6 +494,8 @@ export default { }, //查看验收单 async handlePrint(row) { + this.$message.warning('功能开发中...') + return const res = await getCheckInfo({id:row.id}); this.idTemp = row.id; this.checkDataInfo = res.data.leaseApplyInfo; @@ -517,6 +519,10 @@ export default { //打开领料单 async handleLld(row) { + // 提示开发中 + this.$message.warning('功能开发中...') + return + this.title = "领料单"; this.open = true; var ids = row.id;