123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <template>
- <el-upload class="hc-upload-border" drag :action="action" :headers="getTokenHeader()" :data="uploadData" :accept="accept" :file-list="fileListData" multiple :disabled="uploadDisabled"
- :on-preview="uploadPreview" :before-remove="delUploadData" :on-success="uploadSuccess" :on-exceed="uploadExceed" :on-error="uploadError" :before-upload="beforeUpload" :on-progress="uploadPreview" :on-remove="uploadRemove">
- <div class="hc-upload-loading" v-loading="uploadDisabled" element-loading-text="上传中...">
- <HcIcon name="backup" ui="text-5xl mt-4"/>
- <div class="el-upload__text">拖动文件到这里 或 <em>点击这里选择文件</em> 并上传</div>
- </div>
- <template #tip>
- <div class="el-upload__tip" style="font-size: 14px;">允许格式:jpg/png/pdf/excel/word, 文件大小 小于 60MB</div>
- </template>
- </el-upload>
- </template>
- <script setup>
- import {ref,watch,onMounted} from "vue";
- import {getTokenHeader} from '~src/api/request/header';
- import wbsApi from "~api/data-fill/wbs"
- import {isSize} from "vue-utils-plus"
- const props = defineProps({
- fileList: {
- type: Array,
- default: () => ([])
- },
- datas: {
- type: Object,
- default: () => ({})
- },
- })
- //变量
- const uploadData = ref(props.datas)
- const fileListData = ref(props.fileList);
- const action = '/api/blade-manager/exceltab/add-buss-file';
- const accept = 'image/png,image/jpg,image/jpeg,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel,application/pdf,.doc,.docx,application/msword';
- const uploadDisabled = ref(false)
- //监听
- watch(() => [
- props.fileList,
- props.datas,
- ], ([fileList, datas]) => {
- uploadData.value = datas
- fileListData.value = fileList
- })
- //渲染完成
- onMounted(()=> {
- beforeFileNum.value = 0
- finishFileNum.value = 0
- errorFileNum.value = 0
- })
- //事件
- const emit = defineEmits(['change'])
- //上传前
- const beforeFileNum = ref(0)
- const beforeUpload = async (file) => {
- if (isSize(file?.size,30)) {
- beforeFileNum.value ++;
- return true;
- } else {
- window?.$ElMessage?.warning('文件大小, 不能过60M!');
- return false;
- }
- }
- //超出限制时
- const uploadExceed = () => {
- window?.$ElMessage?.warning('请上传 jpg/png/pdf/excel/word 的文件,文件大小 不超过60M');
- }
- //上传中
- const uploadprogress = () => {
- uploadDisabled.value = true
- }
- //上传完成
- const finishFileNum = ref(0)
- const uploadSuccess = () => {
- finishFileNum.value ++;
- if (beforeFileNum.value === finishFileNum.value) {
- uploadDisabled.value = false
- emit('change', {type: 'success'})
- }
- }
- //上传失败
- const errorFileNum = ref(0)
- const uploadError = () => {
- errorFileNum.value ++;
- window?.$ElMessage?.error('上传失败');
- const num = finishFileNum.value + errorFileNum.value;
- if (beforeFileNum.value === num) {
- uploadDisabled.value = false
- emit('change', {type: 'success'})
- }
- }
- //预览
- const uploadPreview = ({url}) => {
- if (url) {
- window.open(url, '_blank')
- }
- }
- //删除文件
- const delUploadData = async ({id}) => {
- const {data} = await wbsApi.removeBussFile({ids: id})
- if(data && data.code === 200) {
- window.$ElMessage?.success('删除成功');
- return true
- } else {
- return false
- }
- }
- const uploadRemove = () => {
- if(fileListData.value.length <= 0) {
- emit('change', {type: 'del'})
- }
- }
- </script>
|