zhanghua
2024-11-14 5d145825f6a13c1e321a717bf371cdfacbda30ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<template>
  <div class="upload-file">
    <el-upload
      multiple
      :action="uploadFileUrl"
      :on-success="handleUploadSuccess"
      :limit="limit"
      :on-progress="handleUploadProgress"
      :show-file-list="true"
      :headers="headers"
      class="upload-file-uploader"
      ref="fileUploadRef"
      :auto-upload="false"
      :on-exceed="handleExceed"
      :before-upload="handleBeforeUpload"
    >
      <!-- 上传按钮 -->
      <el-button type="primary">选取文件</el-button>
      <!--      <el-progress :percentage="downloadProgress" />-->
    </el-upload>
    <div class="el-upload__tip">
      <span style="color:red;">不支持上传.py、.js、.bat、.vbs、.cmd、.exe等文件</span>
    </div>
    <!-- 上传提示 -->
    <div class="el-upload__tip" v-if="showTip">
      <span>上传文件大小不能超过200MB</span>
    </div>
  </div>
</template>
 
<script setup lang="ts">
import { listByIds, delOss } from '@/api/system/oss';
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],
  // 数量限制
  limit: propTypes.number.def(1),
  // 大小限制(MB)
  fileSize: propTypes.number.def(200),
  // 文件类型, 例如['png', 'jpg', 'jpeg']
  fileType: propTypes.array.def(['doc', 'docx', 'xlsx', 'xls', 'ppt', 'txt', 'pdf', 'mp3', 'mp4', 'mov', 'png', 'jpg', 'jpeg', 'zip', 'rar', '7z']),
  // 是否显示提示
  isShowTip: propTypes.bool.def(true)
});
 
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const emit = defineEmits(['update:modelValue', 'closePopup', 'openPopup']);
const number = ref(0);
const uploadList = ref<any[]>([]);
//互联网端
// const baseUrl = import.meta.env.VITE_APP_BASE_API;
// const uploadFileUrl = ref('http://10.248.255.130:18080' + "/resource/oss/upload"); // 上传文件服务器地址
// 内网端
const baseUrl = import.meta.env.VITE_APP_BASE_API;
const uploadFileUrl = ref(baseUrl + '/resource/oss/upload'); // 上传文件服务器地址
const headers = ref(globalHeaders());
 
const fileList = ref<any[]>([]);
const showTip = computed(() => props.isShowTip && props.fileSize);
 
const fileUploadRef = ref<ElUploadInstance>();
const downloadProgress = ref(0);
// watch(() => props.modelValue, async val => {
//   console.log(val,props.modelValue);
//     if (val) {
//         let temp = 1;
//         // 首先将值转为数组
//         let list = [];
//         if (Array.isArray(val)) {
//             list = val;
//         } else {
//             const res = await listByIds(val as string)
//             list = res.data.map((oss) => {
//                 const data = { name: oss.originalName, url: oss.url, ossId: oss.ossId };
//                 return data;
//             });
//         }
//         // 然后将数组转为对象数组
//         fileList.value = list.map(item => {
//             item = { name: item.name, url: item.url, ossId: item.ossId };
//             item.uid = item.uid || new Date().getTime() + temp++;
//             return item;
//         });
//     } else {
//         fileList.value = [];
//         return [];
//     }
// }, { deep: true, immediate: true });
// const fileUploadRef = ref<UploadInstance>()
 
