+
+
+
+
+
+
+
+
+
+
+ 查询
+
+
+
+ 清空
+
+
+
+
{
From 1f47637212f8b999baf40749d86dc56810f3f14f Mon Sep 17 00:00:00 2001
From: "zhaokaiyao@91isoft.com" <6922339zky>
Date: Fri, 19 Nov 2021 17:52:52 +0800
Subject: [PATCH 04/24] =?UTF-8?q?=E5=85=A5=E5=BA=93=E6=B5=81=E7=A8=8B?=
=?UTF-8?q?=E4=BF=9D=E5=AD=98=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pages/creatProcess/bzrk/step1.vue | 5 +++-
.../pages/creatProcess/bzrk/step4.vue | 27 ++++++++++++++-----
2 files changed, 25 insertions(+), 7 deletions(-)
diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
index 132551c8d..6ba314aa4 100644
--- a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
@@ -1718,9 +1718,10 @@
this.verifySarStandard = this.$route.query.verifySarStandard
let mes = JSON.parse(res.mes)
mes.form.date = new Date(this.$moment(mes.form.date).format('YYYY-MM-DD'))
- this.form = mes.form
this.roleForm = mes.roleForm
this.commentText = mes.commentText
+ //表单文件处理
+ this.getFormFieldList(mes.form)
})
},
// 将文本状态的id与name对应
@@ -2597,6 +2598,8 @@
},
//保存
handleSave() {
+ //文件处理
+ this.fileInfoHandle();
this.form.country=this.countryArr;
// if(item.country !== undefined && item.country !== null){
// this.sarStandardsInfoEO.country = item.country.split(",");
diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue
index af8352887..a50d9304d 100644
--- a/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzrk/step4.vue
@@ -1344,7 +1344,14 @@
import ProcessHeader from '../../components/ProcessHeader'
import ProcessFooter from '../../components/ProcessFooter'
import ProcessTitle from '../../components/ProcessTitle'
-import {inboundLiaisonDetail,processCreateStand,changeAssigneeNew,saveTaskForPub,queryTaskFirst} from 'api/process'
+import {
+ inboundLiaisonDetail,
+ processCreateStand,
+ changeAssigneeNew,
+ saveTaskForPub,
+ queryTaskFirst,
+ saveTaskFirst
+} from 'api/process'
import TreeSelect from '@/components/treeSelect/treeSelect.vue';
import TreeSelectNew from '@/components/treeSelect/treeSelectNew.vue';
@@ -1591,7 +1598,6 @@ export default {
prcName : this.$route.query.prcName,
// 调整处理人抽屉状态
drawerModal: false,
- drawerTitle: '',
nodeList: [],
selectPeople:'',
}
@@ -1628,9 +1634,11 @@ export default {
}).then(res => {
let mes = JSON.parse(res.mes)
mes.form.date = new Date(this.$moment(mes.form.date).format('YYYY-MM-DD'))
- this.form = mes.form
this.roleForm = mes.roleForm
this.commentText = mes.commentText
+ this.taskIds=mes.taskIds
+ //表单文件处理
+ this.getFormFieldList(mes.form)
})
},
choiceZRR1 (type, title, id) {
@@ -2001,7 +2009,7 @@ export default {
break;
default : ;
}
- console.log("caNmae",this.form.caName);
+ // console.log("caNmae",this.form.caName);
this.$message({
showClose: true,
message: response.message,
@@ -2072,7 +2080,7 @@ export default {
this.fileMadel = true
},fileChange(fileList){
- console.log("fileList",fileList);
+ // console.log("fileList",fileList);
},
// popoverHide (checkedIds, checkedData,isShow,isLoadChild,topId) {
// if(checkedData) {
@@ -2209,6 +2217,7 @@ export default {
this.getFormFieldList(processForm)
}
}).catch(e => {
+ console.log("错误")
})
})
},
@@ -2313,18 +2322,24 @@ export default {
this.active = name
},
handleSave() {
+ //表单文件处理
+ this.fileInfoHandle();
this.form.country=this.countryArr;
this.saveLoading = true
let _formData = new FormData()
// _formData.append('id', this.bpnId)
+ _formData.append('createUser', this.$store.getters.userInfo.userId)
+ _formData.append('createUserName', this.$store.getters.userInfo.uName)
+ _formData.append('prcType', '1')
_formData.append('taskIds', this.taskIds)
_formData.append('json', JSON.stringify({
form: this.form,
roleForm: this.roleForm,
commentText: this.commentText,
taskInfo: '申请人修订',
+ taskIds:this.taskIds
}))
- saveTaskForPub(_formData).then(res => {
+ saveTaskFirst(_formData).then(res => {
this.saveLoading = false
this.$message.success('保存成功')
// this.bpnId = res.result
From 04e6f05115d2a04572b8a990629e3f245a4444bc Mon Sep 17 00:00:00 2001
From: yanyizhou <2311759275@qq.com>
Date: Sun, 21 Nov 2021 09:55:08 +0800
Subject: [PATCH 05/24] =?UTF-8?q?=E6=89=80=E6=9C=89=E7=9A=84=E5=B7=A6?=
=?UTF-8?q?=E4=BE=A7=E7=BB=93=E6=9E=84=E6=A0=91=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=8A=98=E5=8F=A0=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=89=93=E5=BC=80=EF=BC=8C=E7=9C=8B=E7=9D=80?=
=?UTF-8?q?=E4=B9=B1=E3=80=82=E6=94=B9=E4=B8=BA=E9=BB=98=E8=AE=A4=E6=8A=98?=
=?UTF-8?q?=E5=8F=A0=E7=8A=B6=E6=80=81=EF=BC=9B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../domesticStandardsAndRegulations/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue
index d4a277ebb..7ec64a6b1 100644
--- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue
+++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue
@@ -1894,7 +1894,7 @@ export default {
loading: false,
importLoading: false,
isCollapse: true,
- sideClose: false, // 边栏收展状态
+ sideClose: true, // 边栏收展状态
isAdvancedSearch: false, // 高级检索窗口是否打开
replaceStandNumModel: false,
lawsExplainQuoteModel: false,
From bda656c5e46fabedd2876d6b784b246281791950 Mon Sep 17 00:00:00 2001
From: yanyizhou <2311759275@qq.com>
Date: Sun, 21 Nov 2021 09:55:29 +0800
Subject: [PATCH 06/24] =?UTF-8?q?=E6=89=80=E6=9C=89=E7=9A=84=E5=B7=A6?=
=?UTF-8?q?=E4=BE=A7=E7=BB=93=E6=9E=84=E6=A0=91=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=8A=98=E5=8F=A0=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=89=93=E5=BC=80=EF=BC=8C=E7=9C=8B=E7=9D=80?=
=?UTF-8?q?=E4=B9=B1=E3=80=82=E6=94=B9=E4=B8=BA=E9=BB=98=E8=AE=A4=E6=8A=98?=
=?UTF-8?q?=E5=8F=A0=E7=8A=B6=E6=80=81=EF=BC=9B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../foreignStandardsAndRegulations/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue
index 92cf0c4b6..9b4c410c1 100644
--- a/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue
+++ b/src/pages/regulatoryRepository/foreignStandardsAndRegulations/index.vue
@@ -1751,7 +1751,7 @@ export default {
// 分页查询过程中用到的对象
loading: false,
isCollapse: true,
- sideClose: false, // 边栏收展状态
+ sideClose: true, // 边栏收展状态
isAdvancedSearch: false, // 高级检索窗口是否打开
replaceStandNumModel: false,
lawsExplainQuoteModel: false,
From 017dca168c6b8126cf765c261bc07cea93d1968c Mon Sep 17 00:00:00 2001
From: yanyizhou <2311759275@qq.com>
Date: Sun, 21 Nov 2021 09:55:37 +0800
Subject: [PATCH 07/24] =?UTF-8?q?=E6=89=80=E6=9C=89=E7=9A=84=E5=B7=A6?=
=?UTF-8?q?=E4=BE=A7=E7=BB=93=E6=9E=84=E6=A0=91=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=8A=98=E5=8F=A0=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=89=93=E5=BC=80=EF=BC=8C=E7=9C=8B=E7=9D=80?=
=?UTF-8?q?=E4=B9=B1=E3=80=82=E6=94=B9=E4=B8=BA=E9=BB=98=E8=AE=A4=E6=8A=98?=
=?UTF-8?q?=E5=8F=A0=E7=8A=B6=E6=80=81=EF=BC=9B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../regulatoryRepository/foreignRegulationsDatabase/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/regulatoryRepository/foreignRegulationsDatabase/index.vue b/src/pages/regulatoryRepository/foreignRegulationsDatabase/index.vue
index 3a302225d..dc938191f 100644
--- a/src/pages/regulatoryRepository/foreignRegulationsDatabase/index.vue
+++ b/src/pages/regulatoryRepository/foreignRegulationsDatabase/index.vue
@@ -2129,7 +2129,7 @@
creationTime: ''
},
removeOneId: '',
- sideClose: false, // 边栏收展状态
+ sideClose: true, // 边栏收展状态
twoOptions: [],
threeOptions: [],
orgData: [],
From 6317a646197f3b753e33383e9866a05d803a6a00 Mon Sep 17 00:00:00 2001
From: yanyizhou <2311759275@qq.com>
Date: Sun, 21 Nov 2021 09:55:49 +0800
Subject: [PATCH 08/24] =?UTF-8?q?=E6=89=80=E6=9C=89=E7=9A=84=E5=B7=A6?=
=?UTF-8?q?=E4=BE=A7=E7=BB=93=E6=9E=84=E6=A0=91=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=8A=98=E5=8F=A0=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=89=93=E5=BC=80=EF=BC=8C=E7=9C=8B=E7=9D=80?=
=?UTF-8?q?=E4=B9=B1=E3=80=82=E6=94=B9=E4=B8=BA=E9=BB=98=E8=AE=A4=E6=8A=98?=
=?UTF-8?q?=E5=8F=A0=E7=8A=B6=E6=80=81=EF=BC=9B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/EnterpriseStandardDatabase.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue
index bf085dd1c..42053dd5a 100644
--- a/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue
+++ b/src/pages/regulatoryRepository/enterpriseStandardDatabase/components/EnterpriseStandardDatabase.vue
@@ -1961,7 +1961,7 @@ export default {
creationTime: ''
},
removeOneId: '',
- sideClose: false, // 边栏收展状态
+ sideClose: true, // 边栏收展状态
twoOptions: [],
threeOptions: [],
orgData: [],
From 8f8054552125ed09d1393c86cdefec65342059b6 Mon Sep 17 00:00:00 2001
From: yanyizhou <2311759275@qq.com>
Date: Sun, 21 Nov 2021 09:55:59 +0800
Subject: [PATCH 09/24] =?UTF-8?q?=E6=89=80=E6=9C=89=E7=9A=84=E5=B7=A6?=
=?UTF-8?q?=E4=BE=A7=E7=BB=93=E6=9E=84=E6=A0=91=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=8A=98=E5=8F=A0=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=89=93=E5=BC=80=EF=BC=8C=E7=9C=8B=E7=9D=80?=
=?UTF-8?q?=E4=B9=B1=E3=80=82=E6=94=B9=E4=B8=BA=E9=BB=98=E8=AE=A4=E6=8A=98?=
=?UTF-8?q?=E5=8F=A0=E7=8A=B6=E6=80=81=EF=BC=9B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/config/pages/mechanismManage/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/config/pages/mechanismManage/index.vue b/src/pages/config/pages/mechanismManage/index.vue
index 6f613fbf6..032eb92f6 100644
--- a/src/pages/config/pages/mechanismManage/index.vue
+++ b/src/pages/config/pages/mechanismManage/index.vue
@@ -265,7 +265,7 @@ export default {
total: 0,
total2: 0,
pageSize: this.$store.getters.userInfo.configContent,
- sideClose: false,
+ sideClose: true,
data: [], // table数据
treeLoading: false,
Loading: false,
From b0071ee8c1096097f9b23baa389cfd3f3cbc9c41 Mon Sep 17 00:00:00 2001
From: yanyizhou <2311759275@qq.com>
Date: Sun, 21 Nov 2021 09:56:09 +0800
Subject: [PATCH 10/24] =?UTF-8?q?=E6=89=80=E6=9C=89=E7=9A=84=E5=B7=A6?=
=?UTF-8?q?=E4=BE=A7=E7=BB=93=E6=9E=84=E6=A0=91=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=8A=98=E5=8F=A0=EF=BC=8C=E6=9C=89=E7=9A=84?=
=?UTF-8?q?=E9=83=A8=E5=88=86=E6=89=93=E5=BC=80=EF=BC=8C=E7=9C=8B=E7=9D=80?=
=?UTF-8?q?=E4=B9=B1=E3=80=82=E6=94=B9=E4=B8=BA=E9=BB=98=E8=AE=A4=E6=8A=98?=
=?UTF-8?q?=E5=8F=A0=E7=8A=B6=E6=80=81=EF=BC=9B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/config/pages/roleManage/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/config/pages/roleManage/index.vue b/src/pages/config/pages/roleManage/index.vue
index 35dd4fc35..45f01ce8f 100644
--- a/src/pages/config/pages/roleManage/index.vue
+++ b/src/pages/config/pages/roleManage/index.vue
@@ -313,7 +313,7 @@ export default {
},
nodeList2: [],
modalflag: false,
- sideClose: false, // 边栏收展状态
+ sideClose: true, // 边栏收展状态
filterText: '',
treeData: [],
defaultProps: {
From 4fc3e5ee4cebb33a496e362541b2990028b03cf8 Mon Sep 17 00:00:00 2001
From: "zhaokaiyao@91isoft.com" <6922339zky>
Date: Sun, 21 Nov 2021 10:04:17 +0800
Subject: [PATCH 11/24] =?UTF-8?q?=E6=A0=87=E5=87=86=E7=B1=BB=E5=88=AB-?=
=?UTF-8?q?=E6=A0=87=E5=87=86=E5=8F=B7-=E6=A0=87=E5=87=86=E5=B9=B4?=
=?UTF-8?q?=E4=BB=BD=E9=A1=BA=E5=BA=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pages/creatProcess/bzrk/step1.vue | 52 ++++++++++---------
1 file changed, 28 insertions(+), 24 deletions(-)
diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
index 1d5ebdfb2..2087f7f32 100644
--- a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
@@ -29,6 +29,17 @@
海外标准入库
+
+
+
+
+
+
+
+
-
-
- 是
- 否
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 是
+ 否
+
+
+
+
+
Date: Sun, 21 Nov 2021 10:09:37 +0800
Subject: [PATCH 12/24] =?UTF-8?q?=E5=9B=BD=E5=86=85=E6=A0=87=E5=87=86?=
=?UTF-8?q?=E5=85=A5=E5=BA=93=EF=BC=9A=E5=8F=B3=E4=B8=8B=E8=A7=92=E6=96=B0?=
=?UTF-8?q?=E5=A2=9E=E6=8C=89=E9=92=AE=E6=94=B9=E4=B8=BA=E2=80=9C+?=
=?UTF-8?q?=E6=96=B0=E5=A2=9E=E2=80=9D=EF=BC=8C"=E5=B8=A6=E5=85=A5"?=
=?UTF-8?q?=E6=94=B9=E4=B8=BA"=E7=A1=AE=E8=AE=A4"?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/processCenter/pages/creatProcess/bzrk/step1.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
index 1d5ebdfb2..e0ca65d3d 100644
--- a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
@@ -1203,7 +1203,7 @@
新增
带入
+ @click="handleProcessStandardNext(2)">确认
Date: Sun, 21 Nov 2021 10:24:58 +0800
Subject: [PATCH 13/24] =?UTF-8?q?=E5=9B=BD=E5=86=85=E6=A0=87=E5=87=86?=
=?UTF-8?q?=E5=85=A5=E5=BA=93=EF=BC=9A=E5=88=A0=E6=8E=89=E8=B4=A3=E4=BB=BB?=
=?UTF-8?q?=E5=8D=95=E4=BD=8D=E3=80=81=E8=B4=A3=E4=BB=BB=E5=B7=A5=E7=A8=8B?=
=?UTF-8?q?=E5=B8=88?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pages/creatProcess/bzrk/step1.vue | 44 +++++++++----------
1 file changed, 22 insertions(+), 22 deletions(-)
diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
index 09a7d31c2..c55eb6c4c 100644
--- a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue
@@ -507,17 +507,17 @@
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
Date: Sun, 21 Nov 2021 10:32:01 +0800
Subject: [PATCH 14/24] commit
---
src/pages/localTool/standardWarning.vue | 69 +++----------------
.../pages/creatProcess/xmpg/step1-1.vue | 2 +-
.../pages/creatProcess/xmpg/step1-2.vue | 2 +-
.../pages/creatProcess/xmpg/step1-7.vue | 2 +-
.../pages/creatProcess/xmpg/step1.vue | 2 +-
.../pages/creatProcess/xmpg/step2.vue | 2 +-
.../pages/creatProcess/xmpg/step3.vue | 2 +-
.../pages/creatProcess/xmpg/step4.vue | 2 +-
.../pages/creatProcess/xmpg/step5.vue | 2 +-
.../pages/creatProcess/xmpg/step6.vue | 2 +-
.../pages/creatProcess/xmpg/step7.vue | 2 +-
.../processCenter/pages/newProcess/index.vue | 2 +-
.../localProductsOrProjectLibrary/index.vue | 5 --
13 files changed, 19 insertions(+), 77 deletions(-)
diff --git a/src/pages/localTool/standardWarning.vue b/src/pages/localTool/standardWarning.vue
index 432deb5e2..074d1edef 100644
--- a/src/pages/localTool/standardWarning.vue
+++ b/src/pages/localTool/standardWarning.vue
@@ -56,21 +56,6 @@
清空
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-