123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <template>
- <div>
- <div class="file-area">
- <span class="label-text">{{ labelText }}</span>
- <div class="upload-box">
- <el-upload
- ref="upload"
- class="file-uploader"
- action="no"
- :accept="acceptFileType"
- :multiple="true"
- :show-file-list="false"
- :auto-upload="false"
- :on-change="onFileChange"
- >
- <el-button>选取{{ labelText }}文件</el-button>
- </el-upload>
- <el-button size="small" type="primary" @click="uploadFiles">上传</el-button>
- </div>
- </div>
- <el-divider />
- <div class="upload-tip">{{ uploadTip }}</div>
- <ul slot="file-list" class="file-list">
- <li v-for="(file, i) in file_list" :key="i">
- <div class="file-name">
- <span>
- <SvgIcon :icon-class="iconClass" size="12" />
- <span>{{ file.file_name ?? file.name }}</span>
- <!-- <span>({{ file.size }})</span> -->
- </span>
- <span v-show="file.progress > 0 && file.progress < 100"> {{ file.progress }}% </span>
- <span v-show="file.file_id"> 完成 </span>
- </div>
- <SvgIcon icon-class="delete-black" size="12" @click="removeFile(file, i)" />
- <SvgIcon v-show="moduleData.type == 'picture'" icon-class="mark" size="12" @click="viewDialog(file)" />
- </li>
- </ul>
- <FillDescribe :file-data="curFile" :visible.sync="visible" @fillDescribeToFile="fillDescribeToFile" />
- </div>
- </template>
- <script>
- import { fileUpload } from '@/api/app';
- import { conversionSize } from '@/utils/common';
- import FillDescribe from '../../common/FillDescribe';
- export default {
- name: 'UploadFile',
- components: {
- FillDescribe,
- },
- props: {
- // 组件标签
- labelText: {
- type: String,
- default: '',
- },
- // 上传支持的文件格式
- acceptFileType: {
- type: String,
- default: '',
- },
- // 提示语
- uploadTip: {
- type: String,
- default: '',
- },
- // 图标
- iconClass: {
- type: String,
- default: '',
- },
- moduleData: {
- type: Object,
- default: () => ({}),
- },
- },
- data() {
- return {
- curFile: null,
- conversionSize,
- file_id_list: [],
- file_list: [],
- visible: false,
- };
- },
- computed: {},
- watch: {},
- methods: {
- // 显示自定义样式文件列表
- onFileChange(file, fileList) {
- this.afterSelectFile(file);
- console.log(123);
- fileList.forEach((file) => {
- if (!file.progress || file.progress <= 0) file.progress = 0;
- if (!file.title) file.title = '';
- if (!file.describe) file.describe = '';
- });
- this.file_list = fileList;
- },
- // 删除文件
- removeFile(file, i) {
- this.$confirm('是否删除当前文件?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning',
- })
- .then(() => {
- this.$refs.upload.handleRemove(file);
- if (this.file_list[i].file_id) {
- this.file_list.splice(i, 1);
- this.file_id_list.splice(i, 1);
- }
- })
- .catch(() => {});
- },
- // 文件校验
- afterSelectFile(file) {
- const fileName = file.name;
- console.log(this.moduleData.single_size);
- let singleSizeTip = `文件[${fileName}]大小超过 ${conversionSize(this.moduleData.single_size)},被移除!`;
- if (file.size > this.moduleData.single_size * 1024 * 1024) {
- this.$message.error(singleSizeTip);
- this.$refs.upload.handleRemove(file);
- return false;
- }
- const suffix = fileName.slice(fileName.lastIndexOf('.') + 1, fileName.length).toLowerCase();
- let fileType = [];
- let typeTip = '';
- if (this.moduleData.type === 'audio') {
- fileType = ['mp3', 'acc', 'wma'];
- typeTip = '音频文件只能是 mp3、acc、wma 格式!';
- } else if (this.moduleData.type === 'picture') {
- fileType = ['jpg', 'png', 'jpeg'];
- typeTip = '图片文件只能是 jpg、png、jpeg 格式!';
- }
- const isNeedType = fileType.includes(suffix);
- if (!isNeedType) {
- typeTip += `,[${fileName}]被移除!`;
- this.$message.error(typeTip);
- this.$refs.upload.handleRemove(file);
- return false;
- }
- },
- // 上传文件
- uploadFiles() {
- const files = (this.file_list || []).filter((file) => file.uid);
- if (files.length <= 0) {
- this.$message.error('没有需要上传的文件!');
- return false;
- }
- const totalSize = files.reduce((sum, cur) => sum + Number(cur.size || 0), 0);
- if (totalSize > this.moduleData.total_size * 1024 * 1024) {
- this.$message.error(`文件总大小不能超过${conversionSize(this.moduleData.total_size)}`);
- return false;
- }
- files.forEach((file) => {
- let form = new FormData();
- form.append(file.name, file.raw, file.name);
- fileUpload('Mid', form, {
- handleUploadProgress: (progressEvent) => {
- let per = Number((progressEvent.progress * 100).toFixed(2) || 0);
- let en = this.file_list.find((p) => p.uid === file.uid);
- if (en) {
- en.progress = per;
- this.$forceUpdate();
- }
- },
- }).then(({ file_info_list }) => {
- let file_index = this.file_list.findIndex((p) => p.uid === file.uid);
- if (file_index > -1) {
- this.file_list[file_index] = file_info_list[0];
- this.file_id_list.push(file_info_list[0].file_id);
- }
- });
- });
- },
- // 显示弹窗
- viewDialog(file) {
- this.visible = true;
- this.curFile = file;
- },
- // 给文件加介绍
- fillDescribeToFile(file) {
- let en = this.file_list.find((p) => p.uid === file.uid);
- if (en) {
- Object.assign(en, file);
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .module-content {
- .file-area {
- display: flex;
- column-gap: 16px;
- align-items: center;
- .label-text {
- font-size: 14px;
- color: $font-light-color;
- }
- div {
- flex: 1;
- }
- }
- .el-divider {
- margin: 16px 0;
- }
- .upload-tip {
- margin-bottom: 16px;
- font-size: 12px;
- color: #86909c;
- }
- .upload-box {
- display: flex;
- justify-content: space-between;
- .file-uploader {
- flex: 1;
- :deep .el-upload {
- &--text {
- width: 100%;
- background-color: $fill-color;
- border-radius: 2px 0 0 2px;
- .el-button {
- width: 100%;
- color: #86909c;
- text-align: left;
- }
- }
- }
- }
- .el-button {
- border-radius: 0 2px 2px 0;
- }
- }
- .file-list {
- display: flex;
- flex-direction: column;
- row-gap: 16px;
- li {
- display: flex;
- column-gap: 12px;
- align-items: center;
- .file-name {
- display: flex;
- column-gap: 14px;
- align-items: center;
- justify-content: space-between;
- max-width: 360px;
- padding: 8px 12px;
- font-size: 14px;
- color: #1d2129;
- background-color: #f7f8fa;
- span {
- display: flex;
- column-gap: 14px;
- align-items: center;
- }
- }
- .svg-icon {
- cursor: pointer;
- }
- }
- }
- }
- </style>
|