From 92d8c52b181b9672e93a9eec36dacd6d8ec22569 Mon Sep 17 00:00:00 2001
From: tcy <1193318383@qq.com>
Date: Fri, 22 Aug 2025 19:43:55 +0800
Subject: [PATCH] =?UTF-8?q?feat(ctr):=20=E8=B0=83=E6=95=B4=E5=90=88?=
=?UTF-8?q?=E5=90=8C=E7=9B=B8=E5=85=B3=E5=8A=9F=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- 在费用合同列表中添加预付款比例、尾款比例、质保金比例、付款比例等列
- 修改收入合同列表中承包内容查看按钮,改为详情按钮
- 更新招标信息选择时的数据绑定逻辑
---
src/views/ctr/expensesContract/index.vue | 5 +++++
src/views/ctr/incomeContract/index.vue | 7 ++++---
src/views/ctr/index.vue | 5 +++--
3 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/src/views/ctr/expensesContract/index.vue b/src/views/ctr/expensesContract/index.vue
index db921b6..6ad4a81 100644
--- a/src/views/ctr/expensesContract/index.vue
+++ b/src/views/ctr/expensesContract/index.vue
@@ -18,6 +18,7 @@
+
@@ -68,6 +69,10 @@
+
+
+
+
diff --git a/src/views/ctr/incomeContract/index.vue b/src/views/ctr/incomeContract/index.vue
index d79aaa8..ee2d04e 100644
--- a/src/views/ctr/incomeContract/index.vue
+++ b/src/views/ctr/incomeContract/index.vue
@@ -79,9 +79,9 @@
-->
-
- 查看承包内容
-
+
查看附件列表
@@ -292,6 +292,7 @@ const handleShowFileList = async (row: IncomeContractVO) => {
});
}
+
onMounted(() => {
getList();
});
diff --git a/src/views/ctr/index.vue b/src/views/ctr/index.vue
index a016a40..0412f38 100644
--- a/src/views/ctr/index.vue
+++ b/src/views/ctr/index.vue
@@ -371,9 +371,10 @@ const handleChoose = async () => {
const handleChooseData = (row) => {
form.value.tenderId = row.id;
form.value.name = row.name;
- form.value.contractPrice = row.contractPrice;
+ // form.value.contractPrice = row.contractPrice;
form.value.content = row.content;
- form.value.winningBidder = row.winningBidder;
+ form.value.contractSupplier = row.winningBidder;
+ form.value.amount = row.contractPrice;
dialogVisible.value = false;
};
watch(form, (val) => {