|
@@ -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) {
|