-
检测到您使用的是IE浏览器,建议您更换为谷歌浏览器或火狐浏览器
-
-
@@ -331,6 +348,73 @@
@submit="handleSubmit"
>
+
+
+
+ 在研产品
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 在产产品
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -349,6 +433,27 @@ export default {
},
data() {
return {
+ batchEditForm: {
+ // 在研产品
+ // 合规
+ complianceReasons :'',
+ // 不合规
+ noCompliance :'',
+ // 应对措施
+ countermeasures :'',
+ // 完成时间
+ completionTime :'',
+
+ // 在产产品
+ // 合规
+ zcComplianceReasons :'',
+ // 不合规
+ zcNoCompliance:'',
+ // 应对措施
+ zcCountermeasures:'',
+ // 完成时间
+ zcCompletionTime:''
+ },
hasChildren: true,
active: "1",
loading: false,
@@ -398,6 +503,83 @@ export default {
};
},
methods: {
+ //批量编辑确定按钮事件
+ saveBatchEditForm() {
+
+ // console.log(this.selectList)
+ for( let a = 0; a < this.dataList.length; a++) {
+ for ( let b = 0; b < this.selectList.length; b++) {
+ if (this.dataList[a].id === this.selectList[b]) {
+ //合规
+ this.dataList[a].complianceReasons = this.batchEditForm.complianceReasons
+ //不合规
+ this.dataList[a].noCompliance = this.batchEditForm.noCompliance
+ //应对措施
+ this.dataList[a].countermeasures = this.batchEditForm.countermeasures
+ //完成时间
+ this.dataList[a].completionTime = this.batchEditForm.completionTime
+ //合规
+ this.dataList[a].zcComplianceReasons = this.batchEditForm.zcComplianceReasons
+ //不合规
+ this.dataList[a].zcNoCompliance = this.batchEditForm.zcNoCompliance
+ //应对措施
+ this.dataList[a].zcCountermeasures = this.batchEditForm.zcCountermeasures
+ //完成时间
+ this.dataList[a].zcCompletionTime = this.batchEditForm.zcCompletionTime
+ }else {
+ for (let i=0;i
0) {
+ //合规
+ this.batchEditForm.complianceReasons = ''
+ //不合规
+ this.batchEditForm.noCompliance = ''
+ //应对措施
+ this.batchEditForm.countermeasures = ''
+ //完成时间
+ this.batchEditForm.completionTime = ''
+ //合规
+ this.batchEditForm.zcComplianceReasons = ''
+ //不合规
+ this.batchEditForm.zcNoCompliance = ''
+ //应对措施
+ this.batchEditForm.zcCountermeasures = ''
+ //完成时间
+ this.batchEditForm.zcCompletionTime = ''
+ this.modalshowflag = true
+ } else {
+ this.$message.warning('请选择要编辑的数据')
+ }
+ },
// 点击查看
handlePreview(item) {
let routeUrl = this.$router.resolve({
@@ -525,7 +707,11 @@ export default {
},
//标准表格选择框改变
selectStandChange(data) {
- this.selectList = data;
+ this.selectList = [];
+ for (let i = 0; i < data.length; i++) {
+ this.selectList.push(data[i].id);
+ }
+
},
getTree() {
this.$http.get("SarInstitution/institution/institutionAndUser", {}, {}, res => {
@@ -605,6 +791,25 @@ export default {
height: calc(~'100% - 103px');
overflow: auto;
+ .tableTitle {
+ margin-bottom: 10px;
+ height: 30px;
+ line-height: 30px;
+ position: relative;
+ font-size: 13px;
+ font-weight: bold;
+
+ .tableButton {
+ position: absolute;
+ right: 0;
+ top: 0;
+ }
+
+ .accessStandardsAndRegulations {
+ height: 100%;
+ }
+ }
+
.accessStandardsAndRegulations {
height: 100%;
}
From 98c40803d83ff3e988e661ec961573811714aafa Mon Sep 17 00:00:00 2001
From: shenyanpei
Date: Fri, 27 Aug 2021 14:43:27 +0800
Subject: [PATCH 18/21] =?UTF-8?q?=E6=A0=87=E5=87=86=E8=A7=A3=E8=AF=BB?=
=?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=8B=86=E5=88=86=E5=86=85=E5=AE=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pages/creatProcess/bzjd/step1.vue | 1785 +++++++++--------
1 file changed, 909 insertions(+), 876 deletions(-)
diff --git a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue
index 9339d3260..fb0665afc 100644
--- a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue
+++ b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue
@@ -1,903 +1,936 @@
-
-
-
- 标准解读流程
- 申请人发起流程
-
-
-
-
-
-
- 基础信息
-
-
-
-
-
-
- 带入
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 拆分信息
-
-
- 批量编辑
-
-
+
+
+ 标准解读流程
+ 申请人发起流程
+
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+ 带入
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 拆分信息
+
+
+
+ 批量编辑
+
+
+
+ @selection-change="handleSelectionChange"
+ row-key="id">
+
+
+
+
+
+
+
+
+ 查看条款内容
+
+
+
+
+
+
+
+
+
+
+
数据获取中
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 流程发起人
+
+
+
+
+
+
+
+
+
+
+ 标准法规部部长
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+