const handleCilck = async () => {
  console.log('子组件方法');
  await fileUploadRef.value!.submit();
 
  return number.value;
  // let val = props.modelValue
  // if (val) {
  //   let temp = 1;
  //   // 首先将值转为数组
  //   let list = [];
  //   if (Array.isArray(val)) {
  //     list = val;
  //   } else {
  //     const res = await listByIds(val as string)
  //     list = res.data.map((oss) => {
  //       const data = { name: oss.originalName, url: oss.url, ossId: oss.ossId };
  //       return data;
  //     });
  //   }
  //   // 然后将数组转为对象数组
  //   fileList.value = list.map(item => {
  //     item = { name: item.name, url: item.url, ossId: item.ossId };
  //     item.uid = item.uid || new Date().getTime() + temp++;
  //     return item;
  //   });
  // } else {
  //   fileList.value = [];
  //   return [];
  // }
};
// 第二部:暴露方法
defineExpose({
  handleCilck
});
// 上传前校检格式和大小
const handleBeforeUpload = (file: any) => {
  // 校检文件类型
  if (props.fileType.length) {
    const fileName = file.name.split('.');
    const fileExt = fileName[fileName.length - 1];
    const isTypeOk = props.fileType.indexOf(fileExt) >= 0;
    if (!isTypeOk) {
      proxy?.$modal.msgError(`文件格式不正确, 请上传${props.fileType.join('/')}格式文件!`);
      return false;
    }
  }
  // 校检文件大小
  if (props.fileSize) {
    const isLt = file.size / 1024 / 1024 < props.fileSize;
    if (!isLt) {
      proxy?.$modal.msgError(`上传文件大小不能超过 ${props.fileSize} MB!`);
      return false;
    }
  }
  number.value++;
  return true;
};
 
// 文件个数超出
const handleExceed = () => {
  proxy?.$modal.msgError(`上传文件数量不能超过 ${props.limit} 个!`);
};
 
// 上传失败
const handleUploadError = () => {
  proxy?.$modal.msgError('上传文件失败');
};
const debounce = (fn: Function, delay = 1500) => {
  let timer: number | null = null;
  return (...args: any[]) => {
    if (timer) {
      clearTimeout(timer);
    }
    timer = setTimeout(() => {
      fn(...args);
    }, delay);
  };
};
const handleUploadProgress = (e: any) => {
  console.log('handleUploadProgress?');
  // downloadProgress.value = downloadProgress.value + 50
  // emit('closePopup','123123');
  // emit('openPopup','123123');
};
// 上传成功回调
const handleUploadSuccess = (res: any, file: UploadFile) => {
  console.log(res, 'resresres');
  if (res.code === 200) {
    proxy?.$modal.msgSuccess('上传文件成功');
    setTimeout(() => {
      emit('closePopup', res);
    }, 1000);
    console.log('调用父组件', res);
    fileUploadRef.value!.clearFiles();
    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.msgError(res.msg);
    fileUploadRef.value?.handleRemove(file);
    uploadedSuccessfully();
  }
};
 
// 删除文件
const handleDelete = (index: number) => {
  let ossId = fileList.value[index].ossId;
  delOss(ossId);
  fileList.value.splice(index, 1);
  emit('update:modelValue', listToString(fileList.value));
};
 
// 上传结束处理
const uploadedSuccessfully = () => {
  if (number.value > 0 && uploadList.value.length === number.value) {
    fileList.value = fileList.value.filter((f) => f.url !== undefined).concat(uploadList.value);
    uploadList.value = [];
    number.value = 0;
    emit('update:modelValue', listToString(fileList.value));
    proxy?.$modal.closeLoading();
  }
};
 
// 获取文件名称
const getFileName = (name: string) => {
  // 如果是url那么取最后的名字 如果不是直接返回
  if (name.lastIndexOf('/') > -1) {
    return name.slice(name.lastIndexOf('/') + 1);
  } else {
    return name;
  }
};
 
// 对象转成指定字符串分隔
const listToString = (list: any[], separator?: string) => {
  let strs = '';
  separator = separator || ',';
  list.forEach((item) => {
    if (item.ossId) {
      strs += item.ossId + separator;
    }
  });
  return strs != '' ? strs.substring(0, strs.length - 1) : '';
};
</script>
 
<style scoped lang="scss">
.upload-file-uploader {
  margin-bottom: 5px;
}
 
.upload-file-list .el-upload-list__item {
  border: 1px solid #e4e7ed;
  line-height: 2;
  margin-bottom: 10px;
  position: relative;
}
 
.upload-file-list .ele-upload-list__item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;
}
 
.ele-upload-list__item-content-action .el-link {
  margin-right: 10px;
}
</style>