From 4cc6e22c309552ca0a7f4754551b25fb30ae1a64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Thu, 8 Jun 2023 16:33:28 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E6=89=8B=E6=9C=BA=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/config/router.config.js | 6 ++ .../src/views/phoneView/documentDetails.vue | 41 ++++++++++-- jero-web/src/views/phoneView/handlingPage.vue | 9 ++- .../src/views/phoneView/preHomoMangement.vue | 66 +++++++++++++++++++ .../views/phoneView/problemKnowledgeBase.vue | 9 +++ .../src/views/phoneView/processManagement.vue | 1 - jero-web/src/views/phoneView/toDoCenter.vue | 7 +- 7 files changed, 130 insertions(+), 9 deletions(-) create mode 100644 jero-web/src/views/phoneView/preHomoMangement.vue diff --git a/jero-web/src/config/router.config.js b/jero-web/src/config/router.config.js index ab85c388c..a1b5db65a 100644 --- a/jero-web/src/config/router.config.js +++ b/jero-web/src/config/router.config.js @@ -552,6 +552,12 @@ export const constantRouterMap = [ name: 'phoneMySubscribe', component: () => import('@/views/phoneView/mySubscribe') }, + //perhome办理流程 + { + path: '/phonePreHomoMangement', + name: 'phonePreHomoMangement', + component: () => import('@/views/phoneView/preHomoMangement') + }, /* 手机端结束 */ // { // path:'/vehicleinformation', diff --git a/jero-web/src/views/phoneView/documentDetails.vue b/jero-web/src/views/phoneView/documentDetails.vue index 8248298d9..e30aac0fc 100644 --- a/jero-web/src/views/phoneView/documentDetails.vue +++ b/jero-web/src/views/phoneView/documentDetails.vue @@ -7,11 +7,11 @@
-
+
{{$t('subscribe')}}
-
+
{{$t('Collection')}}
@@ -100,6 +100,8 @@ + + \ No newline at end of file diff --git a/jero-web/src/views/phoneView/problemKnowledgeBase.vue b/jero-web/src/views/phoneView/problemKnowledgeBase.vue index 714ca659d..fe61bb78e 100644 --- a/jero-web/src/views/phoneView/problemKnowledgeBase.vue +++ b/jero-web/src/views/phoneView/problemKnowledgeBase.vue @@ -161,6 +161,7 @@ window.addEventListener('mousedown', this.handleonmousedown) this.getQueryBy() this.releaseData() + this.viewAdd() }, watch: { sendValue: function(res) { @@ -193,6 +194,14 @@ iconClick() { this.$router.go(-1) }, + viewAdd() { + let query = { + problemKnowledgeBaseId: this.$route.query.id, + browsingUserId: this.userInfo().id + } + postAction('/problemKnowledgeBase/problemKnowledgeBaseBrowsingHistoryEO/add', query).then((res) => { + }) + }, getQueryBy() { let query = { id: this.$route.query.id diff --git a/jero-web/src/views/phoneView/processManagement.vue b/jero-web/src/views/phoneView/processManagement.vue index aeed6d421..2719435ec 100644 --- a/jero-web/src/views/phoneView/processManagement.vue +++ b/jero-web/src/views/phoneView/processManagement.vue @@ -369,7 +369,6 @@ let fileSuffix = fileName.substring(index1, index2) val.fileSuffix = fileSuffix }) - console.log(this.dataSourceFile) } else { this.dataSourceFile = [] } diff --git a/jero-web/src/views/phoneView/toDoCenter.vue b/jero-web/src/views/phoneView/toDoCenter.vue index c8cd27d8f..49c73930d 100644 --- a/jero-web/src/views/phoneView/toDoCenter.vue +++ b/jero-web/src/views/phoneView/toDoCenter.vue @@ -241,7 +241,7 @@ }, onClear(){ - + }, onChange(value) { if (value == 'search') { @@ -376,7 +376,10 @@ query: query }) } else if (row.flowType == '21') { - + this.$router.push({ + path: '/phoneHandlingPage', + query: query + }) } else { Toast(this.$t('pleaseProcessThePC')) }