From 610ec741be27b1987f186765ea982b4198d2a147 Mon Sep 17 00:00:00 2001 From: wlikett <2331964395@qq.com> Date: Thu, 21 Dec 2023 17:57:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E9=A2=86=E6=96=99=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E5=88=97=E8=A1=A8=20=E5=92=8C=20=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E9=A2=86=E6=96=99=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sgzb-ui/src/api/claimAndRefund/receive.js | 56 +- .../claimAndRefund/receive/receiveApply.vue | 133 +++-- .../receive/receiveApplyAdd.vue | 509 ++++++++---------- .../claimAndRefund/receive/receiveManage.vue | 89 +-- 4 files changed, 434 insertions(+), 353 deletions(-) diff --git a/sgzb-ui/src/api/claimAndRefund/receive.js b/sgzb-ui/src/api/claimAndRefund/receive.js index 22906e49..aad66485 100644 --- a/sgzb-ui/src/api/claimAndRefund/receive.js +++ b/sgzb-ui/src/api/claimAndRefund/receive.js @@ -61,21 +61,57 @@ export function removeAgreement(data) { } // 机具领料-列表 -export function getLeaseAuditList(query) { +export function getLeaseAuditListAll(query) { return request({ - url: '/base/tm_task/getLeaseAuditList', + url: '/base/tm_task/getLeaseAuditListAll', method: 'get', params: query }) } - - - - - - - - + +// 获取 来往单位 列表 +export function getUnitData(params = {}){ + return request({ + url: '/system/select/getUnitCbx', + method: 'post', + data: params + }) +} + +// 获取 工程 列表 +export function getProData(params = {}){ + return request({ + url: '/system/select/getSectionEngineeringCbx', + method: 'post', + data: params + }) +} + +// 获取 设备树 +export function getDeviceTypeTree(params = {}){ + return request({ + url: '/system/select/getDeviceTypeTree', + method: 'post', + data: params + }) +} + +// 根据单位id和工程id 获取 协议id +export function getAgreementInfoById(params = {}){ + return request({ + url:'/system/select/getAgreementInfoById', + method:'post', + data:params + }) +} + +export function submitLeaseApply(params = {}){ + return request({ + url:'/base/tm_task/submitLeaseApply', + method: 'post', + data:params + }) +} diff --git a/sgzb-ui/src/views/claimAndRefund/receive/receiveApply.vue b/sgzb-ui/src/views/claimAndRefund/receive/receiveApply.vue index 3776c9d2..b82fba8b 100644 --- a/sgzb-ui/src/views/claimAndRefund/receive/receiveApply.vue +++ b/sgzb-ui/src/views/claimAndRefund/receive/receiveApply.vue @@ -2,37 +2,41 @@