From 40c37af13093e98d7f5b10a1d5c915350e0b0594 Mon Sep 17 00:00:00 2001
From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com>
Date: Thu, 1 Aug 2024 16:06:28 +0800
Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E7=AE=97=E9=A1=B5=E9=9D=A2=E4=BC=98?=
=?UTF-8?q?=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
sgzb-ui/src/api/cost/cost.js | 4 ++++
.../csotSettlement/component/monthRecord.vue | 18 ++++++++++++++----
.../cost/csotSettlement/costApplyList.vue | 6 ++++++
.../toolsAcceptance/component/codingTools.vue | 1 -
4 files changed, 24 insertions(+), 5 deletions(-)
diff --git a/sgzb-ui/src/api/cost/cost.js b/sgzb-ui/src/api/cost/cost.js
index 83074659..baa2c94f 100644
--- a/sgzb-ui/src/api/cost/cost.js
+++ b/sgzb-ui/src/api/cost/cost.js
@@ -71,6 +71,10 @@ export const editSaveApi = (params) => {
export const submitFeeBearApi = (params) => {
return request.post('/material/sltAgreementInfo/submitFeeBear', params)
}
+/** 获取月结记录接口*/
+export const getMonthRecordApi = (params) => {
+ return request.post('/material//sltAgreementInfo/getSltInfoMonth', params)
+}
diff --git a/sgzb-ui/src/views/cost/csotSettlement/component/monthRecord.vue b/sgzb-ui/src/views/cost/csotSettlement/component/monthRecord.vue
index 74a61916..f42e715d 100644
--- a/sgzb-ui/src/views/cost/csotSettlement/component/monthRecord.vue
+++ b/sgzb-ui/src/views/cost/csotSettlement/component/monthRecord.vue
@@ -137,19 +137,26 @@
diff --git a/sgzb-ui/src/views/cost/csotSettlement/costApplyList.vue b/sgzb-ui/src/views/cost/csotSettlement/costApplyList.vue
index 947e33eb..f3bf7946 100644
--- a/sgzb-ui/src/views/cost/csotSettlement/costApplyList.vue
+++ b/sgzb-ui/src/views/cost/csotSettlement/costApplyList.vue
@@ -180,7 +180,9 @@
/>
@@ -259,6 +261,8 @@ export default {
currRowInfo: null,
// 页面标题
pageContent: '',
+ // 查询月结记录的参数
+ getRecordParams: [],
}
},
created() {
@@ -352,6 +356,8 @@ export default {
},
/** 月结记录 */
handleMonthRecord(row) {
+ this.getRecordParams.push({ agreementId: row.agreementId })
+ console.log(this.getRecordParams, '月结记录')
this.monthRecordDialogVisible = true
},
/** 完工结算 结算明细*/
diff --git a/sgzb-ui/src/views/warehouseManage/newPurchase/toolsAcceptance/component/codingTools.vue b/sgzb-ui/src/views/warehouseManage/newPurchase/toolsAcceptance/component/codingTools.vue
index f6c60e4b..369f8c8e 100644
--- a/sgzb-ui/src/views/warehouseManage/newPurchase/toolsAcceptance/component/codingTools.vue
+++ b/sgzb-ui/src/views/warehouseManage/newPurchase/toolsAcceptance/component/codingTools.vue
@@ -453,7 +453,6 @@ export default {
})
},
selectType(id) {
- console.log(id)
getListByMaType({ typeId: id }).then((response) => {
this.modelList = response.data
})