123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423 |
- <template>
- <div>
- <el-upload
- name="file"
- :class="['uploader', uid_]"
- :action="baseURL + 'common/upload'"
- :multiple="false"
- :accept="accept"
- :show-file-list="false"
- :on-success="uploadSuccess"
- :before-upload="beforeUpload"
- :headers="myHeaders"
- />
- <div class="images" v-if="modType === 'view' || modType === 'text'">
- <div v-for="(item, index) in files" :key="index" class="item">
- <div v-if="item.url" class="img">
- <el-image
- v-if="checkFileType(item.url) == 'image'"
- ref="img"
- :src="$showImgUrl(item.url)"
- :preview-src-list="previewImages"
- style="width: 120px; height: 120px"
- fit="cover"
- />
- <el-image v-else ref="img" :src="$showImgUrl(item.url)" style="width: 120px; height: 120px" fit="cover">
- <div slot="error" class="image-slot">
- <img v-if="checkFileType(item.url) == 'word'" class="file" src="@/assets/common/word.png" />
- <img v-if="checkFileType(item.url) == 'excel'" class="file" src="@/assets/common/excel.png" />
- <img v-if="checkFileType(item.url) == 'ppt'" class="file" src="@/assets/common/ppt.png" />
- <img v-if="checkFileType(item.url) == 'pdf'" class="file" src="@/assets/common/pdf.png" />
- <img v-if="checkFileType(item.url) == 'file'" class="file" src="@/assets/common/zip.jpeg" />
- <img v-if="checkFileType(item.url) == 'video'" class="file" src="@/assets/common/video.jpeg" />
- </div>
- </el-image>
- <div v-if="isEdit || checkFileType(item.url) == 'image'" class="mask">
- <i v-if="checkFileType(item.url) == 'image'" class="el-icon-zoom-in" @click="previewImage(item.url)" />
- <i v-if="isEdit && isUpdate" class="el-icon-upload2" @click="uploadImage(item.url)" />
- <i v-if="isEdit" class="el-icon-delete" @click="deleteImage(item.url)" />
- </div>
- </div>
- <div style="display: flex; justify-content: space-around">
- <span v-if="showName">{{ item.name }}</span>
- <!-- <el-link v-if="viewOnline && checkFileType(item.url) != 'file'" @click="getBase64(item.url)" type="primary"
- >查看</el-link
- > -->
- <el-link v-if="download" @click="openNew(item.url)" type="primary">查看</el-link>
- </div>
- </div>
- <template v-if="isEdit">
- <div v-if="limit">
- <div v-if="limit !== files.length" class="add" @click="uploadImage()">
- <div v-if="modType === 'text'">
- <div class="upload_text">上传</div>
- </div>
- <i v-else class="el-icon-plus" />
- </div>
- </div>
- <div v-else>
- <div v-if="multiple || (!multiple && files.length < 1)" class="add" @click="uploadImage()">
- <i class="el-icon-plus" />
- </div>
- </div>
- </template>
- </div>
- <div v-if="modType === 'btn'">
- <el-button size="mini" type="primary" @click="uploadImage()">上传</el-button>
- </div>
- </div>
- </template>
- <script>
- import { getOssConfig } from '@/api/common'
- import { findElem } from '@/utils/util'
- import { getToken } from '@/utils/auth'
- export default {
- name: 'FileUpload',
- props: {
- modType: {
- type: String,
- default: 'view'
- },
- uid: {
- type: String,
- default: ''
- },
- // 最大上传数量
- limit: {
- type: Number,
- default: 1
- },
- // 接受上传的文件列表
- fileList: {
- type: Array,
- default: () => []
- },
- // 接受上传的文件类型
- fileType: {
- type: Array,
- default: () => ['image', 'word', 'excel', 'ppt', 'pdf', 'file', 'video']
- },
- // 是否支持多选文件
- multiple: {
- type: Boolean,
- default: false
- },
- startRestricting: {
- type: Boolean,
- default: false
- },
- restrictFilename: {
- type: Array,
- default: () => {
- return []
- }
- },
- isEdit: {
- type: Boolean,
- default: true
- },
- isUpdate: {
- type: Boolean,
- default: true
- },
- viewOnline: {
- type: Boolean,
- default: true
- },
- download: {
- type: Boolean,
- default: true
- },
- showName: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {
- uid_: this.uid || 'id_' + new Date().getTime(),
- myHeaders: { 'x-token': getToken() },
- baseURL: process.env.VUE_APP_BASE_API,
- imageURL: this.$imageUrl,
- oss_url: '',
- dataObj: {},
- uploadImageUrl: '',
- // waitUploadList: [],
- fileName: '',
- files: this.fileList
- }
- },
- computed: {
- isShowFileList: {
- get: function () {
- if (this.files.length > 0 && this.files[0].url) {
- return true
- } else {
- return false
- }
- },
- set: function (newValue) {}
- },
- accept() {
- const imageList = ['.jpg', '.jpeg', '.png']
- const videoList = ['.mp4']
- const wordList = ['.doc', '.docx', '.dot', '.wps', '.wpt']
- const excelList = ['.xls', '.xlsx', '.xlt', '.et', '.ett']
- const pptList = ['.ppt', '.pptx', '.dps', '.dpt', '.pot', '.pps']
- const pdfList = ['.pdf']
- const fileList = ['.zip', '.rar', '.gz', '.apk']
- const zip = ['.zip']
- let whiteList = []
- this.fileType.includes('image') && (whiteList = whiteList.concat(imageList))
- this.fileType.includes('video') && (whiteList = whiteList.concat(videoList))
- this.fileType.includes('word') && (whiteList = whiteList.concat(wordList))
- this.fileType.includes('excel') && (whiteList = whiteList.concat(excelList))
- this.fileType.includes('ppt') && (whiteList = whiteList.concat(pptList))
- this.fileType.includes('pdf') && (whiteList = whiteList.concat(pdfList))
- this.fileType.includes('file') && (whiteList = whiteList.concat(fileList))
- this.fileType.includes('zip') && (whiteList = whiteList.concat(zip))
- return whiteList.join(',')
- },
- previewImages() {
- const fileList = []
- if (this.files && this.files.length > 0) {
- this.files.forEach(item => {
- if (this.checkFileType(item.url) == 'image') {
- fileList.push(item.url)
- }
- })
- }
- return fileList
- }
- },
- watch: {
- files() {
- if (this.isEdit) {
- this.$emit('getFiles', this.files)
- }
- },
- fileList() {
- this.files = this.fileList
- }
- },
- created() {
- // console.log(getOssConfig)
- // getOssConfig().then(res => {
- // this.oss_url = res.data.host
- // })
- },
- methods: {
- openNew(url) {
- window.open(url, '_blank')
- },
- getBase64(url) {
- window.open(this.$xdocUrl + encodeURIComponent(Base64.encode(url)), '_blank')
- },
- getUUID() {
- return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
- return (c === 'x' ? (Math.random() * 16) | 0 : 'r&0x3' | '0x8').toString(16)
- })
- },
- createName(name) {
- const date = Date.now()
- const uuid = this.getUUID()
- const fileSuffix = name.substring(name.lastIndexOf('.') + 1)
- return `${date}${uuid}.${fileSuffix}`
- },
- // 检查文件类型
- checkFileType(url) {
- if (!url) return ''
- const fileSuffix = url.substring(url.lastIndexOf('.') + 1)
- if (['jpg', 'jpeg', 'png'].includes(fileSuffix)) {
- return 'image'
- } else if (['doc', 'docx', 'dot', 'wps', 'wpt'].includes(fileSuffix)) {
- return 'word'
- } else if (['xls', 'xlsx', 'xlt', 'et', 'ett'].includes(fileSuffix)) {
- return 'excel'
- } else if (['ppt', 'pptx', 'dps', 'dpt', 'pot', 'pps'].includes(fileSuffix)) {
- return 'ppt'
- } else if (['pdf'].includes(fileSuffix)) {
- return 'pdf'
- } else if (['zip', 'rar', 'gz', 'apk'].includes(fileSuffix)) {
- return 'file'
- } else if (['mp4'].includes(fileSuffix)) {
- return 'video'
- }
- },
- // 获取oss配置
- async getOssConfig(fileName) {
- const result = await new Promise((resolve, reject) => {
- getOssConfig()
- .then(res => {
- const fileKey = this.createName(fileName)
- res.data.name = fileName
- res.data.key = res.data.dir + fileKey
- resolve(res.data)
- })
- .catch(res => {
- resolve({})
- })
- })
- return result
- },
- // 预览图片
- previewImage(url) {
- const index = findElem(this.files, 'url', url)
- this.$refs.img[index].showViewer = true
- },
- // 删除图片
- deleteImage(url) {
- const index = findElem(this.files, 'url', url)
- this.files.splice(index, 1)
- },
- // 点击上传
- uploadImage(url) {
- this.uploadImageUrl = url
- document.querySelector(`.${this.uid_}` + ' input').click()
- },
- // 上传文件之前
- async beforeUpload(file) {
- const loading = this.$loading({
- lock: true,
- text: 'Loading',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- })
- this.getFileName(file.name)
- this.$emit('handleIsFileName', this.fileName)
- // this.dataObj = await this.getOssConfig(this.fileName)
- // this.waitUploadList.push(this.dataObj)
- },
- // 文件上传成功
- uploadSuccess(res, file) {
- const loading = this.$loading({
- lock: true,
- text: 'Loading',
- spinner: 'el-icon-loading',
- background: 'rgba(0, 0, 0, 0.7)'
- })
- if (this.uploadImageUrl) {
- const index = findElem(this.files, 'url', this.uploadImageUrl)
- this.$set(this.files, index, {
- name: file.name,
- url: res.data.url,
- size: file.size,
- type: file.name.split('.')[file.name.split('.').length - 1]
- })
- // this.waitUploadList = []
- } else {
- this.getFileName(file.name)
- // const index = findElem(this.waitUploadList, 'name', this.fileName)
- this.files.push({
- name: file.name,
- url: res.data.url,
- size: file.size,
- type: file.name.split('.')[file.name.split('.').length - 1]
- })
- // this.waitUploadList.splice(index, 1)
- }
- this.showFileList = true
- loading.close()
- },
- getFileName(name) {
- const fileName = name.substring(0, name.lastIndexOf('.'))
- let suffix = name.match(/.[^.]+$/)[0]
- // 押金申请上传限制
- this.fileName = name
- if (this.startRestricting) {
- // 检查是否存在相应文字,否filterKeywords.length = 0
- const filterKeywords = this.restrictFilename.filter(k => fileName.includes(k))
- // filterKeywords = 0 || 'zip', 'rar', 'gz', 'apk' 归为 其他文件
- if (!filterKeywords.length || suffix.includes('zip', 'rar', 'gz', 'apk')) {
- this.fileName = `其他文件-${fileName}${suffix}`
- }
- // 限制照片/相片名称统一为照片 , restrictFilename[restrictFilename.length-1|restrictFilename.length-1]为照片、相片
- if (fileName.includes('相片') || fileName.includes('照片')) {
- this.fileName = `照片-${fileName}${suffix}`
- }
- }
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .images {
- display: flex;
- flex-wrap: wrap;
- .item {
- margin-right: 20px;
- margin-bottom: 20px;
- .img {
- width: 120px;
- height: 120px;
- border-radius: 5px;
- overflow: hidden;
- position: relative;
- border: 1px dashed #eaeaea;
- display: flex;
- .el-image {
- display: block;
- }
- .file {
- width: 120px;
- height: 120px;
- display: block;
- padding: 30px;
- }
- .mask {
- position: absolute;
- left: 0;
- top: 0;
- width: 120px;
- height: 120px;
- background: rgba($color: #000000, $alpha: 0.3);
- display: none;
- align-items: center;
- justify-content: center;
- i {
- font-size: 20px;
- color: #ffffff;
- cursor: pointer;
- margin: 0 8px;
- }
- }
- &:hover .mask {
- display: flex;
- }
- }
- }
- .add {
- width: 120px;
- height: 120px;
- border: 1px dashed #eaeaea;
- border-radius: 5px;
- cursor: pointer;
- display: flex;
- align-items: center;
- justify-content: center;
- i {
- font-size: 30px;
- color: #999;
- }
- }
- }
- .uploader {
- height: 0;
- }
- .upload_text {
- color: #409eff;
- cursor: pointer;
- }
- </style>
|