| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <template>
- <!-- 上传 -->
- <el-dialog title="文件上传" :visible.sync="dialogVisible" width="40%">
- <el-form label-width="110px" class="zw-criterion">
- <el-form-item label="选择文件">
- <el-upload
- class="avatar-uploader"
- action="#"
- :show-file-list="false"
- :http-request="handlSuccess"
- :before-upload="beforeUpload"
- >
- <el-button icon="el-icon-plus" size="small" type="primary"
- >文件上传</el-button
- >
- </el-upload>
- </el-form-item>
- <el-form-item label="模块名">
- <DictSelection v-model="module" dictName="文件模块"></DictSelection>
- </el-form-item>
- <el-form-item label="">
- <div class="imgs-box">
- <p v-for="(item, index) in attaments" :key="index" class="imgs-p">
- <span> {{ item.name }}</span>
- <el-link @click="delFileList(index)" type="primary">删除</el-link>
- </p>
- </div>
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button size="small" @click="dialogVisible = false">关 闭</el-button>
- <el-button size="small" @click="upload" type="primary">上 传</el-button>
- </div>
- </el-dialog>
- </template>
- <script>
- import { uploadBatch } from '@/api/system/file/index.js';
- export default {
- //注册组件
- data () {
- return {
- showViewer: false, // 显示查看器
- dialogVisible: false,
- uploadShow: false,
- attaments: [], //上传文件
- module: '',
- file: ''
- };
- },
- created () {},
- methods: {
- open () {
- this.attaments = [];
- this.module = '';
- this.dialogVisible = true;
- },
- //删除附件
- delFileList (index) {
- this.attaments.splice(index, 1);
- },
- //上传限制
- beforeUpload (file) {
- const isLt10M = file.size / 1024 / 1024 < 10;
- if (!isLt10M) {
- this.$message.error('上传文件大小不能超过 10MB!');
- }
- return isLt10M;
- },
- //图片上传
- handlSuccess (param) {
- this.file = param.file;
- this.attaments.push(param.file);
- },
- // 文件上传
- async upload () {
- if (this.attaments.length == 0) {
- return this.$message.warning('文件不能为空!');
- }
- if (!this.module) {
- return this.$message.warning('模块名不能为空!');
- }
- await uploadBatch({
- module: this.module,
- multiPartFiles: this.attaments
- });
- this.$message.success('操作成功!');
- this.dialogVisible = false;
- this.$emit('success');
- }
- }
- };
- </script>
- <style lang="scss">
- .zw-table-header {
- float: right;
- }
- .imgs-box .imgs-p {
- height: 30px;
- background: #f0f3f3;
- line-height: 30px;
- width: 372px;
- margin-bottom: 5px;
- padding: 0 10px;
- display: flex;
- justify-content: space-between;
- }
- .zw-criterion-normal {
- padding: 20px 0 0 0;
- }
- .el-main {
- overflow: hidden;
- }
- </style>
|