@@ -309,7 +309,6 @@ export default {
// 上传结束处理
uploadedSuccessfully() {
if (this.number > 0 && this.uploadList.length === this.number) {
- debugger
this.fileList = this.fileList.concat(this.uploadList);
this.uploadList = [];
this.number = 0;
@@ -197,7 +197,6 @@ export function download(url, params, filename, config) {
responseType: 'blob',
...config
}).then(async (data) => {
const isBlob = blobValidate(data);
if (isBlob) {
const blob = new Blob([data])
@@ -509,7 +509,6 @@ export default {
methods: {
onOrgSelect(node) {
this.form.orgPath = node.path;
- debugger;
this.form.orgName = node.name;
},
// 文件上传中处理