index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. <template>
  2. <div>
  3. <el-upload
  4. name="file"
  5. :class="['uploader', uid_]"
  6. :action="baseURL + 'common/upload'"
  7. :multiple="false"
  8. :accept="accept"
  9. :show-file-list="false"
  10. :on-success="uploadSuccess"
  11. :before-upload="beforeUpload"
  12. :headers="myHeaders"
  13. />
  14. <div class="images" v-if="modType === 'view' || modType === 'text'">
  15. <div v-for="(item, index) in files" :key="index" class="item">
  16. <div v-if="item.url" class="img">
  17. <el-image
  18. v-if="checkFileType(item.url) == 'image'"
  19. ref="img"
  20. :src="$showImgUrl(item.url)"
  21. :preview-src-list="previewImages"
  22. style="width: 120px; height: 120px"
  23. fit="cover"
  24. />
  25. <el-image v-else ref="img" :src="$showImgUrl(item.url)" style="width: 120px; height: 120px" fit="cover">
  26. <div slot="error" class="image-slot">
  27. <img v-if="checkFileType(item.url) == 'word'" class="file" src="@/assets/common/word.png" />
  28. <img v-if="checkFileType(item.url) == 'excel'" class="file" src="@/assets/common/excel.png" />
  29. <img v-if="checkFileType(item.url) == 'ppt'" class="file" src="@/assets/common/ppt.png" />
  30. <img v-if="checkFileType(item.url) == 'pdf'" class="file" src="@/assets/common/pdf.png" />
  31. <img v-if="checkFileType(item.url) == 'file'" class="file" src="@/assets/common/zip.jpeg" />
  32. <img v-if="checkFileType(item.url) == 'video'" class="file" src="@/assets/common/video.jpeg" />
  33. </div>
  34. </el-image>
  35. <div v-if="isEdit || checkFileType(item.url) == 'image'" class="mask">
  36. <i v-if="checkFileType(item.url) == 'image'" class="el-icon-zoom-in" @click="previewImage(item.url)" />
  37. <i v-if="isEdit && isUpdate" class="el-icon-upload2" @click="uploadImage(item.url)" />
  38. <i v-if="isEdit" class="el-icon-delete" @click="deleteImage(item.url)" />
  39. </div>
  40. </div>
  41. <div style="display: flex; justify-content: space-around">
  42. <span v-if="showName">{{ item.name }}</span>
  43. <!-- <el-link v-if="viewOnline && checkFileType(item.url) != 'file'" @click="getBase64(item.url)" type="primary"
  44. >查看</el-link
  45. > -->
  46. <el-link v-if="download" @click="openNew(item.url)" type="primary">查看</el-link>
  47. </div>
  48. </div>
  49. <template v-if="isEdit">
  50. <div v-if="limit">
  51. <div v-if="limit !== files.length" class="add" @click="uploadImage()">
  52. <div v-if="modType === 'text'">
  53. <div class="upload_text">上传</div>
  54. </div>
  55. <i v-else class="el-icon-plus" />
  56. </div>
  57. </div>
  58. <div v-else>
  59. <div v-if="multiple || (!multiple && files.length < 1)" class="add" @click="uploadImage()">
  60. <i class="el-icon-plus" />
  61. </div>
  62. </div>
  63. </template>
  64. </div>
  65. <div v-if="modType === 'btn'">
  66. <el-button size="mini" type="primary" @click="uploadImage()">上传</el-button>
  67. </div>
  68. </div>
  69. </template>
  70. <script>
  71. import { getOssConfig } from '@/api/common'
  72. import { findElem } from '@/utils/util'
  73. import { getToken } from '@/utils/auth'
  74. export default {
  75. name: 'FileUpload',
  76. props: {
  77. modType: {
  78. type: String,
  79. default: 'view'
  80. },
  81. uid: {
  82. type: String,
  83. default: ''
  84. },
  85. // 最大上传数量
  86. limit: {
  87. type: Number,
  88. default: 1
  89. },
  90. // 接受上传的文件列表
  91. fileList: {
  92. type: Array,
  93. default: () => []
  94. },
  95. // 接受上传的文件类型
  96. fileType: {
  97. type: Array,
  98. default: () => ['image', 'word', 'excel', 'ppt', 'pdf', 'file', 'video']
  99. },
  100. // 是否支持多选文件
  101. multiple: {
  102. type: Boolean,
  103. default: false
  104. },
  105. startRestricting: {
  106. type: Boolean,
  107. default: false
  108. },
  109. restrictFilename: {
  110. type: Array,
  111. default: () => {
  112. return []
  113. }
  114. },
  115. isEdit: {
  116. type: Boolean,
  117. default: true
  118. },
  119. isUpdate: {
  120. type: Boolean,
  121. default: true
  122. },
  123. viewOnline: {
  124. type: Boolean,
  125. default: true
  126. },
  127. download: {
  128. type: Boolean,
  129. default: true
  130. },
  131. showName: {
  132. type: Boolean,
  133. default: false
  134. }
  135. },
  136. data() {
  137. return {
  138. uid_: this.uid || 'id_' + new Date().getTime(),
  139. myHeaders: { 'x-token': getToken() },
  140. baseURL: process.env.VUE_APP_BASE_API,
  141. imageURL: this.$imageUrl,
  142. oss_url: '',
  143. dataObj: {},
  144. uploadImageUrl: '',
  145. // waitUploadList: [],
  146. fileName: '',
  147. files: this.fileList
  148. }
  149. },
  150. computed: {
  151. isShowFileList: {
  152. get: function () {
  153. if (this.files.length > 0 && this.files[0].url) {
  154. return true
  155. } else {
  156. return false
  157. }
  158. },
  159. set: function (newValue) {}
  160. },
  161. accept() {
  162. const imageList = ['.jpg', '.jpeg', '.png']
  163. const videoList = ['.mp4']
  164. const wordList = ['.doc', '.docx', '.dot', '.wps', '.wpt']
  165. const excelList = ['.xls', '.xlsx', '.xlt', '.et', '.ett']
  166. const pptList = ['.ppt', '.pptx', '.dps', '.dpt', '.pot', '.pps']
  167. const pdfList = ['.pdf']
  168. const fileList = ['.zip', '.rar', '.gz', '.apk']
  169. const zip = ['.zip']
  170. let whiteList = []
  171. this.fileType.includes('image') && (whiteList = whiteList.concat(imageList))
  172. this.fileType.includes('video') && (whiteList = whiteList.concat(videoList))
  173. this.fileType.includes('word') && (whiteList = whiteList.concat(wordList))
  174. this.fileType.includes('excel') && (whiteList = whiteList.concat(excelList))
  175. this.fileType.includes('ppt') && (whiteList = whiteList.concat(pptList))
  176. this.fileType.includes('pdf') && (whiteList = whiteList.concat(pdfList))
  177. this.fileType.includes('file') && (whiteList = whiteList.concat(fileList))
  178. this.fileType.includes('zip') && (whiteList = whiteList.concat(zip))
  179. return whiteList.join(',')
  180. },
  181. previewImages() {
  182. const fileList = []
  183. if (this.files && this.files.length > 0) {
  184. this.files.forEach(item => {
  185. if (this.checkFileType(item.url) == 'image') {
  186. fileList.push(item.url)
  187. }
  188. })
  189. }
  190. return fileList
  191. }
  192. },
  193. watch: {
  194. files() {
  195. if (this.isEdit) {
  196. this.$emit('getFiles', this.files)
  197. }
  198. },
  199. fileList() {
  200. this.files = this.fileList
  201. }
  202. },
  203. created() {
  204. // console.log(getOssConfig)
  205. // getOssConfig().then(res => {
  206. // this.oss_url = res.data.host
  207. // })
  208. },
  209. methods: {
  210. openNew(url) {
  211. window.open(url, '_blank')
  212. },
  213. getBase64(url) {
  214. window.open(this.$xdocUrl + encodeURIComponent(Base64.encode(url)), '_blank')
  215. },
  216. getUUID() {
  217. return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
  218. return (c === 'x' ? (Math.random() * 16) | 0 : 'r&0x3' | '0x8').toString(16)
  219. })
  220. },
  221. createName(name) {
  222. const date = Date.now()
  223. const uuid = this.getUUID()
  224. const fileSuffix = name.substring(name.lastIndexOf('.') + 1)
  225. return `${date}${uuid}.${fileSuffix}`
  226. },
  227. // 检查文件类型
  228. checkFileType(url) {
  229. if (!url) return ''
  230. const fileSuffix = url.substring(url.lastIndexOf('.') + 1)
  231. if (['jpg', 'jpeg', 'png'].includes(fileSuffix)) {
  232. return 'image'
  233. } else if (['doc', 'docx', 'dot', 'wps', 'wpt'].includes(fileSuffix)) {
  234. return 'word'
  235. } else if (['xls', 'xlsx', 'xlt', 'et', 'ett'].includes(fileSuffix)) {
  236. return 'excel'
  237. } else if (['ppt', 'pptx', 'dps', 'dpt', 'pot', 'pps'].includes(fileSuffix)) {
  238. return 'ppt'
  239. } else if (['pdf'].includes(fileSuffix)) {
  240. return 'pdf'
  241. } else if (['zip', 'rar', 'gz', 'apk'].includes(fileSuffix)) {
  242. return 'file'
  243. } else if (['mp4'].includes(fileSuffix)) {
  244. return 'video'
  245. }
  246. },
  247. // 获取oss配置
  248. async getOssConfig(fileName) {
  249. const result = await new Promise((resolve, reject) => {
  250. getOssConfig()
  251. .then(res => {
  252. const fileKey = this.createName(fileName)
  253. res.data.name = fileName
  254. res.data.key = res.data.dir + fileKey
  255. resolve(res.data)
  256. })
  257. .catch(res => {
  258. resolve({})
  259. })
  260. })
  261. return result
  262. },
  263. // 预览图片
  264. previewImage(url) {
  265. const index = findElem(this.files, 'url', url)
  266. this.$refs.img[index].showViewer = true
  267. },
  268. // 删除图片
  269. deleteImage(url) {
  270. const index = findElem(this.files, 'url', url)
  271. this.files.splice(index, 1)
  272. },
  273. // 点击上传
  274. uploadImage(url) {
  275. this.uploadImageUrl = url
  276. document.querySelector(`.${this.uid_}` + ' input').click()
  277. },
  278. // 上传文件之前
  279. async beforeUpload(file) {
  280. const loading = this.$loading({
  281. lock: true,
  282. text: 'Loading',
  283. spinner: 'el-icon-loading',
  284. background: 'rgba(0, 0, 0, 0.7)'
  285. })
  286. this.getFileName(file.name)
  287. this.$emit('handleIsFileName', this.fileName)
  288. // this.dataObj = await this.getOssConfig(this.fileName)
  289. // this.waitUploadList.push(this.dataObj)
  290. },
  291. // 文件上传成功
  292. uploadSuccess(res, file) {
  293. const loading = this.$loading({
  294. lock: true,
  295. text: 'Loading',
  296. spinner: 'el-icon-loading',
  297. background: 'rgba(0, 0, 0, 0.7)'
  298. })
  299. if (this.uploadImageUrl) {
  300. const index = findElem(this.files, 'url', this.uploadImageUrl)
  301. this.$set(this.files, index, {
  302. name: file.name,
  303. url: res.data.url,
  304. size: file.size,
  305. type: file.name.split('.')[file.name.split('.').length - 1]
  306. })
  307. // this.waitUploadList = []
  308. } else {
  309. this.getFileName(file.name)
  310. // const index = findElem(this.waitUploadList, 'name', this.fileName)
  311. this.files.push({
  312. name: file.name,
  313. url: res.data.url,
  314. size: file.size,
  315. type: file.name.split('.')[file.name.split('.').length - 1]
  316. })
  317. // this.waitUploadList.splice(index, 1)
  318. }
  319. this.showFileList = true
  320. loading.close()
  321. },
  322. getFileName(name) {
  323. const fileName = name.substring(0, name.lastIndexOf('.'))
  324. let suffix = name.match(/.[^.]+$/)[0]
  325. // 押金申请上传限制
  326. this.fileName = name
  327. if (this.startRestricting) {
  328. // 检查是否存在相应文字,否filterKeywords.length = 0
  329. const filterKeywords = this.restrictFilename.filter(k => fileName.includes(k))
  330. // filterKeywords = 0 || 'zip', 'rar', 'gz', 'apk' 归为 其他文件
  331. if (!filterKeywords.length || suffix.includes('zip', 'rar', 'gz', 'apk')) {
  332. this.fileName = `其他文件-${fileName}${suffix}`
  333. }
  334. // 限制照片/相片名称统一为照片 , restrictFilename[restrictFilename.length-1|restrictFilename.length-1]为照片、相片
  335. if (fileName.includes('相片') || fileName.includes('照片')) {
  336. this.fileName = `照片-${fileName}${suffix}`
  337. }
  338. }
  339. }
  340. }
  341. }
  342. </script>
  343. <style scoped lang="scss">
  344. .images {
  345. display: flex;
  346. flex-wrap: wrap;
  347. .item {
  348. margin-right: 20px;
  349. margin-bottom: 20px;
  350. .img {
  351. width: 120px;
  352. height: 120px;
  353. border-radius: 5px;
  354. overflow: hidden;
  355. position: relative;
  356. border: 1px dashed #eaeaea;
  357. display: flex;
  358. .el-image {
  359. display: block;
  360. }
  361. .file {
  362. width: 120px;
  363. height: 120px;
  364. display: block;
  365. padding: 30px;
  366. }
  367. .mask {
  368. position: absolute;
  369. left: 0;
  370. top: 0;
  371. width: 120px;
  372. height: 120px;
  373. background: rgba($color: #000000, $alpha: 0.3);
  374. display: none;
  375. align-items: center;
  376. justify-content: center;
  377. i {
  378. font-size: 20px;
  379. color: #ffffff;
  380. cursor: pointer;
  381. margin: 0 8px;
  382. }
  383. }
  384. &:hover .mask {
  385. display: flex;
  386. }
  387. }
  388. }
  389. .add {
  390. width: 120px;
  391. height: 120px;
  392. border: 1px dashed #eaeaea;
  393. border-radius: 5px;
  394. cursor: pointer;
  395. display: flex;
  396. align-items: center;
  397. justify-content: center;
  398. i {
  399. font-size: 30px;
  400. color: #999;
  401. }
  402. }
  403. }
  404. .uploader {
  405. height: 0;
  406. }
  407. .upload_text {
  408. color: #409eff;
  409. cursor: pointer;
  410. }
  411. </style>