From e8d1f3e505221b36a4381fd4b208e4237a556d38 Mon Sep 17 00:00:00 2001
From: kun <1422840143@qq.com>
Date: Wed, 28 Jun 2023 18:22:48 +0800
Subject: [PATCH 1/2] =?UTF-8?q?fix:=20BUG=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.env.development | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.env.development b/.env.development
index 8b7619c..6db3b59 100644
--- a/.env.development
+++ b/.env.development
@@ -2,9 +2,9 @@
NODE_ENV = 'development'
# 本地环境接口地址(/api/index.ts文件中使用)
-# VITE_API_URL = 'http://192.168.34.155:6688'
+VITE_API_URL = 'http://192.168.34.155:6688'
VITE_WPAPI_URL = "http://182.90.224.147:8081"
-VITE_API_URL = "http://182.90.224.147:9013"
+# VITE_API_URL = "http://182.90.224.147:9013"
# 上传
# VITE_ULD_API_URL = 'http://192.168.34.155:8012/onlinePreview?url='
From 3c90ac467568b1c8a2d47e83b7d4955177fd0a10 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E4=B8=A5=E5=A6=8D?= <3096114695@qq.com>
Date: Thu, 29 Jun 2023 18:27:57 +0800
Subject: [PATCH 2/2] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../divisionsAndISubItems/index.scss | 95 ++++
.../divisionsAndISubItems/index.vue | 357 ++++++++++++++-
.../investmentPayment/index.scss | 95 ++++
.../investmentPayment/index.vue | 408 +++++++++++++++++-
.../panoramicPlan/index.scss | 95 ++++
.../panoramicPlan/index.vue | 343 ++++++++++++++-
.../projectSchedule/index.scss | 94 ++++
.../projectSchedule/index.vue | 248 ++++++++++-
8 files changed, 1719 insertions(+), 16 deletions(-)
create mode 100644 src/views/goverment/huizhou/progressManagement/divisionsAndISubItems/index.scss
create mode 100644 src/views/goverment/huizhou/progressManagement/investmentPayment/index.scss
create mode 100644 src/views/goverment/huizhou/progressManagement/panoramicPlan/index.scss
create mode 100644 src/views/goverment/huizhou/progressManagement/projectSchedule/index.scss
diff --git a/src/views/goverment/huizhou/progressManagement/divisionsAndISubItems/index.scss b/src/views/goverment/huizhou/progressManagement/divisionsAndISubItems/index.scss
new file mode 100644
index 0000000..321adb5
--- /dev/null
+++ b/src/views/goverment/huizhou/progressManagement/divisionsAndISubItems/index.scss
@@ -0,0 +1,95 @@
+.warning-page {
+ // background-color: blue;
+ display: flex;
+ width: 100%;
+ height: 100%;
+ .leftMenu {
+ // width: 290px;
+ // 页面的项目工程
+ :deep(.item) {
+ height: 78px !important;
+ }
+ :deep(.content) {
+ height: calc(100% - 160px) !important;
+ }
+ .leftProject {
+ // padding: 5px 8px;
+ color: #333333;
+ .projectName {
+ display: block;
+ width: 100%;
+ overflow: hidden;
+
+ // font-weight: 700;
+ font-family: "siyuan_Medium";
+ font-size: 16px;
+ color: #ffffff;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+ .leftMenu_item {
+ display: flex;
+ justify-content: space-between;
+ margin-top: 10px;
+ .video {
+ display: flex;
+ align-items: center;
+ .middleSize {
+ font-size: 12px;
+ color: #c4c4c4;
+ }
+ img {
+ width: 14px;
+ height: 14px;
+ margin: 0 4px;
+ }
+ }
+ }
+ .bottom_item {
+ .bottomSize {
+ font-size: 10px;
+ color: #666666;
+ }
+ }
+ }
+ }
+ .table {
+ height: 100%;
+ margin-left: 20px;
+ :deep(.table-main) {
+ height: calc(100% - 82px);
+ }
+ }
+}
+:deep(.el-scrollbar__view) {
+ width: 100%;
+ height: 100%;
+
+ // display: flex;
+ // flex-wrap: wrap;
+}
+:deep() {
+ .el-form-item__content > :not(button) {
+ // width: 160px;
+ }
+ .el-input__wrapper {
+ color: white;
+ background-color: transparent;
+ border: none;
+ box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
+ }
+ .el-input__inner {
+ color: white;
+ }
+ .el-textarea__inner {
+ color: white;
+ background-color: transparent;
+ border: none;
+ box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
+ }
+}
+
+// :deep(.el-dialog__body) {
+// padding: 0 0 0 0 !important;
+// background-color: pink;
+// }
diff --git a/src/views/goverment/huizhou/progressManagement/divisionsAndISubItems/index.vue b/src/views/goverment/huizhou/progressManagement/divisionsAndISubItems/index.vue
index 219e815..628ffa1 100644
--- a/src/views/goverment/huizhou/progressManagement/divisionsAndISubItems/index.vue
+++ b/src/views/goverment/huizhou/progressManagement/divisionsAndISubItems/index.vue
@@ -1,8 +1,357 @@
- 分部分项工程管理
+
+
+
+
+
+
+ 刷新
+
+
+
+
+
+ 查看
+
+
+
+
+
+
+
+
+
-
-
+
+
diff --git a/src/views/goverment/huizhou/progressManagement/investmentPayment/index.scss b/src/views/goverment/huizhou/progressManagement/investmentPayment/index.scss
new file mode 100644
index 0000000..321adb5
--- /dev/null
+++ b/src/views/goverment/huizhou/progressManagement/investmentPayment/index.scss
@@ -0,0 +1,95 @@
+.warning-page {
+ // background-color: blue;
+ display: flex;
+ width: 100%;
+ height: 100%;
+ .leftMenu {
+ // width: 290px;
+ // 页面的项目工程
+ :deep(.item) {
+ height: 78px !important;
+ }
+ :deep(.content) {
+ height: calc(100% - 160px) !important;
+ }
+ .leftProject {
+ // padding: 5px 8px;
+ color: #333333;
+ .projectName {
+ display: block;
+ width: 100%;
+ overflow: hidden;
+
+ // font-weight: 700;
+ font-family: "siyuan_Medium";
+ font-size: 16px;
+ color: #ffffff;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+ .leftMenu_item {
+ display: flex;
+ justify-content: space-between;
+ margin-top: 10px;
+ .video {
+ display: flex;
+ align-items: center;
+ .middleSize {
+ font-size: 12px;
+ color: #c4c4c4;
+ }
+ img {
+ width: 14px;
+ height: 14px;
+ margin: 0 4px;
+ }
+ }
+ }
+ .bottom_item {
+ .bottomSize {
+ font-size: 10px;
+ color: #666666;
+ }
+ }
+ }
+ }
+ .table {
+ height: 100%;
+ margin-left: 20px;
+ :deep(.table-main) {
+ height: calc(100% - 82px);
+ }
+ }
+}
+:deep(.el-scrollbar__view) {
+ width: 100%;
+ height: 100%;
+
+ // display: flex;
+ // flex-wrap: wrap;
+}
+:deep() {
+ .el-form-item__content > :not(button) {
+ // width: 160px;
+ }
+ .el-input__wrapper {
+ color: white;
+ background-color: transparent;
+ border: none;
+ box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
+ }
+ .el-input__inner {
+ color: white;
+ }
+ .el-textarea__inner {
+ color: white;
+ background-color: transparent;
+ border: none;
+ box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
+ }
+}
+
+// :deep(.el-dialog__body) {
+// padding: 0 0 0 0 !important;
+// background-color: pink;
+// }
diff --git a/src/views/goverment/huizhou/progressManagement/investmentPayment/index.vue b/src/views/goverment/huizhou/progressManagement/investmentPayment/index.vue
index 0211f3e..be94ed3 100644
--- a/src/views/goverment/huizhou/progressManagement/investmentPayment/index.vue
+++ b/src/views/goverment/huizhou/progressManagement/investmentPayment/index.vue
@@ -1,8 +1,408 @@
- 投资支付管理
+
+
+
+
+
+
+ 新增
+ 刷新
+
+
+
+
+
+ 查看
+
+
+
+
+
+
+
+
-
-
+
+
diff --git a/src/views/goverment/huizhou/progressManagement/panoramicPlan/index.scss b/src/views/goverment/huizhou/progressManagement/panoramicPlan/index.scss
new file mode 100644
index 0000000..321adb5
--- /dev/null
+++ b/src/views/goverment/huizhou/progressManagement/panoramicPlan/index.scss
@@ -0,0 +1,95 @@
+.warning-page {
+ // background-color: blue;
+ display: flex;
+ width: 100%;
+ height: 100%;
+ .leftMenu {
+ // width: 290px;
+ // 页面的项目工程
+ :deep(.item) {
+ height: 78px !important;
+ }
+ :deep(.content) {
+ height: calc(100% - 160px) !important;
+ }
+ .leftProject {
+ // padding: 5px 8px;
+ color: #333333;
+ .projectName {
+ display: block;
+ width: 100%;
+ overflow: hidden;
+
+ // font-weight: 700;
+ font-family: "siyuan_Medium";
+ font-size: 16px;
+ color: #ffffff;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+ .leftMenu_item {
+ display: flex;
+ justify-content: space-between;
+ margin-top: 10px;
+ .video {
+ display: flex;
+ align-items: center;
+ .middleSize {
+ font-size: 12px;
+ color: #c4c4c4;
+ }
+ img {
+ width: 14px;
+ height: 14px;
+ margin: 0 4px;
+ }
+ }
+ }
+ .bottom_item {
+ .bottomSize {
+ font-size: 10px;
+ color: #666666;
+ }
+ }
+ }
+ }
+ .table {
+ height: 100%;
+ margin-left: 20px;
+ :deep(.table-main) {
+ height: calc(100% - 82px);
+ }
+ }
+}
+:deep(.el-scrollbar__view) {
+ width: 100%;
+ height: 100%;
+
+ // display: flex;
+ // flex-wrap: wrap;
+}
+:deep() {
+ .el-form-item__content > :not(button) {
+ // width: 160px;
+ }
+ .el-input__wrapper {
+ color: white;
+ background-color: transparent;
+ border: none;
+ box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
+ }
+ .el-input__inner {
+ color: white;
+ }
+ .el-textarea__inner {
+ color: white;
+ background-color: transparent;
+ border: none;
+ box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
+ }
+}
+
+// :deep(.el-dialog__body) {
+// padding: 0 0 0 0 !important;
+// background-color: pink;
+// }
diff --git a/src/views/goverment/huizhou/progressManagement/panoramicPlan/index.vue b/src/views/goverment/huizhou/progressManagement/panoramicPlan/index.vue
index e98a0f1..c473e9e 100644
--- a/src/views/goverment/huizhou/progressManagement/panoramicPlan/index.vue
+++ b/src/views/goverment/huizhou/progressManagement/panoramicPlan/index.vue
@@ -1,8 +1,343 @@
- 全景计划管理
+
+
+
+
+
+
+ 刷新
+
+
+
+
+
+ 查看
+
+
+
+
+
+
+
+
-
-
+
+
diff --git a/src/views/goverment/huizhou/progressManagement/projectSchedule/index.scss b/src/views/goverment/huizhou/progressManagement/projectSchedule/index.scss
new file mode 100644
index 0000000..8e4a65c
--- /dev/null
+++ b/src/views/goverment/huizhou/progressManagement/projectSchedule/index.scss
@@ -0,0 +1,94 @@
+.warning-page {
+ // background-color: blue;
+ display: flex;
+ width: 100%;
+ height: 100%;
+ .leftMenu {
+ // width: 290px;
+ // 页面的项目工程
+ :deep(.item) {
+ height: 78px !important;
+ }
+ :deep(.content) {
+ height: calc(100% - 160px) !important;
+ }
+ .leftProject {
+ // padding: 5px 8px;
+ color: #333333;
+ .projectName {
+ display: block;
+ width: 100%;
+ overflow: hidden;
+ color: #ffffff;
+ // font-weight: 700;
+ font-family: "siyuan_Medium";
+ font-size: 16px;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
+ .leftMenu_item {
+ display: flex;
+ justify-content: space-between;
+ margin-top: 10px;
+ .video {
+ display: flex;
+ align-items: center;
+ .middleSize {
+ color: #c4c4c4;
+ font-size: 12px;
+ }
+
+ img {
+ margin: 0 4px;
+ width: 14px;
+ height: 14px;
+ }
+ }
+ }
+ .bottom_item {
+ .bottomSize {
+ font-size: 10px;
+ color: #666666;
+ }
+ }
+ }
+ }
+ .table {
+ margin-left: 20px;
+ height: 100%;
+ :deep(.table-main) {
+ height: calc(100% - 82px);
+ }
+ }
+}
+:deep(.el-scrollbar__view) {
+ width: 100%;
+ height: 100%;
+
+ // display: flex;
+ // flex-wrap: wrap;
+}
+:deep() {
+ .el-form-item__content > :not(button) {
+ width: 160px;
+ }
+ .el-input__wrapper {
+ color: white;
+ background-color: transparent;
+ border: none;
+ box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
+ }
+ .el-input__inner {
+ color: white;
+ }
+ .el-textarea__inner {
+ color: white;
+ background-color: transparent;
+ border: none;
+ box-shadow: 0 0 0 1px var(--el-color-primary, var(--el-color-primary)) inset;
+ }
+}
+// :deep(.el-dialog__body) {
+// padding: 0 0 0 0 !important;
+// background-color: pink;
+// }
diff --git a/src/views/goverment/huizhou/progressManagement/projectSchedule/index.vue b/src/views/goverment/huizhou/progressManagement/projectSchedule/index.vue
index c91a6b3..e70982e 100644
--- a/src/views/goverment/huizhou/progressManagement/projectSchedule/index.vue
+++ b/src/views/goverment/huizhou/progressManagement/projectSchedule/index.vue
@@ -1,8 +1,248 @@
- 项目进度统计
+
-
-
+
+