基础信息
人员信息
+
基础信息
@@ -17,7 +17,7 @@
@@ -109,7 +109,7 @@
@@ -536,16 +536,15 @@ export default {
},
//提交事件
handleSubmit() {
- console.log(this.roleForm)
- console.log(this.listForm);
- // var json = this.listForm
var json = Object.assign(this.listForm, this.roleForm)
json.prcCreateUser = this.$store.getters.userInfo.userId;
json.prcCreateUserName = this.$store.getters.userInfo.account;
json.standId = this.listForm.standId;
- this.$refs["xmpgForm"].validate((valid) => {
+ json.XCXSSRQ = this.sarAccessListDatas[0].attrInfoMap.XCXSSRQ
+ json.ZCCSSRQ = this.sarAccessListDatas[0].attrInfoMap.ZCCSSRQ
+ this.$refs['listForm'].validate((valid) => {
if (valid) {
- this.$refs["Form"].validate((valid) => {
+ this.$refs['roleForm'].validate((valid) => {
if (valid) {
this.$http.get("lawss/activiti/startProcess", { type: "5" }, {
_this: this
@@ -652,7 +651,6 @@ export default {
}, {
_this: this
}, res => {
- console.log(res.data);
this.productData = res.data;
this.totalNo = res.data.total;
}, e => {
diff --git a/src/pages/processCenter/pages/creatProcess/xmpg/step2.vue b/src/pages/processCenter/pages/creatProcess/xmpg/step2.vue
index cc668d048..d9e41a3e0 100644
--- a/src/pages/processCenter/pages/creatProcess/xmpg/step2.vue
+++ b/src/pages/processCenter/pages/creatProcess/xmpg/step2.vue
@@ -9,7 +9,7 @@
-
基础信息
审批历史
+
基础信息
@@ -110,7 +110,7 @@
-
+
基础信息
-
审批历史
+
基础信息
@@ -98,12 +98,12 @@
label="条款名称">
@@ -155,7 +155,7 @@
-
+
基础信息
-
审批历史
+
基础信息
@@ -103,13 +103,13 @@
label="条款名称">
@@ -264,7 +264,7 @@
-
+
基础信息
-
审批历史
+
基础信息
@@ -102,6 +102,18 @@
align="center"
label="条款名称">
+
+
+
+
-
+
{
const URL = `sarLawsDetailedList/sar-laws-detailed-list/deleteListAll?idList=${this.selectedList.join(',')}`
this.$http.postDelete(URL, {}, res => {
@@ -317,7 +316,8 @@ export default {
}, e => {
});
}).catch(() => {
- });
+
+ })
}
},
// 表格选择框
diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listOther.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listOther.vue
index 9ab5e43c8..2bcab6947 100644
--- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listOther.vue
+++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listOther.vue
@@ -300,31 +300,31 @@ export default {
name: "OtherAddEit"
});
},
- // 删除
+ //批量删除
deleteSarAccess(flag, id) {
- if (flag === "delOne") {
+ if (flag === 'delOne') {
this.selectedList = [];
this.selectedList[0] = id;
}
if (this.selectedList.length === 0) {
- this.$message.warning("请选择要删除的数据");
+ this.$message.warning('请选择要删除的数据')
} else {
- this.$confirm("确认删除这些数据?", "提示", {
- confirmButtonText: "确认",
- confirmButtonClass: "common-button-primary",
- cancelButtonText: "取消",
- type: "warning"
+ this.$confirm('确定删除这些数据?', '提示', {
+ confirmButtonText: '确定',
+ confirmButtonClass: 'common-button-primary',
+ cancelButtonText: '取消',
+ type: 'warning',
}).then(() => {
- const URL = `sarLawsDetailedList/sar-laws-detailed-list/deleteListAll?idList=${this.selectedList.join(",")}`;
+ const URL = `sarLawsDetailedList/sar-laws-detailed-list/deleteListAll?idList=${this.selectedList.join(',')}`
this.$http.postDelete(URL, {}, res => {
this.searchSarAccess();
this.selectedList = [];
- this.$message.success("删除成功");
+ this.$message.success('删除成功')
}, e => {
});
}).catch(() => {
- });
+ })
}
},
// 表格选择框
diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listProject.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listProject.vue
index bc2abd6a1..34ac7c354 100644
--- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listProject.vue
+++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/page/listProject.vue
@@ -309,7 +309,7 @@ export default {
this.selectedList = [];
this.selectedList[0] = id;
}
- if (this.selectedList === 0) {
+ if (this.selectedList.length === 0) {
this.$message.warning('请选择要删除的数据')
} else {
this.$confirm('确定删除这些数据?', '提示', {
@@ -329,7 +329,6 @@ export default {
})
}
-
},
// 表格选择框
selectOne(data) {