From c72efed01a4a9ce2ec9031bc6cf3a068035ee796 Mon Sep 17 00:00:00 2001
From: hanshaozhuang
Date: Thu, 21 Jul 2022 17:02:43 +0800
Subject: [PATCH 1/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2056642=20=E3=80=90?=
=?UTF-8?q?=E6=BC=94=E7=A4=BA=E9=97=AE=E9=A2=98=E3=80=91=E5=9B=BD=E5=86=85?=
=?UTF-8?q?/=E6=B5=B7=E5=A4=96=20=E6=9B=B4=E6=94=B9=E5=8F=91=E5=B8=83?=
=?UTF-8?q?=E6=94=B9=E7=9A=84=E7=8A=B6=E6=80=81=20=E8=AF=91=E6=96=87?=
=?UTF-8?q?=E5=92=8C=E5=8E=9F=E6=96=87=20=E4=B8=8E=E6=9F=A5=E7=9C=8B?=
=?UTF-8?q?=E7=95=8C=E9=9D=A2=E5=91=BC=E5=BA=94=20=E5=90=A6=E5=88=99?=
=?UTF-8?q?=E6=97=A0=E6=B3=95=E5=88=86=E8=BE=A8=E6=95=B0=E6=8D=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/phone/domesticDetails.vue | 58 ++++++++++++++++++++++++++++-
1 file changed, 57 insertions(+), 1 deletion(-)
diff --git a/src/pages/phone/domesticDetails.vue b/src/pages/phone/domesticDetails.vue
index 7deebf9bc..f722b06e7 100644
--- a/src/pages/phone/domesticDetails.vue
+++ b/src/pages/phone/domesticDetails.vue
@@ -74,6 +74,46 @@
@@ -300,7 +340,7 @@
@@ -1805,6 +1845,14 @@
}
return child5
},
+ child6Func(child6) {
+ const list = []
+ if (child6 && child6.length > 1) {
+ list.push(child6[0])
+ return list
+ }
+ return child6
+ },
handleChange(val) {
},
handleChange1(val) {
@@ -3355,6 +3403,14 @@
location['child5'] = childList
}
+ //修订本
+ if (!list[0].child) {
+ location['child6'] = []
+ } else {
+ const childList = list[0].child.filter(item => item.attrField === 'FBGYWBD');
+ location['child6'] = childList
+
+ }
}
// 动态属性字段-SYRZ 单独添加至基础信息
const list2 = displayLocation.filter(item => item.label === '适用范围');
From b327e07826968dc941f77aafb4ef0edde3bb8cd3 Mon Sep 17 00:00:00 2001
From: hanshaozhuang
Date: Thu, 21 Jul 2022 17:03:29 +0800
Subject: [PATCH 2/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2056642=20=E3=80=90?=
=?UTF-8?q?=E6=BC=94=E7=A4=BA=E9=97=AE=E9=A2=98=E3=80=91=E5=9B=BD=E5=86=85?=
=?UTF-8?q?/=E6=B5=B7=E5=A4=96=20=E6=9B=B4=E6=94=B9=E5=8F=91=E5=B8=83?=
=?UTF-8?q?=E6=94=B9=E7=9A=84=E7=8A=B6=E6=80=81=20=E8=AF=91=E6=96=87?=
=?UTF-8?q?=E5=92=8C=E5=8E=9F=E6=96=87=20=E4=B8=8E=E6=9F=A5=E7=9C=8B?=
=?UTF-8?q?=E7=95=8C=E9=9D=A2=E5=91=BC=E5=BA=94=20=E5=90=A6=E5=88=99?=
=?UTF-8?q?=E6=97=A0=E6=B3=95=E5=88=86=E8=BE=A8=E6=95=B0=E6=8D=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/processCenter/pages/phone/bzrk/step2.vue | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/pages/processCenter/pages/phone/bzrk/step2.vue b/src/pages/processCenter/pages/phone/bzrk/step2.vue
index fbb9c77cc..664d20fab 100644
--- a/src/pages/processCenter/pages/phone/bzrk/step2.vue
+++ b/src/pages/processCenter/pages/phone/bzrk/step2.vue
@@ -166,6 +166,14 @@
- -
+
+
+ {{ value.name }}
+
+
+ - -
+
+
{{ value.name }}
@@ -455,6 +463,7 @@ export default {
textStatusMap: {}, // 文本状态id与name对应
xgdFileMap: [],
fbgbjbdFileMap: [],
+ fbgywbdFileMap: [],
bpgFileMap: [],
ssgFileMap: [],
zqyjgFileMap: [],
@@ -531,6 +540,7 @@ export default {
// 文本信息
ca: '', // 草案
fbgbjbd: '', // 发布稿
+ fbgywbd: '', // 发布稿 译文
xgd: '', // 修改单
bpg: '', // 报批稿
ssg: '', // 送审稿
@@ -541,6 +551,7 @@ export default {
kwj: '', // 勘误件
caName: '', // 草案
fbgbjbdName: '', // 发布稿
+ fbgywbdName: '', // 发布稿 译文
xgdName: '', // 修改单
bpgName: '', // 报批稿
ssgName: '', // 送审稿
From 7bdfa939325ff4c10b998321d4d66ca80813ffcf Mon Sep 17 00:00:00 2001
From: hanshaozhuang
Date: Thu, 21 Jul 2022 17:09:25 +0800
Subject: [PATCH 3/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2056714=20=E9=85=8D?=
=?UTF-8?q?=E7=BD=AE=E6=A0=87=E5=87=86=E9=A1=B5=E9=9D=A2=EF=BC=8C=E4=B8=8B?=
=?UTF-8?q?=E6=96=B9=E7=9A=84=E5=B7=B2=E9=80=89=E6=A0=87=E5=87=86=E4=BC=9A?=
=?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=B8=A6=E5=87=BA=E4=B8=8A=E4=B8=80=E6=AC=A1?=
=?UTF-8?q?=E9=80=89=E6=8B=A9=E7=9A=84?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../domesticStandardsAndRegulations/index.vue | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue
index 8284a2c05..946dd1e0c 100644
--- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue
+++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue
@@ -5472,7 +5472,8 @@ export default {
loading: 'isSubmit'
}, res => {
if (res.ok) {
- this.configStandFlag = false
+ this.cancelConfigStand()
+ // this.configStandFlag = false
// this.$message({
// showClose: true,
// message: '配置标准成功!',
From 5791014190b468f14f0a50c1b66b7ea9d34c36da Mon Sep 17 00:00:00 2001
From: hanshaozhuang
Date: Thu, 21 Jul 2022 17:20:12 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2056722=20=E7=82=B9?=
=?UTF-8?q?=E5=87=BB=E5=8E=86=E5=8F=B2=E7=9B=B8=E4=BC=BC=E9=97=AE=E9=A2=98?=
=?UTF-8?q?=E5=BA=94=E8=AF=A5=E8=B7=B3=E8=BD=AC=E5=88=B0=E5=AF=B9=E5=BA=94?=
=?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/questionDetail.vue | 2 +-
.../regulatoryRepository/standQA/index.vue | 22 ++++++++++++-------
2 files changed, 15 insertions(+), 9 deletions(-)
diff --git a/src/pages/personal/pages/my-questions/components/questionDetail.vue b/src/pages/personal/pages/my-questions/components/questionDetail.vue
index 973f33b00..f284d082f 100644
--- a/src/pages/personal/pages/my-questions/components/questionDetail.vue
+++ b/src/pages/personal/pages/my-questions/components/questionDetail.vue
@@ -40,7 +40,7 @@ export default {
},
methods:{
back() {
- this.$router.push({path: "/questions"});
+ this.$router.go(-1)
},
getDetail(){
this.$http.get('lawss/AskQuestions/getAskQuestionsByakId',{
diff --git a/src/pages/regulatoryRepository/standQA/index.vue b/src/pages/regulatoryRepository/standQA/index.vue
index af377a32e..ea47b938a 100644
--- a/src/pages/regulatoryRepository/standQA/index.vue
+++ b/src/pages/regulatoryRepository/standQA/index.vue
@@ -720,15 +720,21 @@ export default {
//点击跳转问题详情
historyJump(item){
this.$router.push({
- path: '/standQA',
- query:{
- standId: item.standardId,
- queId: item.id,
- sourceType: 'dialog',
- standType: item.classification,
- standName: item.standardName,
+ path: "/questionDetail",
+ query: {
+ id: item.id
}
- })
+ });
+ // this.$router.push({
+ // path: '/standQA',
+ // query:{
+ // standId: item.standardId,
+ // queId: item.id,
+ // sourceType: 'dialog',
+ // standType: item.classification,
+ // standName: item.standardName,
+ // }
+ // })
this.dialogVisible = false
},
// 点击查看