
From e912954367ed62931a12c76eb23f7bea69c90aa0 Mon Sep 17 00:00:00 2001
From: yanfeiyong <2060201549@qq.com>
Date: Tue, 1 Apr 2025 18:54:00 +0800
Subject: [PATCH] =?UTF-8?q?=E9=9C=80=E6=B1=82=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.env.development | 4 +-
.env.production | 4 +-
.env.staging | 4 +-
package.json | 2 +-
src/api/ManageApi/index.js | 21 +-
src/components/bearicon/index.vue | 86 +++++++
src/layout/components/Navbar.vue | 198 +++++++++-------
src/views/compilation/knowledge/index.vue | 14 +-
src/views/components/ProjectDetails/Basic.vue | 156 ++++++++++---
.../components/ProjectDetails/Buildings.vue | 114 ++++++----
.../ProjectDetails/Companyenter.vue | 4 +-
src/views/components/ProjectDetails/Liver.vue | 20 +-
src/views/components/ProjectDetails/Memo.vue | 4 +
.../components/ProjectDetails/Months.vue | 53 +----
.../components/ProjectDetails/Others.vue | 51 +++--
.../components/ProjectDetails/Projectgift.vue | 19 +-
.../ProjectDetails/Projectpicture.vue | 2 +-
.../ProjectDetails/Projectpicturetwo22.vue | 2 +-
src/views/components/analysis/daiban.vue | 6 +-
src/views/components/analysis/function.vue | 2 +-
src/views/components/analysis/projectList.vue | 214 +++++++++++-------
src/views/components/qiyexinxi/qiyexinxi.vue | 18 +-
.../components/zhengwuxinxi/zhengwuxinxi.vue | 99 ++++++--
src/views/evalute/configtable/index.vue | 12 +-
src/views/evalute/evalist/index.vue | 71 ++++--
src/views/login.vue | 2 +-
src/views/manage-info/index.vue | 68 ++----
src/views/manage/index.vue | 13 +-
src/views/models/badlist/index.vue | 14 +-
src/views/models/manages/index.vue | 124 +++++-----
src/views/tongjifenxi/index.vue | 11 +-
vue.config.js | 4 +-
32 files changed, 907 insertions(+), 509 deletions(-)
create mode 100644 src/components/bearicon/index.vue
diff --git a/.env.development b/.env.development
index 313d61d..949ef29 100644
--- a/.env.development
+++ b/.env.development
@@ -1,10 +1,10 @@
# 页面标题
-VUE_APP_TITLE = 苏州工业园区工业上楼项目系统
+VUE_APP_TITLE = 苏州工业园区工业上楼管理系统
# 开发环境配置
ENV = 'development'
-# 苏州工业园区工业上楼项目系统/开发环境
+# 苏州工业园区工业上楼管理系统/开发环境
VUE_APP_BASE_API = ''
# 路由懒加载
diff --git a/.env.production b/.env.production
index bef27bb..d0986ca 100644
--- a/.env.production
+++ b/.env.production
@@ -1,8 +1,8 @@
# 页面标题
-VUE_APP_TITLE = 苏州工业园区工业上楼项目系统
+VUE_APP_TITLE = 苏州工业园区工业上楼管理系统
# 生产环境配置
ENV = 'production'
-# 苏州工业园区工业上楼项目系统/生产环境
+# 苏州工业园区工业上楼管理系统/生产环境
# VUE_APP_BASE_API = 'http://39.101.188.84:7071'
diff --git a/.env.staging b/.env.staging
index acb8aaf..5be7b79 100644
--- a/.env.staging
+++ b/.env.staging
@@ -1,5 +1,5 @@
# 页面标题
-VUE_APP_TITLE = 苏州工业园区工业上楼项目系统
+VUE_APP_TITLE = 苏州工业园区工业上楼管理系统
BABEL_ENV = production
@@ -8,5 +8,5 @@ NODE_ENV = production
# 测试环境配置
ENV = 'staging'
-# 苏州工业园区工业上楼项目系统/测试环境
+# 苏州工业园区工业上楼管理系统/测试环境
VUE_APP_BASE_API = '/stage-api'
diff --git a/package.json b/package.json
index a63115e..0dfa3e6 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "ruoyi",
"version": "3.8.9",
- "description": "苏州工业园区工业上楼项目系统",
+ "description": "苏州工业园区工业上楼管理系统",
"author": "若依",
"license": "MIT",
"scripts": {
diff --git a/src/api/ManageApi/index.js b/src/api/ManageApi/index.js
index f675264..6d04b30 100644
--- a/src/api/ManageApi/index.js
+++ b/src/api/ManageApi/index.js
@@ -177,12 +177,12 @@ export function editElemention(data) {
});
}
-// 删除指标
+// 删除指标或要素
export function deleteElemention(idList) {
return request({
url: `/gysl/mx/delete`,
method: 'delete',
- params: { idList }
+ params: { idList: idList.join(',') }
});
}
@@ -242,7 +242,9 @@ export function deleteXmzsk(idList) {
return request({
url: '/gysl/xmzsk/delete',
method: 'delete',
- params: { idList }
+ params: {
+ idList: idList.join(',') // 将数组转换为逗号分隔的字符串
+ }
});
}
@@ -714,4 +716,15 @@ export function getXfcyglPage(params) {
method: 'get',
params
});
-}
\ No newline at end of file
+}
+
+
+//消息通知数量
+export function getMessageCount() {
+ return request({
+ url: '/gysl/qyStats/qyNoticeCount',
+ method: 'get'
+ })
+}
+
+//月度进展信息
\ No newline at end of file
diff --git a/src/components/bearicon/index.vue b/src/components/bearicon/index.vue
new file mode 100644
index 0000000..6bf4bc2
--- /dev/null
+++ b/src/components/bearicon/index.vue
@@ -0,0 +1,86 @@
+
+