From 46ad5e747d79730648c889cdb4a45cc268595950 Mon Sep 17 00:00:00 2001 From: guoyue Date: Wed, 26 Oct 2022 20:28:58 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E7=AE=97=E6=B3=95=E5=B9=BF=E5=9C=BA?= =?UTF-8?q?=E5=92=8Cgis=E5=B9=BF=E5=9C=BA=20=E4=BC=A0=E5=8F=82=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/capacitySquare/components/algorithm.vue | 11 +++++++++-- front/src/views/capacitySquare/components/layer.vue | 11 +++++++++-- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/front/src/views/capacitySquare/components/algorithm.vue b/front/src/views/capacitySquare/components/algorithm.vue index 9a63f367..e4ef303a 100644 --- a/front/src/views/capacitySquare/components/algorithm.vue +++ b/front/src/views/capacitySquare/components/algorithm.vue @@ -79,6 +79,7 @@ const params = { // 切换领域 const changeAreaFunction = (val) => { + params.pageNum = 1; typeName2.value = val params.area = typeName2.value == '全部' ? '' : typeName2.value; selectFlag2.value = false @@ -160,7 +161,13 @@ const changeDeptType = (str) => { break } params.pageNum = 1; - params.deptType = deptType.value; + if(deptType.value !== null && deptType.value !== undefined) { + params.deptType = deptType.value; + }else { + if(Object.keys(params).includes('deptType')) { + delete params.deptType + } + } } selectFlag.value = false getData(str) @@ -169,7 +176,7 @@ const changeDeptType = (str) => { const getData = (str) => { getGisByArea(params).then((res) => { const resData = res.data.data || {} - if (resData.list.length > 0 && resData.list.length < 9) { + if (resData.list.length > 0 && resData.list.length < 9 && algorithmclassDom) { algorithmclassDom.removeEventListener('scroll', algorithmFunction, true) } dataList.value = resData.list || [] diff --git a/front/src/views/capacitySquare/components/layer.vue b/front/src/views/capacitySquare/components/layer.vue index f7facca0..d7b03a79 100644 --- a/front/src/views/capacitySquare/components/layer.vue +++ b/front/src/views/capacitySquare/components/layer.vue @@ -77,6 +77,7 @@ const params = { // 切换领域 const changeAreaFunction = (val) => { + params.pageNum = 1; typeName2.value = val params.area = typeName2.value == '全部' ? '' : typeName2.value; selectFlag2.value = false @@ -126,7 +127,13 @@ const changeDeptType = (str) => { break } params.pageNum = 1; - params.deptType = deptType.value; + if(deptType.value !== null && deptType.value !== undefined) { + params.deptType = deptType.value; + }else { + if(Object.keys(params).includes('deptType')) { + delete params.deptType + } + } } selectFlag.value = false getData(str) @@ -135,7 +142,7 @@ const changeDeptType = (str) => { const getData = (str) => { getGisByArea(params).then((res) => { const resData = res.data.data || {} - if (resData.list.length > 0 && resData.list.length < 9) { + if (resData.list.length > 0 && resData.list.length < 9 && algorithmclassDom) { algorithmclassDom.removeEventListener('scroll', algorithmFunction, true) } dataList.value = resData.list || [] From 4930027d6776fe6b3b558ad9a7edc143bed85140 Mon Sep 17 00:00:00 2001 From: a0049873 <79py69t9wb@privaterelay.appleid.com> Date: Thu, 27 Oct 2022 10:50:09 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E8=83=BD=E5=8A=9B=E4=B8=8A=E6=9E=B6=20?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=BD=AC=E5=8A=9E=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../myAgent/demo/ability-resource-shelf.vue | 47 +- .../components/CapabilityConvergence.vue | 844 +++++++++--------- 2 files changed, 483 insertions(+), 408 deletions(-) diff --git a/back/src/views/modules/myAgent/demo/ability-resource-shelf.vue b/back/src/views/modules/myAgent/demo/ability-resource-shelf.vue index 418be3f7..663d940a 100644 --- a/back/src/views/modules/myAgent/demo/ability-resource-shelf.vue +++ b/back/src/views/modules/myAgent/demo/ability-resource-shelf.vue @@ -36,6 +36,7 @@

审批

+ 转办 同意 驳回 -->
+ From f36e2bbffcb0749b562d6b379ae9d969b92ceb60 Mon Sep 17 00:00:00 2001 From: a0049873 <79py69t9wb@privaterelay.appleid.com> Date: Thu, 27 Oct 2022 11:44:25 +0800 Subject: [PATCH 3/8] =?UTF-8?q?BUG=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/capacitySquare/components/layer.vue | 553 +++++++++--------- 1 file changed, 289 insertions(+), 264 deletions(-) diff --git a/front/src/views/capacitySquare/components/layer.vue b/front/src/views/capacitySquare/components/layer.vue index d7b03a79..9f67b6f7 100644 --- a/front/src/views/capacitySquare/components/layer.vue +++ b/front/src/views/capacitySquare/components/layer.vue @@ -22,16 +22,29 @@
-
+
{{ val }}
-
- +
+ @@ -45,296 +58,308 @@
From 3e1b6b8a222285380c34dd8cac3016ef51b2dafc Mon Sep 17 00:00:00 2001 From: guoyue Date: Thu, 27 Oct 2022 13:47:19 +0800 Subject: [PATCH 4/8] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20=E9=9C=80=E6=B1=82?= =?UTF-8?q?=E4=B8=AD=E5=BF=83=EF=BC=9A=E9=9C=80=E6=B1=82=E7=94=B3=E8=AF=B7?= =?UTF-8?q?=E6=97=B6=EF=BC=8C=E5=BA=94=E7=94=A8=E9=A2=86=E5=9F=9F=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E8=BF=9B=E8=A1=8C=E9=80=89=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/addApplication.vue | 631 ++++++++---------- 1 file changed, 267 insertions(+), 364 deletions(-) diff --git a/front/src/views/personalCenter/components/addApplication.vue b/front/src/views/personalCenter/components/addApplication.vue index d347ae86..47331e43 100644 --- a/front/src/views/personalCenter/components/addApplication.vue +++ b/front/src/views/personalCenter/components/addApplication.vue @@ -9,83 +9,38 @@
申请人信息
- +
- - + + - - + + - - + +
需求信息
- - + + - - + + 基础设施 数据资源 组件服务 @@ -94,50 +49,24 @@ - - + + + - - + + " v-model:value="formName.demandDetails" /> - - - + + + "> 文件上传 @@ -188,8 +103,7 @@ - + " type="primary" html-type="cancle" @click="signOut"> 退出申请 - + " type="primary" html-type="submit" @click="processStartHandle()"> 提交申请 @@ -234,7 +139,7 @@

您已成功申请{{ - formName.demandSubject || '' + formName.demandSubject || '' }},请耐心等待审批结果,结果会第一时间通知您!

@@ -245,250 +150,248 @@ From e29e0f0526d1092ede2fbc9dace3e47c5d6ecad6 Mon Sep 17 00:00:00 2001 From: guoyue Date: Thu, 27 Oct 2022 13:50:29 +0800 Subject: [PATCH 5/8] =?UTF-8?q?=E7=AE=97=E6=B3=95=E5=B9=BF=E5=9C=BA?= =?UTF-8?q?=E5=92=8C=E8=83=BD=E5=8A=9B=E5=B9=BF=E5=9C=BA=E5=AE=B9=E9=94=99?= =?UTF-8?q?=E5=A4=84=E7=90=86pic=E4=B8=BA=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- front/src/views/capacitySquare/components/algorithm.vue | 3 ++- front/src/views/capacitySquare/components/layer.vue | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/front/src/views/capacitySquare/components/algorithm.vue b/front/src/views/capacitySquare/components/algorithm.vue index e4ef303a..47d6b958 100644 --- a/front/src/views/capacitySquare/components/algorithm.vue +++ b/front/src/views/capacitySquare/components/algorithm.vue @@ -106,7 +106,8 @@ const algorithmCardPhoto = (item) => { if(item.pic && typeof item.pic == 'string') { _arr = JSON.parse(item.pic) } - let _img = _arr[0] && _arr[0].img || '' + let _img = _arr[0] && _arr[0].img || imgSrc.value; + console.log('_img------------>', _img); return _img } //跳转详情页 diff --git a/front/src/views/capacitySquare/components/layer.vue b/front/src/views/capacitySquare/components/layer.vue index d7b03a79..14c36e0e 100644 --- a/front/src/views/capacitySquare/components/layer.vue +++ b/front/src/views/capacitySquare/components/layer.vue @@ -30,7 +30,7 @@
- From a8648429573e3de67b556f1144bdc2a01042b432 Mon Sep 17 00:00:00 2001 From: guoyue Date: Thu, 27 Oct 2022 14:33:59 +0800 Subject: [PATCH 6/8] =?UTF-8?q?=E8=83=BD=E5=8A=9B=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=EF=BC=9A=E6=9F=A5=E8=AF=A2=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/src/views/modules/abilityStatistics/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/src/views/modules/abilityStatistics/index.vue b/back/src/views/modules/abilityStatistics/index.vue index 85b8d885..ac6bb284 100644 --- a/back/src/views/modules/abilityStatistics/index.vue +++ b/back/src/views/modules/abilityStatistics/index.vue @@ -71,7 +71,7 @@ - {{ $t('query') }} + {{ $t('query') }} From 140f927763a2ba1938abcd5d09919d8cb33dddb8 Mon Sep 17 00:00:00 2001 From: a0049873 <79py69t9wb@privaterelay.appleid.com> Date: Thu, 27 Oct 2022 15:03:21 +0800 Subject: [PATCH 7/8] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E5=8F=B0=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../workBench/components/dept-todo-view.vue | 4 +- .../src/views/modules/workBench/workBench.vue | 72 +++++++++++-------- 2 files changed, 43 insertions(+), 33 deletions(-) diff --git a/back/src/views/modules/workBench/components/dept-todo-view.vue b/back/src/views/modules/workBench/components/dept-todo-view.vue index 4a018261..15a3fbce 100644 --- a/back/src/views/modules/workBench/components/dept-todo-view.vue +++ b/back/src/views/modules/workBench/components/dept-todo-view.vue @@ -9,7 +9,7 @@ >
-
{{ title }}
+
{{ '我的'+title }}
{{ formatNum(dataInfo.num) @@ -90,7 +90,7 @@
查看更多 >
-
暂无数据
+
暂无{{title}}任务