From c18bff110bf30317afc635ece4f259d21a6bbb48 Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Wed, 3 Aug 2022 14:18:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=83=E5=B1=80=E7=9F=A5=E8=AF=86=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/common/lang/en-us.js | 1 + jero-web/src/common/lang/zh-cn.js | 1 + jero-web/src/components/layouts/TabLayout.vue | 2 + jero-web/src/config/router.config.js | 10 + .../components/countryCardList.vue | 234 +++++++++++++++++- .../components/countryCardRelease.vue | 87 +++++++ .../components/countryCardView.vue | 87 +++++++ 7 files changed, 420 insertions(+), 2 deletions(-) create mode 100644 jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardRelease.vue create mode 100644 jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index deb708f55..708ff3cea 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -1225,4 +1225,5 @@ module.exports = { personCharge:'Person in charge', addLabel:'Add Label', editLabel:'Edit Label', + applicableMarket:'Applicable market', } \ 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 e3ce4ee27..e537f5564 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -1328,4 +1328,5 @@ module.exports = { personCharge:'负责人', addLabel:'新增标签', editLabel:'编辑标签', + applicableMarket:'适用市场', } \ 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 eab0ee130..33deedcc6 100644 --- a/jero-web/src/components/layouts/TabLayout.vue +++ b/jero-web/src/components/layouts/TabLayout.vue @@ -92,6 +92,8 @@ this.$route.path == '/virtualListDetails' || this.$route.path == '/taskListProcess' || this.$route.path == '/ProjectDetails' || + this.$route.path == '/countryCardRelease' || + this.$route.path == '/countryCardView' || this.$route.path == '/problemKnowledgeBaseAdd' || this.$route.path == '/problemKnowledgeBaseRelease' || this.$route.path == '/problemKnowledgeBaseView' || diff --git a/jero-web/src/config/router.config.js b/jero-web/src/config/router.config.js index 0ddd91599..e425791de 100644 --- a/jero-web/src/config/router.config.js +++ b/jero-web/src/config/router.config.js @@ -367,6 +367,16 @@ export const constantRouterMap = [ name: 'problemKnowledgeBaseRelease', component: () => import(/* webpackChunkName: "user" */ '@/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseRelease') }, + { + path: '/countryCardView', + name: 'countryCardView', + component: () => import(/* webpackChunkName: "user" */ '@/views/businessSupport/problemKnowledgeBase/components/countryCardView') + }, + { + path: '/countryCardRelease', + name: 'countryCardRelease', + component: () => import(/* webpackChunkName: "user" */ '@/views/businessSupport/problemKnowledgeBase/components/countryCardRelease') + }, { path: '/problemKnowledgeBaseView', name: 'problemKnowledgeBaseView', diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardList.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardList.vue index af3faab72..cd7fc3755 100644 --- a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardList.vue +++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardList.vue @@ -1,13 +1,243 @@ \ No newline at end of file diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardRelease.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardRelease.vue new file mode 100644 index 000000000..a4c3a577c --- /dev/null +++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardRelease.vue @@ -0,0 +1,87 @@ + + + + + \ No newline at end of file diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue new file mode 100644 index 000000000..746eecdc3 --- /dev/null +++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue @@ -0,0 +1,87 @@ + + + + + \ No newline at end of file