fix: Avue2.9.x 附件预览错误的问题

saber
ssc 4 years ago
parent 71d578ac70
commit eb9b8e464c
  1. 3
      src/views/plugin/workflow/mixins/ex-form.js

@ -463,7 +463,8 @@ export default {
// 上传组件预览
handleUploadPreview(file, column, done) {
const { url } = file
const { video, img } = this.$typeList
const video = /\.(swf|avi|flv|mpg|rm|mov|wav|asf|3gp|mkv|rmvb|ogg|mp4)/
const img = /\.(gif|jpg|jpeg|png|GIF|JPG|PNG)/
if (video.test(url) || img.test(url)) done()
else window.open(url)
},

Loading…
Cancel
Save