From 5cf2ecf10cc2ced612eff060fe6cf050ac0e6cd5 Mon Sep 17 00:00:00 2001 From: hxh <762326930@qq.com> Date: Mon, 22 Apr 2024 19:18:01 +0800 Subject: [PATCH 01/23] =?UTF-8?q?fix:=20=E8=BF=98=E5=8E=9F=E7=9B=91?= =?UTF-8?q?=E7=9D=A3=E6=A3=80=E6=9F=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../runManage/supervisionInspetion/index.vue | 3 + .../methodsManage/details.vue | 181 +++++ .../methodsManage/index.vue | 293 ++++++++ .../methodsManage/itemsDetails.vue | 345 +++++++++ .../methodsManage/itemsList.vue | 218 ++++++ .../projectManage/index.vue | 253 +++++++ .../projectManage/projectReport.vue | 548 ++++++++++++++ .../projectManage/projectReportPage.vue | 382 ++++++++++ .../questionManage/index.vue | 701 ++++++++++++++++++ .../statisticAnalysis/components/Pie.vue | 154 ++++ .../statisticAnalysis/index.vue | 344 +++++++++ .../tasksManage/index.vue | 221 ++++++ .../tasksManage/tasksDetails.vue | 434 +++++++++++ 13 files changed, 4077 insertions(+) create mode 100644 src/views/dike/runManage/supervisionInspetion/index.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/methodsManage/details.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/methodsManage/index.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/methodsManage/itemsDetails.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/methodsManage/itemsList.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/projectManage/index.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/projectManage/projectReport.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/projectManage/projectReportPage.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/questionManage/index.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/statisticAnalysis/components/Pie.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/statisticAnalysis/index.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/tasksManage/index.vue create mode 100644 src/views/dike/runManage/supervisionInspetion/tasksManage/tasksDetails.vue diff --git a/src/views/dike/runManage/supervisionInspetion/index.vue b/src/views/dike/runManage/supervisionInspetion/index.vue new file mode 100644 index 0000000..98240ae --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/index.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/dike/runManage/supervisionInspetion/methodsManage/details.vue b/src/views/dike/runManage/supervisionInspetion/methodsManage/details.vue new file mode 100644 index 0000000..6b207de --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/methodsManage/details.vue @@ -0,0 +1,181 @@ + + + diff --git a/src/views/dike/runManage/supervisionInspetion/methodsManage/index.vue b/src/views/dike/runManage/supervisionInspetion/methodsManage/index.vue new file mode 100644 index 0000000..4f86384 --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/methodsManage/index.vue @@ -0,0 +1,293 @@ + + + + + + diff --git a/src/views/dike/runManage/supervisionInspetion/methodsManage/itemsDetails.vue b/src/views/dike/runManage/supervisionInspetion/methodsManage/itemsDetails.vue new file mode 100644 index 0000000..073eadc --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/methodsManage/itemsDetails.vue @@ -0,0 +1,345 @@ + + + diff --git a/src/views/dike/runManage/supervisionInspetion/methodsManage/itemsList.vue b/src/views/dike/runManage/supervisionInspetion/methodsManage/itemsList.vue new file mode 100644 index 0000000..f124bda --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/methodsManage/itemsList.vue @@ -0,0 +1,218 @@ + + + diff --git a/src/views/dike/runManage/supervisionInspetion/projectManage/index.vue b/src/views/dike/runManage/supervisionInspetion/projectManage/index.vue new file mode 100644 index 0000000..04997a4 --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/projectManage/index.vue @@ -0,0 +1,253 @@ + + + + + + diff --git a/src/views/dike/runManage/supervisionInspetion/projectManage/projectReport.vue b/src/views/dike/runManage/supervisionInspetion/projectManage/projectReport.vue new file mode 100644 index 0000000..8690f0e --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/projectManage/projectReport.vue @@ -0,0 +1,548 @@ + + + + + + diff --git a/src/views/dike/runManage/supervisionInspetion/projectManage/projectReportPage.vue b/src/views/dike/runManage/supervisionInspetion/projectManage/projectReportPage.vue new file mode 100644 index 0000000..18dac2a --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/projectManage/projectReportPage.vue @@ -0,0 +1,382 @@ + + + diff --git a/src/views/dike/runManage/supervisionInspetion/questionManage/index.vue b/src/views/dike/runManage/supervisionInspetion/questionManage/index.vue new file mode 100644 index 0000000..395b4b4 --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/questionManage/index.vue @@ -0,0 +1,701 @@ + + + + + + diff --git a/src/views/dike/runManage/supervisionInspetion/statisticAnalysis/components/Pie.vue b/src/views/dike/runManage/supervisionInspetion/statisticAnalysis/components/Pie.vue new file mode 100644 index 0000000..2e676f3 --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/statisticAnalysis/components/Pie.vue @@ -0,0 +1,154 @@ + + + diff --git a/src/views/dike/runManage/supervisionInspetion/statisticAnalysis/index.vue b/src/views/dike/runManage/supervisionInspetion/statisticAnalysis/index.vue new file mode 100644 index 0000000..7ad070f --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/statisticAnalysis/index.vue @@ -0,0 +1,344 @@ + + + + + + diff --git a/src/views/dike/runManage/supervisionInspetion/tasksManage/index.vue b/src/views/dike/runManage/supervisionInspetion/tasksManage/index.vue new file mode 100644 index 0000000..ccb82db --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/tasksManage/index.vue @@ -0,0 +1,221 @@ + + + + + + diff --git a/src/views/dike/runManage/supervisionInspetion/tasksManage/tasksDetails.vue b/src/views/dike/runManage/supervisionInspetion/tasksManage/tasksDetails.vue new file mode 100644 index 0000000..acd3160 --- /dev/null +++ b/src/views/dike/runManage/supervisionInspetion/tasksManage/tasksDetails.vue @@ -0,0 +1,434 @@ + + + + + + From 976639d3d996fb56540e2d01c22a67872677477c Mon Sep 17 00:00:00 2001 From: ruancuihong <2806986110@qq.com> Date: Thu, 25 Apr 2024 16:08:33 +0800 Subject: [PATCH 02/23] =?UTF-8?q?fix:=20=E6=9C=AA=E5=90=88=E5=B9=B6?= =?UTF-8?q?=E7=9A=84=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../warnInfo/components/forecastDetail.vue | 408 ++++- .../fourPredictions/warnInfo/index.vue | 279 ++- .../fourPredictions/warnInfo/js/detailData.js | 1516 ++++++++++++----- 3 files changed, 1507 insertions(+), 696 deletions(-) diff --git a/src/views/aiSupervision/fourPredictions/warnInfo/components/forecastDetail.vue b/src/views/aiSupervision/fourPredictions/warnInfo/components/forecastDetail.vue index 2ec07fb..0580833 100644 --- a/src/views/aiSupervision/fourPredictions/warnInfo/components/forecastDetail.vue +++ b/src/views/aiSupervision/fourPredictions/warnInfo/components/forecastDetail.vue @@ -1,72 +1,60 @@ - @@ -249,6 +459,7 @@ export default { margin-bottom: 16px; border-top: 1px solid #E5E5E5; border-bottom: 1px solid #E5E5E5; + .echarts-content { width: 951px; height: 320px; @@ -261,9 +472,11 @@ export default { } .warn-analysis { - flex: 1; + flex: 1; height: 300px; + padding-right: 16px; border-right: 1px solid #E5E5E5; + overflow: hidden; } } @@ -303,6 +516,12 @@ export default { .green-span { color: #31A08E; } + + ::v-deep.table-fixed { + .el-table__body-wrapper { + height: calc(100% - 44px) !important; + } + } } ::v-deep.drawer-wrapper { @@ -325,6 +544,7 @@ export default { .step-description { margin-bottom: 10px; + .description-item { height: 22px; font-family: 思源黑体; @@ -333,20 +553,24 @@ export default { line-height: 22px; letter-spacing: 0px; margin-bottom: 4px; + .item-name { color: rgba(0, 0, 0, 0.55); } + .item-value { color: rgba(0, 0, 0, 0.85); } } } + .el-step__icon-inner { font-size: 14px; font-weight: normal; line-height: 22px; letter-spacing: 0px; } + .el-step__title.is-success, .el-step__title.is-process, .el-step__title.is-wait, @@ -358,25 +582,31 @@ export default { letter-spacing: 0px; color: rgba(0, 0, 0, 0.85); } + .el-step__head.is-finish { .el-step__icon-inner { color: #36B29E; } } + .el-step__head.is-process { color: #fff; + .el-step__icon.is-text { background: #36B29E; border-color: #36B29E; } } + .el-step__head.is-wait { color: #fff; + .el-step__icon.is-text { background: #CDCDCD; border-color: #CDCDCD; } } + .el-form-item--medium .el-form-item__label { font-size: 14px; font-weight: 500; @@ -384,10 +614,12 @@ export default { letter-spacing: 0px; color: rgba(0, 0, 0, 0.85); } + .el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before { content: ''; margin-right: 0px; } + .detail-footer { position: absolute; bottom: 0px; diff --git a/src/views/aiSupervision/fourPredictions/warnInfo/index.vue b/src/views/aiSupervision/fourPredictions/warnInfo/index.vue index 66eced9..a2eae7f 100644 --- a/src/views/aiSupervision/fourPredictions/warnInfo/index.vue +++ b/src/views/aiSupervision/fourPredictions/warnInfo/index.vue @@ -129,166 +129,135 @@ export default {