odc.xiaohui
2023-12-07 3b5bbe49ca6f123494e9d350aad6ce0ea9f8fcaa
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,21 +163,26 @@
}
// 上传成功回调
const handleUploadSuccess = (res: any, file: UploadFile) => {
  console.log(res,'resresres');
    if (res.code === 200) {
      emit('closePopup',res.data)
      proxy?.$modal.msgSuccess("上传文件成功");
      emit('closePopup',res)
      console.log('调用父组件',res);
      fileUploadRef.value!.clearFiles()
      downloadLoadingInstance.close();
        uploadList.value.push({ name: res.data.fileName, url: res.data.url, ossId: res.data.ossId });
        uploadedSuccessfully();
        // 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();
    }
}