From c23ab45d39e4b073f0bb79496d74047c7535cdb7 Mon Sep 17 00:00:00 2001 From: qingyu <14049064+qingyuya123@user.noreply.gitee.com> Date: Tue, 17 Jun 2025 15:13:08 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E5=AA=92=E4=BD=93=E6=8A=A5=E9=81=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/lang/zh-CN/menu.js | 1 + src/router/routes/dynamic.js | 52 +--- .../mediaReports/components/Department.vue | 169 ++++++++++ .../components/EditDepartmentDialog.vue | 131 ++++++++ .../mediaReports/components/EditDialog.vue | 293 ++++++++++++++++++ src/views/dynamic/mediaReports/index.vue | 234 ++++++++++++++ 6 files changed, 832 insertions(+), 48 deletions(-) create mode 100644 src/views/dynamic/mediaReports/components/Department.vue create mode 100644 src/views/dynamic/mediaReports/components/EditDepartmentDialog.vue create mode 100644 src/views/dynamic/mediaReports/components/EditDialog.vue create mode 100644 src/views/dynamic/mediaReports/index.vue diff --git a/src/locales/lang/zh-CN/menu.js b/src/locales/lang/zh-CN/menu.js index 44c4421..0c71380 100644 --- a/src/locales/lang/zh-CN/menu.js +++ b/src/locales/lang/zh-CN/menu.js @@ -41,4 +41,5 @@ export default { teamStyle:'团队风采', Dynamic:'海邻动态', companyNews:'公司动态', + mediaReports:'媒体报道', } diff --git a/src/router/routes/dynamic.js b/src/router/routes/dynamic.js index cd11f6f..9f7d647 100644 --- a/src/router/routes/dynamic.js +++ b/src/router/routes/dynamic.js @@ -25,55 +25,11 @@ export default [ }, }, { - path: 'about', - name: 'about', - component: 'imgMgt/about/index.vue', + path: 'mediaReports', + name: 'mediaReports', + component: 'dynamic/mediaReports/index.vue', meta: { - title: '关于海邻', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - { - path: 'researchHonor', - name: 'researchHonor', - component: 'imgMgt/researchHonor/index.vue', - meta: { - title: '科研成果', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - { - path: 'corporateHonor', - name: 'corporateHonor', - component: 'imgMgt/corporateHonor/index.vue', - meta: { - title: '日志管理', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - { - path: 'talentCenter', - name: 'talentCenter', - component: 'imgMgt/talentCenter/index.vue', - meta: { - title: '日志管理', - isMenu: true, - keepAlive: true, - permission: '*', - }, - }, - { - path: 'teamStyle', - name: 'teamStyle', - component: 'imgMgt/teamStyle/index.vue', - meta: { - title: '日志管理', + title: '媒体报道', isMenu: true, keepAlive: true, permission: '*', diff --git a/src/views/dynamic/mediaReports/components/Department.vue b/src/views/dynamic/mediaReports/components/Department.vue new file mode 100644 index 0000000..efaefad --- /dev/null +++ b/src/views/dynamic/mediaReports/components/Department.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/dynamic/mediaReports/components/EditDepartmentDialog.vue b/src/views/dynamic/mediaReports/components/EditDepartmentDialog.vue new file mode 100644 index 0000000..e5a271f --- /dev/null +++ b/src/views/dynamic/mediaReports/components/EditDepartmentDialog.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/src/views/dynamic/mediaReports/components/EditDialog.vue b/src/views/dynamic/mediaReports/components/EditDialog.vue new file mode 100644 index 0000000..3f3aa09 --- /dev/null +++ b/src/views/dynamic/mediaReports/components/EditDialog.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/src/views/dynamic/mediaReports/index.vue b/src/views/dynamic/mediaReports/index.vue new file mode 100644 index 0000000..4cd21f5 --- /dev/null +++ b/src/views/dynamic/mediaReports/index.vue @@ -0,0 +1,234 @@ + + + + + From 3182e58b0e02fe5159fb9a419ff0ccf99cd9d81c Mon Sep 17 00:00:00 2001 From: qingyu <14049064+qingyuya123@user.noreply.gitee.com> Date: Tue, 17 Jun 2025 15:20:01 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E8=A7=86=E9=A2=91=E4=B8=AD=E5=BF=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/lang/zh-CN/menu.js | 1 + src/router/routes/dynamic.js | 11 + src/router/routes/imgMgt.js | 6 +- .../videoCenter/components/Department.vue | 169 ++++++++++ .../components/EditDepartmentDialog.vue | 131 ++++++++ .../videoCenter/components/EditDialog.vue | 293 ++++++++++++++++++ src/views/dynamic/videoCenter/index.vue | 234 ++++++++++++++ 7 files changed, 842 insertions(+), 3 deletions(-) create mode 100644 src/views/dynamic/videoCenter/components/Department.vue create mode 100644 src/views/dynamic/videoCenter/components/EditDepartmentDialog.vue create mode 100644 src/views/dynamic/videoCenter/components/EditDialog.vue create mode 100644 src/views/dynamic/videoCenter/index.vue diff --git a/src/locales/lang/zh-CN/menu.js b/src/locales/lang/zh-CN/menu.js index 0c71380..a3bf6ad 100644 --- a/src/locales/lang/zh-CN/menu.js +++ b/src/locales/lang/zh-CN/menu.js @@ -42,4 +42,5 @@ export default { Dynamic:'海邻动态', companyNews:'公司动态', mediaReports:'媒体报道', + videoCenter:'视频中心', } diff --git a/src/router/routes/dynamic.js b/src/router/routes/dynamic.js index 9f7d647..8cbee48 100644 --- a/src/router/routes/dynamic.js +++ b/src/router/routes/dynamic.js @@ -35,6 +35,17 @@ export default [ permission: '*', }, }, + { + path: 'videoCenter', + name: 'videoCenter', + component: 'dynamic/videoCenter/index.vue', + meta: { + title: '视频中心', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, ], }, ] diff --git a/src/router/routes/imgMgt.js b/src/router/routes/imgMgt.js index 1abea0e..78f5668 100644 --- a/src/router/routes/imgMgt.js +++ b/src/router/routes/imgMgt.js @@ -51,7 +51,7 @@ export default [ name: 'corporateHonor', component: 'imgMgt/corporateHonor/index.vue', meta: { - title: '日志管理', + title: '企业荣誉', isMenu: true, keepAlive: true, permission: '*', @@ -62,7 +62,7 @@ export default [ name: 'talentCenter', component: 'imgMgt/talentCenter/index.vue', meta: { - title: '日志管理', + title: '人才中心', isMenu: true, keepAlive: true, permission: '*', @@ -73,7 +73,7 @@ export default [ name: 'teamStyle', component: 'imgMgt/teamStyle/index.vue', meta: { - title: '日志管理', + title: '团队风采', isMenu: true, keepAlive: true, permission: '*', diff --git a/src/views/dynamic/videoCenter/components/Department.vue b/src/views/dynamic/videoCenter/components/Department.vue new file mode 100644 index 0000000..efaefad --- /dev/null +++ b/src/views/dynamic/videoCenter/components/Department.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/dynamic/videoCenter/components/EditDepartmentDialog.vue b/src/views/dynamic/videoCenter/components/EditDepartmentDialog.vue new file mode 100644 index 0000000..e5a271f --- /dev/null +++ b/src/views/dynamic/videoCenter/components/EditDepartmentDialog.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/src/views/dynamic/videoCenter/components/EditDialog.vue b/src/views/dynamic/videoCenter/components/EditDialog.vue new file mode 100644 index 0000000..3f3aa09 --- /dev/null +++ b/src/views/dynamic/videoCenter/components/EditDialog.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/src/views/dynamic/videoCenter/index.vue b/src/views/dynamic/videoCenter/index.vue new file mode 100644 index 0000000..4abc41a --- /dev/null +++ b/src/views/dynamic/videoCenter/index.vue @@ -0,0 +1,234 @@ + + + + + From 8aa1cb960ad84df0105cece9ed12f5a81c7749f8 Mon Sep 17 00:00:00 2001 From: qingyu <14049064+qingyuya123@user.noreply.gitee.com> Date: Tue, 17 Jun 2025 15:32:15 +0800 Subject: [PATCH 3/6] =?UTF-8?q?=E6=8B=9B=E8=81=98=E5=B2=97=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/lang/zh-CN/menu.js | 1 + src/router/routes/dynamic.js | 2 +- src/router/routes/imgMgt.js | 2 +- src/router/routes/index.js | 2 + src/router/routes/recruitment.js | 16 + .../recruitment/components/Department.vue | 169 ++++++++++ .../components/EditDepartmentDialog.vue | 131 ++++++++ .../recruitment/components/EditDialog.vue | 293 ++++++++++++++++++ src/views/recruitment/index.vue | 234 ++++++++++++++ 9 files changed, 848 insertions(+), 2 deletions(-) create mode 100644 src/router/routes/recruitment.js create mode 100644 src/views/recruitment/components/Department.vue create mode 100644 src/views/recruitment/components/EditDepartmentDialog.vue create mode 100644 src/views/recruitment/components/EditDialog.vue create mode 100644 src/views/recruitment/index.vue diff --git a/src/locales/lang/zh-CN/menu.js b/src/locales/lang/zh-CN/menu.js index a3bf6ad..fbc1299 100644 --- a/src/locales/lang/zh-CN/menu.js +++ b/src/locales/lang/zh-CN/menu.js @@ -43,4 +43,5 @@ export default { companyNews:'公司动态', mediaReports:'媒体报道', videoCenter:'视频中心', + recruitment:'招聘岗位', } diff --git a/src/router/routes/dynamic.js b/src/router/routes/dynamic.js index 8cbee48..424f78d 100644 --- a/src/router/routes/dynamic.js +++ b/src/router/routes/dynamic.js @@ -7,7 +7,7 @@ export default [ component: 'RouteViewLayout', meta: { icon: SettingOutlined, - title: '图片管理1', + title: '海邻动态', isMenu: true, keepAlive: true, permission: '*', diff --git a/src/router/routes/imgMgt.js b/src/router/routes/imgMgt.js index 78f5668..39c1b0a 100644 --- a/src/router/routes/imgMgt.js +++ b/src/router/routes/imgMgt.js @@ -7,7 +7,7 @@ export default [ component: 'RouteViewLayout', meta: { icon: SettingOutlined, - title: '图片管理1', + title: '图片管理', isMenu: true, keepAlive: true, permission: '*', diff --git a/src/router/routes/index.js b/src/router/routes/index.js index e6939eb..92a1199 100644 --- a/src/router/routes/index.js +++ b/src/router/routes/index.js @@ -11,6 +11,7 @@ import iframe from './iframe' import other from './other' import imgMgt from './imgMgt' import dynamic from './dynamic' +import recruitment from './recruitment' export default [ ...home, @@ -26,4 +27,5 @@ export default [ ...other, ...imgMgt, ...dynamic, + ...recruitment, ] diff --git a/src/router/routes/recruitment.js b/src/router/routes/recruitment.js new file mode 100644 index 0000000..f29d3b1 --- /dev/null +++ b/src/router/routes/recruitment.js @@ -0,0 +1,16 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'recruitment', + name: 'recruitment', + component: 'recruitment/index.vue', + meta: { + icon: SettingOutlined, + title: '招聘岗位', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, +] diff --git a/src/views/recruitment/components/Department.vue b/src/views/recruitment/components/Department.vue new file mode 100644 index 0000000..efaefad --- /dev/null +++ b/src/views/recruitment/components/Department.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/recruitment/components/EditDepartmentDialog.vue b/src/views/recruitment/components/EditDepartmentDialog.vue new file mode 100644 index 0000000..e5a271f --- /dev/null +++ b/src/views/recruitment/components/EditDepartmentDialog.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/src/views/recruitment/components/EditDialog.vue b/src/views/recruitment/components/EditDialog.vue new file mode 100644 index 0000000..3f3aa09 --- /dev/null +++ b/src/views/recruitment/components/EditDialog.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/src/views/recruitment/index.vue b/src/views/recruitment/index.vue new file mode 100644 index 0000000..ea2c677 --- /dev/null +++ b/src/views/recruitment/index.vue @@ -0,0 +1,234 @@ + + + + + From 87abec75f51ef7997641ae566b2f85cf234e4768 Mon Sep 17 00:00:00 2001 From: qingyu <14049064+qingyuya123@user.noreply.gitee.com> Date: Tue, 17 Jun 2025 16:06:58 +0800 Subject: [PATCH 4/6] =?UTF-8?q?team=E5=92=8Cproduct?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/lang/zh-CN/menu.js | 2 + src/router/routes/index.js | 4 + src/router/routes/product.js | 16 + src/router/routes/team.js | 16 + src/views/product/components/Department.vue | 169 ++++++++++ .../components/EditDepartmentDialog.vue | 131 ++++++++ src/views/product/components/EditDialog.vue | 293 ++++++++++++++++++ src/views/product/index.vue | 234 ++++++++++++++ src/views/team/components/Department.vue | 169 ++++++++++ .../team/components/EditDepartmentDialog.vue | 131 ++++++++ src/views/team/components/EditDialog.vue | 293 ++++++++++++++++++ src/views/team/index.vue | 234 ++++++++++++++ 12 files changed, 1692 insertions(+) create mode 100644 src/router/routes/product.js create mode 100644 src/router/routes/team.js create mode 100644 src/views/product/components/Department.vue create mode 100644 src/views/product/components/EditDepartmentDialog.vue create mode 100644 src/views/product/components/EditDialog.vue create mode 100644 src/views/product/index.vue create mode 100644 src/views/team/components/Department.vue create mode 100644 src/views/team/components/EditDepartmentDialog.vue create mode 100644 src/views/team/components/EditDialog.vue create mode 100644 src/views/team/index.vue diff --git a/src/locales/lang/zh-CN/menu.js b/src/locales/lang/zh-CN/menu.js index fbc1299..96b78f2 100644 --- a/src/locales/lang/zh-CN/menu.js +++ b/src/locales/lang/zh-CN/menu.js @@ -44,4 +44,6 @@ export default { mediaReports:'媒体报道', videoCenter:'视频中心', recruitment:'招聘岗位', + product:'产品中心', + team:'技术团队', } diff --git a/src/router/routes/index.js b/src/router/routes/index.js index 92a1199..d8afdad 100644 --- a/src/router/routes/index.js +++ b/src/router/routes/index.js @@ -12,6 +12,8 @@ import other from './other' import imgMgt from './imgMgt' import dynamic from './dynamic' import recruitment from './recruitment' +import product from './product' +import team from './team' export default [ ...home, @@ -28,4 +30,6 @@ export default [ ...imgMgt, ...dynamic, ...recruitment, + ...product, + ...team, ] diff --git a/src/router/routes/product.js b/src/router/routes/product.js new file mode 100644 index 0000000..4ff2a86 --- /dev/null +++ b/src/router/routes/product.js @@ -0,0 +1,16 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'product', + name: 'product', + component: 'product/index.vue', + meta: { + icon: SettingOutlined, + title: '产品中心', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, +] diff --git a/src/router/routes/team.js b/src/router/routes/team.js new file mode 100644 index 0000000..80f5aaa --- /dev/null +++ b/src/router/routes/team.js @@ -0,0 +1,16 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'team', + name: 'team', + component: 'team/index.vue', + meta: { + icon: SettingOutlined, + title: '技术团队', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, +] diff --git a/src/views/product/components/Department.vue b/src/views/product/components/Department.vue new file mode 100644 index 0000000..efaefad --- /dev/null +++ b/src/views/product/components/Department.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/product/components/EditDepartmentDialog.vue b/src/views/product/components/EditDepartmentDialog.vue new file mode 100644 index 0000000..e5a271f --- /dev/null +++ b/src/views/product/components/EditDepartmentDialog.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/src/views/product/components/EditDialog.vue b/src/views/product/components/EditDialog.vue new file mode 100644 index 0000000..3f3aa09 --- /dev/null +++ b/src/views/product/components/EditDialog.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/src/views/product/index.vue b/src/views/product/index.vue new file mode 100644 index 0000000..65ba3b8 --- /dev/null +++ b/src/views/product/index.vue @@ -0,0 +1,234 @@ + + + + + diff --git a/src/views/team/components/Department.vue b/src/views/team/components/Department.vue new file mode 100644 index 0000000..efaefad --- /dev/null +++ b/src/views/team/components/Department.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/team/components/EditDepartmentDialog.vue b/src/views/team/components/EditDepartmentDialog.vue new file mode 100644 index 0000000..e5a271f --- /dev/null +++ b/src/views/team/components/EditDepartmentDialog.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/src/views/team/components/EditDialog.vue b/src/views/team/components/EditDialog.vue new file mode 100644 index 0000000..3f3aa09 --- /dev/null +++ b/src/views/team/components/EditDialog.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/src/views/team/index.vue b/src/views/team/index.vue new file mode 100644 index 0000000..d8720db --- /dev/null +++ b/src/views/team/index.vue @@ -0,0 +1,234 @@ + + + + + From aed7a843c99b74d5ad12906524db81910e8bdea4 Mon Sep 17 00:00:00 2001 From: qingyu <14049064+qingyuya123@user.noreply.gitee.com> Date: Tue, 17 Jun 2025 16:50:23 +0800 Subject: [PATCH 5/6] =?UTF-8?q?=E5=85=B6=E4=BB=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locales/lang/zh-CN/menu.js | 5 + src/router/routes/importantEvents.js | 16 + src/router/routes/index.js | 4 + src/router/routes/websiteRelated.js | 51 +++ .../importantEvents/components/Department.vue | 169 ++++++++++ .../components/EditDepartmentDialog.vue | 131 ++++++++ .../importantEvents/components/EditDialog.vue | 293 ++++++++++++++++++ src/views/importantEvents/index.vue | 234 ++++++++++++++ .../contactUs/components/Department.vue | 169 ++++++++++ .../components/EditDepartmentDialog.vue | 131 ++++++++ .../contactUs/components/EditDialog.vue | 293 ++++++++++++++++++ src/views/websiteRelated/contactUs/index.vue | 234 ++++++++++++++ .../friendlyLinks/components/Department.vue | 169 ++++++++++ .../components/EditDepartmentDialog.vue | 131 ++++++++ .../friendlyLinks/components/EditDialog.vue | 293 ++++++++++++++++++ .../websiteRelated/friendlyLinks/index.vue | 234 ++++++++++++++ .../components/Department.vue | 169 ++++++++++ .../components/EditDepartmentDialog.vue | 131 ++++++++ .../components/EditDialog.vue | 293 ++++++++++++++++++ .../websiteRelated/websiteStatement/index.vue | 234 ++++++++++++++ 20 files changed, 3384 insertions(+) create mode 100644 src/router/routes/importantEvents.js create mode 100644 src/router/routes/websiteRelated.js create mode 100644 src/views/importantEvents/components/Department.vue create mode 100644 src/views/importantEvents/components/EditDepartmentDialog.vue create mode 100644 src/views/importantEvents/components/EditDialog.vue create mode 100644 src/views/importantEvents/index.vue create mode 100644 src/views/websiteRelated/contactUs/components/Department.vue create mode 100644 src/views/websiteRelated/contactUs/components/EditDepartmentDialog.vue create mode 100644 src/views/websiteRelated/contactUs/components/EditDialog.vue create mode 100644 src/views/websiteRelated/contactUs/index.vue create mode 100644 src/views/websiteRelated/friendlyLinks/components/Department.vue create mode 100644 src/views/websiteRelated/friendlyLinks/components/EditDepartmentDialog.vue create mode 100644 src/views/websiteRelated/friendlyLinks/components/EditDialog.vue create mode 100644 src/views/websiteRelated/friendlyLinks/index.vue create mode 100644 src/views/websiteRelated/websiteStatement/components/Department.vue create mode 100644 src/views/websiteRelated/websiteStatement/components/EditDepartmentDialog.vue create mode 100644 src/views/websiteRelated/websiteStatement/components/EditDialog.vue create mode 100644 src/views/websiteRelated/websiteStatement/index.vue diff --git a/src/locales/lang/zh-CN/menu.js b/src/locales/lang/zh-CN/menu.js index 96b78f2..ec412d1 100644 --- a/src/locales/lang/zh-CN/menu.js +++ b/src/locales/lang/zh-CN/menu.js @@ -46,4 +46,9 @@ export default { recruitment:'招聘岗位', product:'产品中心', team:'技术团队', + importantEvents:'海邻大事记', + websiteRelated:'网站设置', + friendlyLinks:'友情链接', + websiteStatement:'网站声明', + contactUs:'联系我们', } diff --git a/src/router/routes/importantEvents.js b/src/router/routes/importantEvents.js new file mode 100644 index 0000000..f3d5a5d --- /dev/null +++ b/src/router/routes/importantEvents.js @@ -0,0 +1,16 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'importantEvents', + name: 'importantEvents', + component: 'importantEvents/index.vue', + meta: { + icon: SettingOutlined, + title: '海邻大事记', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, +] diff --git a/src/router/routes/index.js b/src/router/routes/index.js index d8afdad..426f297 100644 --- a/src/router/routes/index.js +++ b/src/router/routes/index.js @@ -14,6 +14,8 @@ import dynamic from './dynamic' import recruitment from './recruitment' import product from './product' import team from './team' +import importantEvents from './importantEvents' +import website from './websiteRelated' export default [ ...home, @@ -32,4 +34,6 @@ export default [ ...recruitment, ...product, ...team, + ...importantEvents, + ...website, ] diff --git a/src/router/routes/websiteRelated.js b/src/router/routes/websiteRelated.js new file mode 100644 index 0000000..c0e7368 --- /dev/null +++ b/src/router/routes/websiteRelated.js @@ -0,0 +1,51 @@ +import { SettingOutlined } from '@ant-design/icons-vue' + +export default [ + { + path: 'websiteRelated', + name: 'websiteRelated', + component: 'RouteViewLayout', + meta: { + icon: SettingOutlined, + title: '网站设置', + isMenu: true, + keepAlive: true, + permission: '*', + }, + children: [ + { + path: 'friendlyLinks', + name: 'friendlyLinks', + component: 'websiteRelated/friendlyLinks/index.vue', + meta: { + title: '友情链接', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'websiteStatement', + name: 'websiteStatement', + component: 'websiteRelated/websiteStatement/index.vue', + meta: { + title: '网站声明', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + { + path: 'contactUs', + name: 'contactUs', + component: 'websiteRelated/contactUs/index.vue', + meta: { + title: '联系我们', + isMenu: true, + keepAlive: true, + permission: '*', + }, + }, + ], + }, +] diff --git a/src/views/importantEvents/components/Department.vue b/src/views/importantEvents/components/Department.vue new file mode 100644 index 0000000..efaefad --- /dev/null +++ b/src/views/importantEvents/components/Department.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/importantEvents/components/EditDepartmentDialog.vue b/src/views/importantEvents/components/EditDepartmentDialog.vue new file mode 100644 index 0000000..e5a271f --- /dev/null +++ b/src/views/importantEvents/components/EditDepartmentDialog.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/src/views/importantEvents/components/EditDialog.vue b/src/views/importantEvents/components/EditDialog.vue new file mode 100644 index 0000000..3f3aa09 --- /dev/null +++ b/src/views/importantEvents/components/EditDialog.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/src/views/importantEvents/index.vue b/src/views/importantEvents/index.vue new file mode 100644 index 0000000..7b6c1ca --- /dev/null +++ b/src/views/importantEvents/index.vue @@ -0,0 +1,234 @@ + + + + + diff --git a/src/views/websiteRelated/contactUs/components/Department.vue b/src/views/websiteRelated/contactUs/components/Department.vue new file mode 100644 index 0000000..efaefad --- /dev/null +++ b/src/views/websiteRelated/contactUs/components/Department.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/websiteRelated/contactUs/components/EditDepartmentDialog.vue b/src/views/websiteRelated/contactUs/components/EditDepartmentDialog.vue new file mode 100644 index 0000000..e5a271f --- /dev/null +++ b/src/views/websiteRelated/contactUs/components/EditDepartmentDialog.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/src/views/websiteRelated/contactUs/components/EditDialog.vue b/src/views/websiteRelated/contactUs/components/EditDialog.vue new file mode 100644 index 0000000..3f3aa09 --- /dev/null +++ b/src/views/websiteRelated/contactUs/components/EditDialog.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/src/views/websiteRelated/contactUs/index.vue b/src/views/websiteRelated/contactUs/index.vue new file mode 100644 index 0000000..66b5d68 --- /dev/null +++ b/src/views/websiteRelated/contactUs/index.vue @@ -0,0 +1,234 @@ + + + + + diff --git a/src/views/websiteRelated/friendlyLinks/components/Department.vue b/src/views/websiteRelated/friendlyLinks/components/Department.vue new file mode 100644 index 0000000..efaefad --- /dev/null +++ b/src/views/websiteRelated/friendlyLinks/components/Department.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/websiteRelated/friendlyLinks/components/EditDepartmentDialog.vue b/src/views/websiteRelated/friendlyLinks/components/EditDepartmentDialog.vue new file mode 100644 index 0000000..e5a271f --- /dev/null +++ b/src/views/websiteRelated/friendlyLinks/components/EditDepartmentDialog.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/src/views/websiteRelated/friendlyLinks/components/EditDialog.vue b/src/views/websiteRelated/friendlyLinks/components/EditDialog.vue new file mode 100644 index 0000000..3f3aa09 --- /dev/null +++ b/src/views/websiteRelated/friendlyLinks/components/EditDialog.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/src/views/websiteRelated/friendlyLinks/index.vue b/src/views/websiteRelated/friendlyLinks/index.vue new file mode 100644 index 0000000..928e783 --- /dev/null +++ b/src/views/websiteRelated/friendlyLinks/index.vue @@ -0,0 +1,234 @@ + + + + + diff --git a/src/views/websiteRelated/websiteStatement/components/Department.vue b/src/views/websiteRelated/websiteStatement/components/Department.vue new file mode 100644 index 0000000..efaefad --- /dev/null +++ b/src/views/websiteRelated/websiteStatement/components/Department.vue @@ -0,0 +1,169 @@ + + + + + diff --git a/src/views/websiteRelated/websiteStatement/components/EditDepartmentDialog.vue b/src/views/websiteRelated/websiteStatement/components/EditDepartmentDialog.vue new file mode 100644 index 0000000..e5a271f --- /dev/null +++ b/src/views/websiteRelated/websiteStatement/components/EditDepartmentDialog.vue @@ -0,0 +1,131 @@ + + + + + diff --git a/src/views/websiteRelated/websiteStatement/components/EditDialog.vue b/src/views/websiteRelated/websiteStatement/components/EditDialog.vue new file mode 100644 index 0000000..3f3aa09 --- /dev/null +++ b/src/views/websiteRelated/websiteStatement/components/EditDialog.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/src/views/websiteRelated/websiteStatement/index.vue b/src/views/websiteRelated/websiteStatement/index.vue new file mode 100644 index 0000000..e38dc1e --- /dev/null +++ b/src/views/websiteRelated/websiteStatement/index.vue @@ -0,0 +1,234 @@ + + + + + From 6a142c63697ed03fd5cabbd66aacc42d9a856551 Mon Sep 17 00:00:00 2001 From: qingyu <14049064+qingyuya123@user.noreply.gitee.com> Date: Tue, 17 Jun 2025 17:24:02 +0800 Subject: [PATCH 6/6] icon --- src/locales/lang/zh-CN/menu.js | 2 +- src/router/routes/dynamic.js | 4 ++-- src/router/routes/imgMgt.js | 4 ++-- src/router/routes/importantEvents.js | 4 ++-- src/router/routes/product.js | 4 ++-- src/router/routes/recruitment.js | 4 ++-- src/router/routes/team.js | 4 ++-- src/router/routes/websiteRelated.js | 4 ++-- 8 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/locales/lang/zh-CN/menu.js b/src/locales/lang/zh-CN/menu.js index ec412d1..2c1a183 100644 --- a/src/locales/lang/zh-CN/menu.js +++ b/src/locales/lang/zh-CN/menu.js @@ -47,7 +47,7 @@ export default { product:'产品中心', team:'技术团队', importantEvents:'海邻大事记', - websiteRelated:'网站设置', + websiteRelated:'网站相关', friendlyLinks:'友情链接', websiteStatement:'网站声明', contactUs:'联系我们', diff --git a/src/router/routes/dynamic.js b/src/router/routes/dynamic.js index 424f78d..c6a13f2 100644 --- a/src/router/routes/dynamic.js +++ b/src/router/routes/dynamic.js @@ -1,4 +1,4 @@ -import { SettingOutlined } from '@ant-design/icons-vue' +import { MenuOutlined } from '@ant-design/icons-vue' export default [ { @@ -6,7 +6,7 @@ export default [ name: 'Dynamic', component: 'RouteViewLayout', meta: { - icon: SettingOutlined, + icon: MenuOutlined, title: '海邻动态', isMenu: true, keepAlive: true, diff --git a/src/router/routes/imgMgt.js b/src/router/routes/imgMgt.js index 39c1b0a..1c0d551 100644 --- a/src/router/routes/imgMgt.js +++ b/src/router/routes/imgMgt.js @@ -1,4 +1,4 @@ -import { SettingOutlined } from '@ant-design/icons-vue' +import { PictureOutlined } from '@ant-design/icons-vue' export default [ { @@ -6,7 +6,7 @@ export default [ name: 'imgMgt', component: 'RouteViewLayout', meta: { - icon: SettingOutlined, + icon: PictureOutlined, title: '图片管理', isMenu: true, keepAlive: true, diff --git a/src/router/routes/importantEvents.js b/src/router/routes/importantEvents.js index f3d5a5d..b69a011 100644 --- a/src/router/routes/importantEvents.js +++ b/src/router/routes/importantEvents.js @@ -1,4 +1,4 @@ -import { SettingOutlined } from '@ant-design/icons-vue' +import { ScheduleOutlined } from '@ant-design/icons-vue' export default [ { @@ -6,7 +6,7 @@ export default [ name: 'importantEvents', component: 'importantEvents/index.vue', meta: { - icon: SettingOutlined, + icon: ScheduleOutlined, title: '海邻大事记', isMenu: true, keepAlive: true, diff --git a/src/router/routes/product.js b/src/router/routes/product.js index 4ff2a86..1762640 100644 --- a/src/router/routes/product.js +++ b/src/router/routes/product.js @@ -1,4 +1,4 @@ -import { SettingOutlined } from '@ant-design/icons-vue' +import { ShoppingOutlined } from '@ant-design/icons-vue' export default [ { @@ -6,7 +6,7 @@ export default [ name: 'product', component: 'product/index.vue', meta: { - icon: SettingOutlined, + icon: ShoppingOutlined, title: '产品中心', isMenu: true, keepAlive: true, diff --git a/src/router/routes/recruitment.js b/src/router/routes/recruitment.js index f29d3b1..34619fc 100644 --- a/src/router/routes/recruitment.js +++ b/src/router/routes/recruitment.js @@ -1,4 +1,4 @@ -import { SettingOutlined } from '@ant-design/icons-vue' +import { UsergroupDeleteOutlined } from '@ant-design/icons-vue' export default [ { @@ -6,7 +6,7 @@ export default [ name: 'recruitment', component: 'recruitment/index.vue', meta: { - icon: SettingOutlined, + icon: UsergroupDeleteOutlined, title: '招聘岗位', isMenu: true, keepAlive: true, diff --git a/src/router/routes/team.js b/src/router/routes/team.js index 80f5aaa..066f1f5 100644 --- a/src/router/routes/team.js +++ b/src/router/routes/team.js @@ -1,4 +1,4 @@ -import { SettingOutlined } from '@ant-design/icons-vue' +import { UserOutlined } from '@ant-design/icons-vue' export default [ { @@ -6,7 +6,7 @@ export default [ name: 'team', component: 'team/index.vue', meta: { - icon: SettingOutlined, + icon: UserOutlined, title: '技术团队', isMenu: true, keepAlive: true, diff --git a/src/router/routes/websiteRelated.js b/src/router/routes/websiteRelated.js index c0e7368..724ce71 100644 --- a/src/router/routes/websiteRelated.js +++ b/src/router/routes/websiteRelated.js @@ -1,4 +1,4 @@ -import { SettingOutlined } from '@ant-design/icons-vue' +import { NodeIndexOutlined } from '@ant-design/icons-vue' export default [ { @@ -6,7 +6,7 @@ export default [ name: 'websiteRelated', component: 'RouteViewLayout', meta: { - icon: SettingOutlined, + icon: NodeIndexOutlined, title: '网站设置', isMenu: true, keepAlive: true,