From 71b34e4bb30af748dcdaac560ac30faca90a320c Mon Sep 17 00:00:00 2001
From: qq787203167 <787203167@qq.com>
Date: Tue, 24 May 2022 17:50:53 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E9=A6=96=E9=A1=B5=E5=8A=9F?=
=?UTF-8?q?=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
jero-web/src/common/lang/en-us.js | 2 +
jero-web/src/common/lang/zh-cn.js | 2 +
jero-web/src/components/layouts/TabLayout.vue | 1 +
.../dashboard/components/customContent.vue | 149 ++++++++++++-
.../dashboard/components/documentDynamics.vue | 61 +++++-
.../src/views/dashboard/customContentList.vue | 200 ++++++++++++++++++
.../src/views/system/UserAnnouncementList.vue | 1 -
7 files changed, 408 insertions(+), 8 deletions(-)
create mode 100644 jero-web/src/views/dashboard/customContentList.vue
diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js
index 30eb171e4..d7592614b 100644
--- a/jero-web/src/common/lang/en-us.js
+++ b/jero-web/src/common/lang/en-us.js
@@ -887,4 +887,6 @@ module.exports = {
myNews:'My News',
monthlyReportRegulations:'Monthly report regulations',
Pending:'Pending',
+ custom:'Custom',
+ notSelected:'Not selected',
}
\ No newline at end of file
diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js
index 79cfaced8..bdd8b7b3e 100644
--- a/jero-web/src/common/lang/zh-cn.js
+++ b/jero-web/src/common/lang/zh-cn.js
@@ -892,4 +892,6 @@ module.exports = {
myNews:'我的消息',
monthlyReportRegulations:'法规月报',
Pending:'待处理',
+ custom:'自定义',
+ notSelected:'未选择',
}
\ No newline at end of file
diff --git a/jero-web/src/components/layouts/TabLayout.vue b/jero-web/src/components/layouts/TabLayout.vue
index e76180cd4..e4681ca78 100644
--- a/jero-web/src/components/layouts/TabLayout.vue
+++ b/jero-web/src/components/layouts/TabLayout.vue
@@ -95,6 +95,7 @@
this.$route.path == '/handshakeProcess' ||
this.$route.path == '/historicalVersion' ||
this.$route.path == '/dashboard/analysis' ||
+ this.$route.path == '/customContentList' ||
this.$route.path == '/processDetails') {
return false
} else {
diff --git a/jero-web/src/views/dashboard/components/customContent.vue b/jero-web/src/views/dashboard/components/customContent.vue
index 170c1698e..850a76df2 100644
--- a/jero-web/src/views/dashboard/components/customContent.vue
+++ b/jero-web/src/views/dashboard/components/customContent.vue
@@ -12,16 +12,116 @@
-
+
+
@@ -16,12 +18,62 @@