|
@@ -386,10 +386,12 @@ export default {
|
|
|
// 文件上传选择
|
|
|
handleSelect(file, list) {
|
|
|
this.fileList = list;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs["upload"].submit();
|
|
|
+ })
|
|
|
},
|
|
|
// 文件移除
|
|
|
handleRemove(file, fileList) {
|
|
|
- console.log(file, fileList);
|
|
|
},
|
|
|
// 文件上传成功
|
|
|
handleSuccess(response, file, fileList) {
|
|
@@ -401,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) => {
|
|
@@ -416,19 +422,22 @@ export default {
|
|
|
this.getList();
|
|
|
});
|
|
|
}
|
|
|
+ resolve()
|
|
|
+ }else {
|
|
|
+ reject()
|
|
|
}
|
|
|
});
|
|
|
+ })
|
|
|
+
|
|
|
},
|
|
|
- handlePreview(file) {
|
|
|
- console.log(file);
|
|
|
- },
|
|
|
+ // handlePreview(file) {
|
|
|
+ // },
|
|
|
// 文件上传之前
|
|
|
handleBeforeUpload(file) {
|
|
|
// 截取上传文件的后缀名
|
|
|
let fileType = file.name.substring(file.name.lastIndexOf(".") + 1);
|
|
|
// 判断文件名的类型,允许多种就判断多个
|
|
|
if (fileType == "jpg" || fileType == "png") {
|
|
|
- console.log(file, "jpg || png");
|
|
|
} else {
|
|
|
this.$message.error("文件类型必须为 jpg / png 格式");
|
|
|
// 返回false 就不会执行上传操作了
|
|
@@ -532,7 +541,8 @@ export default {
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm: function () {
|
|
|
- this.$refs["upload"].submit();
|
|
|
+
|
|
|
+ this.submitData()
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|