Browse Source

页面修改

liusungtsun 1 year ago
parent
commit
a5082bfa34
2 changed files with 20 additions and 7 deletions
  1. 3 3
      src/views/norm/quotaBonded.vue
  2. 17 4
      src/views/system/dept/index.vue

+ 3 - 3
src/views/norm/quotaBonded.vue

@@ -231,10 +231,10 @@
         </el-tab-pane>
 
       </el-tabs>
-
       <div slot="footer" class="dialog-footer">
-        <el-button type="primary" v-if="!isAppoval" @click="submitForm">确 定</el-button>
-        <el-button type="primary" v-if="user.roleId == 10" @click="submitForm">确 定</el-button>
+       
+        <el-button type="primary" v-if="(!isAppoval) || (user.roleId == 10)" @click="submitForm">确 定</el-button>
+        <!-- <el-button type="primary" v-if="user.roleId == 10" @click="submitForm">确 定</el-button> -->
 
         <el-button @click="cancel">取 消</el-button>
       </div>

+ 17 - 4
src/views/system/dept/index.vue

@@ -386,6 +386,9 @@ export default {
     // 文件上传选择
     handleSelect(file, list) {
       this.fileList = list;
+      this.$nextTick(() => {
+        this.$refs["upload"].submit();
+      })
     },
     // 文件移除
     handleRemove(file, fileList) {
@@ -400,7 +403,11 @@ export default {
       });
       this.form.sinfo03 = imgList.toString();
 
-      this.$refs["form"].validate((valid) => {
+      // this.submitData()
+    },
+    submitData() {
+      return new Promise((resolve, reject) => {
+        this.$refs["form"].validate((valid) => {
         if (valid) {
           if (this.form.deptId != undefined) {
             updateDept(this.form).then((response) => {
@@ -415,11 +422,16 @@ export default {
               this.getList();
             });
           }
+          resolve()
+        }else {
+          reject()
         }
       });
+      })
+      
     },
-    handlePreview(file) {
-    },
+    // handlePreview(file) {
+    // },
     // 文件上传之前
     handleBeforeUpload(file) {
       // 截取上传文件的后缀名
@@ -529,7 +541,8 @@ export default {
     },
     /** 提交按钮 */
     submitForm: function () {
-      this.$refs["upload"].submit();
+        
+      this.submitData()
     },
     /** 删除按钮操作 */
     handleDelete(row) {