qirong
2023-12-07 5c48422b1117f6b466bc288b7ac5ace7d3f24516
src/components/FileUpload/index.vue
@@ -29,6 +29,7 @@
import { propTypes } from '@/utils/propTypes';
import { globalHeaders } from "@/utils/request";
import { LoadingInstance } from 'element-plus/es/components/loading/src/loading';
import router from "@/router";
let downloadLoadingInstance: LoadingInstance;
const props = defineProps({
    modelValue: [String, Object, Array],
@@ -162,7 +163,9 @@
}
// 上传成功回调
const handleUploadSuccess = (res: any, file: UploadFile) => {
  console.log(res,'resresres');
    if (res.code === 200) {
      proxy?.$modal.msgSuccess("上传文件成功");
      emit('closePopup',res.data)
      console.log('调用父组件',res);
@@ -170,13 +173,16 @@
      downloadLoadingInstance.close();
        uploadList.value.push({ name: res.data.fileName, url: res.data.url, ossId: res.data.ossId });
        uploadedSuccessfully();
    }else if (res.code == 401) {
        location.reload()
    } else {
        number.value--;
        proxy?.$modal.closeLoading();
        // proxy?.$modal.closeLoading();
        proxy?.$modal.msgError(res.msg);
        fileUploadRef.value?.handleRemove(file);
        uploadedSuccessfully();
      downloadLoadingInstance.close();
    }
}