-
-
- 基础信息
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 带入
-
-
+
+ 基础信息
+ 人员信息
+
+
+ 拆分信息
+
+
+
+ @selection-change="handleSelectionChange"
+ row-key="id">
+
+
+
+
+
+
+
+
+ 查看条款内容
+
+
+
+
+
+
+
+
+
+
+ 数据获取中
+
+
+
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 带入
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 流程发起人
+
+
+
+
+ 标准法规部部长
+
+
+
+
+
+
填写信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+ 查询
+
+ 清空
+
+
+
+
+
+
+
+ prop="showNumber"
+ label="标准号/政策号"
+ width="170"
+ align="center">
+
+
+
+ prop="standName"
+ label="标准名称/政策名称"
+ show-overflow-tooltip
+ align="center">
+
+
+
-
- 查看条款内容
-
+ prop="fileTypeShow"
+ label="文本状态"
+ align="center">
-
-
-
-
+ prop="fileName"
+ label="文件名称"
+ show-overflow-tooltip
+ align="center">
-
- 数据获取中
-
-
-
-
+
+
+
-
-
-
-
-
+ 数据加载中……
+
-
-
-
-
+
+
+
+
+
diff --git a/src/pages/processCenter/pages/creatProcess/xmpg2/step6.vue b/src/pages/processCenter/pages/creatProcess/xmpg2/step6.vue
index f5de1e3ca..8401257ba 100644
--- a/src/pages/processCenter/pages/creatProcess/xmpg2/step6.vue
+++ b/src/pages/processCenter/pages/creatProcess/xmpg2/step6.vue
@@ -42,6 +42,12 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 流程发起人
-
-
-
-
- 标准法规部部长
-
-
-
-
-
-
+
+
+
-
-
-
-
+
+
-
-
-
-
-
-
-
- 查询
- 清空
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
+
+
- 数据加载中……
-
+
+
+
+
+ {{ formatIssueDate(scope.row.issueTime) }}
+
+
+
+
+ {{ scope.row.XCXSSRQ ? scope.row.XCXSSRQ.substring(0, 10) : '-' }}
+
+
+
+
+ {{ scope.row.ZCCSSRQ ? scope.row.ZCCSSRQ.substring(0, 10) : '-' }}
+
+
+
+
+ {{ textStatusMap[scope.row.textStatus] }}
+
+
+
-
-
+
+
+
+
+
- {{ scope.row.standSortShow }} {{
+ scope.row.standNumber
+ }}-{{ scope.row.standYear }}
- {{ scope.row.standSortShow }} {{ scope.row.standNumber }}
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ formatIssueDate(scope.row.issueTime) }}
-
-
-
-
- {{ scope.row.XCXSSRQ ? scope.row.XCXSSRQ.substring(0,10) : '-' }}
-
-
-
-
- {{ scope.row.ZCCSSRQ ? scope.row.ZCCSSRQ.substring(0,10) : '-' }}
-
-
-
-
- {{ textStatusMap[scope.row.textStatus] }}
-
-
-
-
- {{ scope.row.standSortShow }} {{ scope.row.standNumber }}-{{ scope.row.standYear }}
- {{ scope.row.standSortShow }} {{ scope.row.standNumber }}
-
-
- 关闭
-
-
+ 关闭
+
+
+
+
+ 批量编辑
+
+
+
@@ -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
+
+ 在研产品
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+在产产品
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +