From 68efdf228b2f0dffc5c742ed27d5ad2679fb2073 Mon Sep 17 00:00:00 2001 From: guoyue Date: Wed, 13 Jul 2022 09:19:03 +0800 Subject: [PATCH 1/6] =?UTF-8?q?add:=20=E6=8C=87=E5=AF=BC=E6=89=8B=E5=86=8C?= =?UTF-8?q?(=E6=9A=82=E5=AD=98)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/public/static/config/location.js | 1 + front/src/api/home.js | 10 +- front/src/router/index.js | 9 ++ front/src/views/home/components/header.vue | 7 + .../components/abilityTree.vue | 149 ++++++++++++++++++ .../components/docsifyView.vue | 15 ++ .../instructionManual/components/showList.vue | 115 ++++++++++++++ front/src/views/instructionManual/index.vue | 75 +++++++++ 8 files changed, 379 insertions(+), 2 deletions(-) create mode 100644 front/src/views/instructionManual/components/abilityTree.vue create mode 100644 front/src/views/instructionManual/components/docsifyView.vue create mode 100644 front/src/views/instructionManual/components/showList.vue create mode 100644 front/src/views/instructionManual/index.vue diff --git a/front/public/static/config/location.js b/front/public/static/config/location.js index 763b690a..a6a6e44f 100644 --- a/front/public/static/config/location.js +++ b/front/public/static/config/location.js @@ -31,6 +31,7 @@ if (newLocation === 'qingdao') { { name: '能力云图', key: 'capabilityCloud' }, { name: '能力统计', key: 'abilityStatistics' }, // { name: '开发指南', key: 'developmentGuide' }, + { name: '指导手册', key: 'instructionManual' }, { name: '需求中心', key: 'demandCenter' }, // { name: '个人中心', key: 'personalCenter' }, { name: '区市站点', key: 'mapTest' }, diff --git a/front/src/api/home.js b/front/src/api/home.js index 198f1f38..de19b712 100644 --- a/front/src/api/home.js +++ b/front/src/api/home.js @@ -337,7 +337,6 @@ export function getApplyCameraList(id) { }) } -// 融合服务--start // 融合服务--列表 export function getIntegrationServicesList(params) { return request({ @@ -355,4 +354,11 @@ export function getIntegrationDetail(id) { }) } -// 融合服务--end +// 指导手册--左侧文档树 +export function getDevelopDocTree(params) { + return request({ + url: '/resource/selectDevelopDoc', + method: 'get', + params + }) +} \ No newline at end of file diff --git a/front/src/router/index.js b/front/src/router/index.js index 1810bdec..b8702453 100644 --- a/front/src/router/index.js +++ b/front/src/router/index.js @@ -462,6 +462,15 @@ export const constantRoutes = [ icon: 'error-warning-line', }, }, + { + path: '/instructionManual', + name: 'instructionManual', + component: () => import('@/views/instructionManual/index'), + meta: { + title: '指导手册', + icon: 'error-warning-line', + }, + }, ] export const asyncRoutes = [ { diff --git a/front/src/views/home/components/header.vue b/front/src/views/home/components/header.vue index 84655e1b..bc6b3ef4 100644 --- a/front/src/views/home/components/header.vue +++ b/front/src/views/home/components/header.vue @@ -136,6 +136,8 @@ const select = ref(router.currentRoute.value.name) const mynoticeFlag = ref(false) const mynoticeData = ref([]) + console.log('navListManagement------------>', navListManagement); + // eslint-disable-next-line no-undef const navList = ref(navListManagement.navList) const props = defineProps({ @@ -191,6 +193,11 @@ path: '/developmentGuide', }) break + case '指导手册': + router.push({ + path: '/instructionManual', + }) + break case '需求中心': router.push({ path: '/demandCenter', diff --git a/front/src/views/instructionManual/components/abilityTree.vue b/front/src/views/instructionManual/components/abilityTree.vue new file mode 100644 index 00000000..889f2301 --- /dev/null +++ b/front/src/views/instructionManual/components/abilityTree.vue @@ -0,0 +1,149 @@ + + + \ No newline at end of file diff --git a/front/src/views/instructionManual/components/docsifyView.vue b/front/src/views/instructionManual/components/docsifyView.vue new file mode 100644 index 00000000..bfcf4e4a --- /dev/null +++ b/front/src/views/instructionManual/components/docsifyView.vue @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/front/src/views/instructionManual/components/showList.vue b/front/src/views/instructionManual/components/showList.vue new file mode 100644 index 00000000..f8b4b0c6 --- /dev/null +++ b/front/src/views/instructionManual/components/showList.vue @@ -0,0 +1,115 @@ + + + diff --git a/front/src/views/instructionManual/index.vue b/front/src/views/instructionManual/index.vue new file mode 100644 index 00000000..5f9ad1cf --- /dev/null +++ b/front/src/views/instructionManual/index.vue @@ -0,0 +1,75 @@ + + + From dfbdbb5a46e89b9eef46065a4d9c959b7de3d561 Mon Sep 17 00:00:00 2001 From: guoyue Date: Wed, 13 Jul 2022 15:04:12 +0800 Subject: [PATCH 2/6] =?UTF-8?q?fix=EF=BC=9A=E6=8C=87=E5=AF=BC=E6=89=8B?= =?UTF-8?q?=E5=86=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../{showList.vue => abilityDocTree.vue} | 82 +++++----- .../components/abilityTree.vue | 149 ------------------ front/src/views/instructionManual/index.vue | 107 +++++++++++-- 3 files changed, 140 insertions(+), 198 deletions(-) rename front/src/views/instructionManual/components/{showList.vue => abilityDocTree.vue} (58%) delete mode 100644 front/src/views/instructionManual/components/abilityTree.vue diff --git a/front/src/views/instructionManual/components/showList.vue b/front/src/views/instructionManual/components/abilityDocTree.vue similarity index 58% rename from front/src/views/instructionManual/components/showList.vue rename to front/src/views/instructionManual/components/abilityDocTree.vue index f8b4b0c6..6cd30ac9 100644 --- a/front/src/views/instructionManual/components/showList.vue +++ b/front/src/views/instructionManual/components/abilityDocTree.vue @@ -1,19 +1,22 @@ - \ No newline at end of file diff --git a/front/src/views/instructionManual/index.vue b/front/src/views/instructionManual/index.vue index 5f9ad1cf..3ae9b404 100644 --- a/front/src/views/instructionManual/index.vue +++ b/front/src/views/instructionManual/index.vue @@ -3,9 +3,12 @@
-

新手指引

-

技术文档

- +
新手指引
+
技术文档 +
+ + +
新手指引
@@ -19,34 +22,113 @@ + From e832b3e1d501a3803b213d050eff34952b56ae45 Mon Sep 17 00:00:00 2001 From: "851673013@qq.com" <851673013@qq.com> Date: Wed, 13 Jul 2022 15:53:30 +0800 Subject: [PATCH 3/6] =?UTF-8?q?=E8=83=BD=E5=8A=9B=E4=B8=8A=E6=9E=B6?= =?UTF-8?q?=E5=90=8E=E5=8F=B0=E5=AE=A1=E6=89=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/src/assets/img/sj-jx.png | Bin 0 -> 102 bytes .../myAgent/demo/Application-resources.vue | 2 +- .../myAgent/demo/ResourcesAndServices.vue | 97 ++++++++++++++++-- 3 files changed, 91 insertions(+), 8 deletions(-) create mode 100644 back/src/assets/img/sj-jx.png diff --git a/back/src/assets/img/sj-jx.png b/back/src/assets/img/sj-jx.png new file mode 100644 index 0000000000000000000000000000000000000000..a51062732a6785f6b9730982fa022126470d6c58 GIT binary patch literal 102 zcmeAS@N?(olHy`uVBq!ia0vp^>_9Bd!3HEZxJ@+%QY^(zo*^7SP{WbZ0p!bix;Tbt w1Sh9t{Qp0nkv&0XYD$6xFH6EJ3C%_Z2D@e# -
22222222222222
+
From d551b833d3e1fb1d70bd1a66801880a6c007e60d Mon Sep 17 00:00:00 2001 From: a0049873 <79py69t9wb@privaterelay.appleid.com> Date: Wed, 13 Jul 2022 16:30:37 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E6=88=91=E7=9A=84=E7=94=B3=E8=AF=B7=20?= =?UTF-8?q?=E8=83=BD=E5=8A=9B=E7=94=B3=E8=AF=B7=20=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/public/index.html | 6 +- front/src/api/personalCenter.js | 7 + front/src/views/home/AbilityToApplyFor.vue | 399 ++++++------ front/src/views/home/apply.vue | 2 + .../components/AbilityApplication.vue | 322 ++++++++++ .../components/ApplyDetails.vue | 581 ++---------------- .../personalCenter/components/MyApply.vue | 208 +++++-- 7 files changed, 733 insertions(+), 792 deletions(-) create mode 100644 front/src/views/personalCenter/components/AbilityApplication.vue diff --git a/front/public/index.html b/front/public/index.html index e408d9d5..a9535a2a 100644 --- a/front/public/index.html +++ b/front/public/index.html @@ -1,8 +1,8 @@ @@ -49,7 +49,7 @@ window.SITE_CONFIG['backUrl'] = 'http://15.2.21.238:9797'; window.SITE_CONFIG['previewUrl'] = 'http://15.2.21.238:9796/'; window.SITE_CONFIG['frontUrl'] = 'http://15.2.21.238:9796/document/#/devModelFile/'; - window.SITE_CONFIG['apiURL'] = 'http://15.2.21.239:8888/renren-admin'; + window.SITE_CONFIG['apiURL'] = 'http://15.2.21.238:8888/renren-admin'; window.SITE_CONFIG['POI_URL'] = 'http://15.2.21.238:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address'; // 穿透版本 // window.SITE_CONFIG['backUrl'] = 'http://124.222.94.39:9797'; diff --git a/front/src/api/personalCenter.js b/front/src/api/personalCenter.js index d9eb8e9b..b58168f4 100644 --- a/front/src/api/personalCenter.js +++ b/front/src/api/personalCenter.js @@ -14,6 +14,13 @@ export function getTabilityapplication(params) { params, }) } +export function getByApplyFlag(params) { + return request({ + url: '/processForm/tabilityapplication/getByApplyFlag/' + params, + method: 'get', + // params, + }) +} // 查询申购车列表 export function getSgcList(params) { diff --git a/front/src/views/home/AbilityToApplyFor.vue b/front/src/views/home/AbilityToApplyFor.vue index 57d4eabf..cc0393e2 100644 --- a/front/src/views/home/AbilityToApplyFor.vue +++ b/front/src/views/home/AbilityToApplyFor.vue @@ -5,44 +5,54 @@ 展开 收起
-
+
{{ item.deptName }}
- - + + @@ -155,4 +163,13 @@ onMounted(() => { .right { width: 880px; } + +.sidebar { + right: 0 !important; +} + +.content { + right: 16rem !important; + left: 0 !important; +} From ad7f05fcba830f46d8153fb60f395f14c7d43f98 Mon Sep 17 00:00:00 2001 From: guoyue Date: Wed, 13 Jul 2022 17:47:14 +0800 Subject: [PATCH 6/6] =?UTF-8?q?fix:=20=E8=9E=8D=E5=90=88=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/src/views/home/components/searchResultList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/views/home/components/searchResultList.vue b/front/src/views/home/components/searchResultList.vue index 5d0ab90e..47d0dd5f 100644 --- a/front/src/views/home/components/searchResultList.vue +++ b/front/src/views/home/components/searchResultList.vue @@ -620,9 +620,9 @@ mybus.on('chongzhi', (typeObj) => { console.log('typeObj------------>', typeObj); if(!typeObj) { - selData.value = 'total' + selData.value = 'total'; } - if(typeObj.type === '融合服务') { + if(typeObj && typeObj.type === '融合服务') { orderList.value = [ { value: 'collectCount',