Commit 98c8e08b by caoyanzhi

update: 修复会员批量导入bug

parent 527549b6
......@@ -166,6 +166,7 @@ export default {
},
// 确认导入
importTable() {
if (this.load) return;
this.$refs.formByImport.validateField("importValue", (err) => {
if (!err) {
console.log(this.formByImport.fileList);
......@@ -189,7 +190,9 @@ export default {
this.onDialogImportClosed();
}
}).finally(()=>{
this.load = false;
setTimeout(() => {
this.load = false;
}, 50)
})
} else {
checkFalse("请上传文件");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment