diff --git a/src/views/xgf/flow_audit/userInfo.vue b/src/views/xgf/flow_audit/userInfo.vue
index 7f497ec..7e60d14 100644
--- a/src/views/xgf/flow_audit/userInfo.vue
+++ b/src/views/xgf/flow_audit/userInfo.vue
@@ -201,23 +201,23 @@
-
+
{{ props.row.TERRITORIALITY_DEPARTMENT_NAME }}
-
+
{{ props.row.TERRITORIALITY_USER_NAME }}
-
+
不通过
通过
-
+
{{ props.row.TERRITORIALITY_OPINION }}
@@ -269,9 +269,9 @@
-
-
-
+
+
+
不通过
通过
@@ -279,7 +279,7 @@
-
+
不通过
通过
@@ -287,7 +287,7 @@
-
+
不通过
通过
@@ -341,6 +341,7 @@ export default {
},
methods: {
init(e) {
+ console.log(e)
this.visible = true
this.heirloom = JSON.parse(JSON.stringify(e))
this.getUserInfoById(this.heirloom)
diff --git a/src/views/xgf/flow_audit/users.vue b/src/views/xgf/flow_audit/users.vue
index 1b17f25..8587907 100644
--- a/src/views/xgf/flow_audit/users.vue
+++ b/src/views/xgf/flow_audit/users.vue
@@ -291,6 +291,12 @@ export default {
}
},
comfirm() {
+ for (let i = 0; i < this.userList.length; i++) {
+ if ((this.userList[i][this.pd.step] === 9 && this.userList[i].RESULT_STATUS === '1')) {
+ this.$message.error('还有人员未审批')
+ return
+ }
+ }
this.$confirm('确定提交审批吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',