Browse Source

默认值加判断

zzs 2 months ago
parent
commit
857f14a895
1 changed files with 8 additions and 2 deletions
  1. 8 2
      ruoyi-ui/src/views/contract/new/components/CompContract.vue

+ 8 - 2
ruoyi-ui/src/views/contract/new/components/CompContract.vue

@@ -229,8 +229,14 @@ export default {
       this.dialog.loading = true;
       const formData = Object.assign({}, this.dialog.form);
       formData.examine = examine;
-      formData.examineOption = this.dialog.form.examineOption || "通过";
-      formData.fOption = this.dialog.form.fOption || "通过";
+      if (examine == 2 && checkRole(['centerAdjunct'])) {
+        formData.examineOption = this.dialog.form.examineOption || "通过";
+      }
+      if (examine == 3 && checkRole(['commander'])) {
+        formData.fOption = this.dialog.form.fOption || "通过";
+      }
+
+
       updateContract(formData)
         .then((res) => {
           this.$message.success("通过成功");