From 09691bdbe60c98e3dc18e4e931a2fd22084b2d77 Mon Sep 17 00:00:00 2001
From: ljx <15723110242@139.com>
Date: Fri, 29 Aug 2025 10:36:16 +0800
Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B91111?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/project/project/index.ts | 2 --
src/views/biddingManagemen/appointment/index.vue | 2 +-
src/views/project/project/index.vue | 10 +++++++---
3 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/src/api/project/project/index.ts b/src/api/project/project/index.ts
index 04d5b65..cd3d1d7 100644
--- a/src/api/project/project/index.ts
+++ b/src/api/project/project/index.ts
@@ -96,8 +96,6 @@ export const addProjectFacilities = (data: any) => {
* @param data
*/
export const addProjectPilePoint = (data: any) => {
- console.log('🚀 ~ addProjectPilePoint ~ data:', data);
-
return request({
url: '/facility/photovoltaicPanelPoint/parts/geoJson',
method: 'post',
diff --git a/src/views/biddingManagemen/appointment/index.vue b/src/views/biddingManagemen/appointment/index.vue
index c71349c..835b495 100644
--- a/src/views/biddingManagemen/appointment/index.vue
+++ b/src/views/biddingManagemen/appointment/index.vue
@@ -25,7 +25,7 @@
placeholder="请选择招投标专员"
class="w-full transition-all duration-300 border-gray-300 focus:border-blue-400 focus:ring-1 focus:ring-blue-400"
>
-
+
diff --git a/src/views/project/project/index.vue b/src/views/project/project/index.vue
index 31a0bbd..04ec6b7 100644
--- a/src/views/project/project/index.vue
+++ b/src/views/project/project/index.vue
@@ -46,7 +46,9 @@
-
添加子项目
+
添加子项目
@@ -73,7 +75,7 @@
uploadUrl="/project/projectFile/upload/dxf"
:data="{ projectId: scope.row.id }"
>
- 上传DXF
+ 上传DXF
- 导入安全协议书
+ 导入安全协议书
+
修改
删除
From 7c2e4d7e149170ebe6127f5079bce59ed815ed89 Mon Sep 17 00:00:00 2001
From: ljx <15723110242@139.com>
Date: Fri, 29 Aug 2025 14:58:31 +0800
Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.env.development | 2 +-
src/api/bidding/appointment/index.ts | 2 +-
src/views/contract/division/index.vue | 12 +++++-------
src/views/contract/limitPrice/index.vue | 13 ++++++-------
src/views/tender/bidd/index.vue | 12 +++++-------
5 files changed, 18 insertions(+), 23 deletions(-)
diff --git a/.env.development b/.env.development
index 1db4544..c0501b7 100644
--- a/.env.development
+++ b/.env.development
@@ -6,7 +6,7 @@ VITE_APP_ENV = 'development'
# 开发环境
# 李陈杰 209
-VITE_APP_BASE_API = 'http://192.168.110.180:8899'
+VITE_APP_BASE_API = 'http://192.168.110.158:8899'
# 曾涛
# VITE_APP_BASE_API = 'http://192.168.110.180:8899'
# 罗成
diff --git a/src/api/bidding/appointment/index.ts b/src/api/bidding/appointment/index.ts
index 8f58106..4db7a6e 100644
--- a/src/api/bidding/appointment/index.ts
+++ b/src/api/bidding/appointment/index.ts
@@ -21,7 +21,7 @@ export const AddbiddingUser = (data) => {
data
});
};
-// 新增招投标人员
+// 查询招投标人员
export const biddingUserList = (projectId) => {
return request({
url: '/bidding/biddingUser/list',
diff --git a/src/views/contract/division/index.vue b/src/views/contract/division/index.vue
index 3f80b55..0bca716 100644
--- a/src/views/contract/division/index.vue
+++ b/src/views/contract/division/index.vue
@@ -96,10 +96,7 @@
- 一键展开
-
-
- 一键收起
+ {{ isExpandAll ? '一键收起' : '一键展开' }}
@@ -413,11 +410,12 @@ const changeSheet = () => {
getTreeList();
};
-const toggleExpandAll = (isExpand: boolean) => {
+const toggleExpandAll = () => {
+ isExpandAll.value = !isExpandAll.value;
+ console.log(isExpandAll.value);
treeData.value.forEach((row) => {
- treeTableRef.value.toggleRowExpansion(row, isExpand);
+ treeTableRef.value.toggleRowExpansion(row, isExpandAll.value);
});
- isExpandAll.value = isExpand;
};
//打开获取表数据
const getTreeList = async () => {
diff --git a/src/views/contract/limitPrice/index.vue b/src/views/contract/limitPrice/index.vue
index c38b70b..e10bd99 100644
--- a/src/views/contract/limitPrice/index.vue
+++ b/src/views/contract/limitPrice/index.vue
@@ -14,11 +14,9 @@
- 一键展开
-
-
- 一键收起
+ {{ isExpandAll ? '一键收起' : '一键展开' }}
+
{
};
const tableRef = ref();
-const toggleExpandAll = (isExpand: boolean) => {
+const toggleExpandAll = () => {
+ isExpandAll.value = !isExpandAll.value;
+ console.log(isExpandAll.value);
tableData.value.forEach((row) => {
- tableRef.value.toggleRowExpansion(row, isExpand);
+ tableRef.value.toggleRowExpansion(row, isExpandAll.value);
});
- isExpandAll.value = isExpand;
};
//导入
const importExcel = (options: any): any => {
diff --git a/src/views/tender/bidd/index.vue b/src/views/tender/bidd/index.vue
index 27afe21..3c3972b 100644
--- a/src/views/tender/bidd/index.vue
+++ b/src/views/tender/bidd/index.vue
@@ -17,10 +17,7 @@
- 一键展开
-
-
- 一键收起
+ {{ isExpandAll ? '一键收起' : '一键展开' }}
@@ -163,11 +160,12 @@ const changeSheet = (val: any) => {
getTableData();
};
//展开树
-const toggleExpandAll = (isExpand: boolean) => {
+const toggleExpandAll = () => {
+ isExpandAll.value = !isExpandAll.value;
+ console.log(isExpandAll.value);
tableData.value.forEach((row) => {
- tableRef.value.toggleRowExpansion(row, isExpand);
+ tableRef.value.toggleRowExpansion(row, isExpandAll.value);
});
- isExpandAll.value = isExpand;
};
//获取版本号
From 47a8b170616da264bd153126eeb1cf56a2a56b73 Mon Sep 17 00:00:00 2001
From: ljx <15723110242@139.com>
Date: Fri, 29 Aug 2025 16:33:37 +0800
Subject: [PATCH 3/3] =?UTF-8?q?=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/ctr/index.vue | 745 +++++++++++-----------
src/views/materials/appointment/index.vue | 5 +-
src/views/tender/plan/index.vue | 12 +-
3 files changed, 380 insertions(+), 382 deletions(-)
diff --git a/src/views/ctr/index.vue b/src/views/ctr/index.vue
index c46404a..1cb9d4b 100644
--- a/src/views/ctr/index.vue
+++ b/src/views/ctr/index.vue
@@ -1,440 +1,439 @@
-
-
-
-
-
-
-
-
-
- 收入合同
- 支出合同
-
-
-
-
- {{ contract_type == "income" ? "收入合同" : "支出合同" }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 选择招标
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ 选择招标
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
- 上一步
- 下一步
-
-
-
- {{ contract_type == "income" ? "收入合同" : "支出合同" }}
-
-
-
- 月结算
- 形象节点
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 上一步
- 提交
-
-
-
-
+
+
+
+
+
+
+
+
+
+ 上一步
+ 下一步
-
-
-
-
-
-
-
-
-
- 选择
-
-
-
-
-
-
-
+
+
+ {{ contract_type == 'income' ? '收入合同' : '支出合同' }}
+
+
+
+ 月结算
+ 形象节点
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 上一步
+ 提交
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 选择
+
+
+
+
+
+
+
+
diff --git a/src/views/materials/appointment/index.vue b/src/views/materials/appointment/index.vue
index cda181e..710abb2 100644
--- a/src/views/materials/appointment/index.vue
+++ b/src/views/materials/appointment/index.vue
@@ -10,7 +10,7 @@
@click="isDisabled = false"
class="px-8 py-2.5 transition-all duration-300 font-medium"
v-if="isDisabled"
- v-hasPermi="['ailiaoshebei:purchaseUser:byProject']"
+ v-hasPermi="['cailiaoshebei:purchaseUser:addOrUpdate']"
>
点击编辑
@@ -38,7 +38,7 @@
@click="submitForm"
icon="Check"
class="px-8 py-2.5 transition-all duration-300 transform hover:scale-105 bg-blue-500 hover:bg-blue-600 text-white font-medium"
- v-hasPermi="['cailiaoshebei:purchaseUser:add']"
+ v-hasPermi="['cailiaoshebei:purchaseUser:addOrUpdate']"
>
确认提交
@@ -121,6 +121,7 @@ const designUser = async () => {
return;
}
Object.assign(form, res.data);
+ // form.userId = res.data.userId;
isDisabled.value = true;
}
} catch (error) {
diff --git a/src/views/tender/plan/index.vue b/src/views/tender/plan/index.vue
index dfc29b3..63a4eff 100644
--- a/src/views/tender/plan/index.vue
+++ b/src/views/tender/plan/index.vue
@@ -167,10 +167,7 @@
- 一键展开
-
-
- 一键收起
+ {{ isExpandAll ? '一键收起' : '一键展开' }}
@@ -514,11 +511,12 @@ const changeSheet = () => {
getTreeList();
};
-const toggleExpandAll = (isExpand: boolean) => {
+const toggleExpandAll = () => {
+ isExpandAll.value = !isExpandAll.value;
+ console.log(isExpandAll.value);
treeData.value.forEach((row) => {
- treeTableRef.value.toggleRowExpansion(row, isExpand);
+ treeTableRef.value.toggleRowExpansion(row, isExpandAll.value);
});
- isExpandAll.value = isExpand;
};
//打开获取表数据
const getTreeList = async () => {