index.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <div>
  3. <template v-if="multiple">
  4. <el-upload
  5. class="upload-demo"
  6. :action="uploadFileUrl"
  7. :before-remove="beforeRemove"
  8. :before-upload="beforeUpload"
  9. :on-success="successHandleList"
  10. :index="index"
  11. :data="params"
  12. :on-preview="previewFile"
  13. multiple
  14. :accept="accept"
  15. :headers="headers"
  16. :file-list="fileList">
  17. <el-button type="primary" :disabled="disabledVisible">点击上传</el-button>
  18. <div v-if="tip" class="el-upload__tip" slot="tip">{{tip}}</div>
  19. </el-upload>
  20. </template>
  21. <template v-else>
  22. <el-upload :class="showPic ? 'avatar-uploader': 'singlebox'"
  23. :action="uploadFileUrl"
  24. :show-file-list="false"
  25. :accept="accept"
  26. :on-success="handleSuccess"
  27. :index="index"
  28. :data="params"
  29. :headers="headers"
  30. :before-upload="beforeUpload"
  31. :on-progress="handleProgress">
  32. <template v-if="showPic">
  33. <img v-if="singleFile.url" :src="file.url" class="avatar" :width="imgWidth" :height="imgHeight">
  34. <i v-else class="el-icon-plus avatar-uploader-icon" :style="'width:'+imgWidth+'px; height:'+imgHeight+'px;line-height: '+imgHeight+'px;'"></i>
  35. </template>
  36. <el-button v-else type="primary" class="btn" :disabled="disabledVisible">
  37. <template v-if="singleFile.url">重新上传</template>
  38. <template v-else>点击上传</template>
  39. </el-button>
  40. <div v-if="tip" class="el-upload__tip" slot="tip">{{tip}}</div>
  41. </el-upload>
  42. <template v-if="!showPic && singleFile.url">
  43. <a class="singlefile" :href="singleFile.url" :title="singleFile.name" target="_blank">
  44. <i class="el-icon-document"></i>{{singleFile.name}}
  45. </a>
  46. </template>
  47. </template>
  48. </div>
  49. </template>
  50. <script>
  51. import { getToken } from "@/utils/auth";
  52. export default {
  53. props: {
  54. file: {
  55. type: Object,
  56. default: function () {
  57. return {
  58. name: '',
  59. url: ''
  60. }
  61. }
  62. },
  63. files: {
  64. type: Array,
  65. default: function () {
  66. return []
  67. }
  68. },
  69. disabledVisible: {
  70. type: Boolean,
  71. default: false
  72. },
  73. multiple: {
  74. type: Boolean,
  75. default: false
  76. },
  77. showPic: {
  78. type: Boolean,
  79. default: false
  80. },
  81. sizeLimit: {
  82. type: Number,
  83. default: 0
  84. },
  85. accept: {
  86. type: String,
  87. default: ''
  88. },
  89. tip: {
  90. type: String,
  91. default: ''
  92. },
  93. index:{
  94. type:Number,
  95. default: -1
  96. },
  97. imgWidth: {
  98. type: Number,
  99. default: 178
  100. }, // showPic 时 图片宽度
  101. imgHeight: {
  102. type: Number,
  103. default: 178
  104. }, // showPic 时 图片高度
  105. params: {
  106. type: Object,
  107. default: function () {
  108. return {}
  109. }
  110. }
  111. },
  112. data () {
  113. return {
  114. uploadFileUrl: process.env.VUE_APP_BASE_API + "/common/attach/upload", // 上传的图片服务器地址
  115. // uploadFileUrl: 'http://124.232.146.72:7015/api/common/attach/upload', // 上传的图片服务器地址
  116. headers: {
  117. Authorization: "Bearer " + getToken(),
  118. },
  119. singleFile: {
  120. name: this.file.name,
  121. url: this.file.url
  122. },
  123. fileList: [],
  124. }
  125. },
  126. created () {
  127. },
  128. mounted () {
  129. this.$emit('update:file', this.singleFile)
  130. this.$emit('update:files', this.fileList)
  131. this.fileList = this.files
  132. },
  133. methods: {
  134. previewFile(file) {
  135. console.log(file, "********")
  136. if (file) {
  137. const addTypeArray = file.name.split(".");
  138. const addType = addTypeArray[addTypeArray.length - 1];
  139. console.log(addType);
  140. if (addType === "pdf") {
  141. let routeData = this.$router.resolve({
  142. path: "/pdfPreview",
  143. query: { url: file.filePath },
  144. });
  145. window.open(routeData.href, "_blank");
  146. }
  147. //".rar, .zip, .doc, .docx, .xls, .txt, .pdf, .jpg, .png, .jpeg,"
  148. else if (addType === "doc" || addType === "docx" || addType === "xls" || addType === "xlsx") {
  149. // window.open(
  150. // "http://view.officeapps.live.com/op/view.aspx?src=" + file.filePath
  151. // );
  152. window.open(file.filePath);
  153. } else if (addType === "txt") {
  154. window.open(file.filePath);
  155. } else if (["png", "jpg", "jpeg"].includes(addType)) {
  156. window.open(file.filePath);
  157. } else if (addType === "rar" || addType === "zip") {
  158. this.$message({
  159. message: "该文件类型暂不支持预览",
  160. type: "warning",
  161. });
  162. return false;
  163. }
  164. }
  165. },
  166. handleSuccess(res, file) {
  167. if (res.code == 200) {
  168. this.singleFile.name = file.name
  169. this.singleFile.url = res.data.url
  170. if(this.index == -1){
  171. this.$emit('input', this.singleFile)
  172. }else{
  173. this.$emit('input', this.singleFile, this.index)
  174. }
  175. } else {
  176. this.$message.error(res.msg)
  177. }
  178. },
  179. beforeUpload(file) {
  180. const isLTM = this.sizeLimit > 0 ? file.size / 1024 / 1024 < this.sizeLimit : true
  181. let isInAccept = true
  182. if (this.accept) {
  183. isInAccept = false
  184. if (file.type.indexOf('image') != -1) {
  185. if (this.accept.indexOf('image') != -1) {
  186. isInAccept = true
  187. }
  188. } else {
  189. isInAccept = this.accept.indexOf(file.type) == -1 ? false : true
  190. }
  191. if (!isInAccept) {
  192. this.$message.error(`文件格式错误`)
  193. } else {
  194. if (!isLTM) {
  195. this.$message.error(`文件大小不能超过 ${this.sizeLimit}MB!`)
  196. }
  197. }
  198. }
  199. return isInAccept && isLTM
  200. },
  201. handleProgress(file) {
  202. },
  203. beforeRemove (file, fileList) {
  204. let hasTip = false;
  205. if (file.raw) {
  206. const isLTM = this.sizeLimit > 0 ? file.raw.size / 1024 / 1024 < this.sizeLimit : true
  207. if (this.accept) {
  208. let isInAccept = false
  209. if (file.raw.type.indexOf('image') != -1) {
  210. if (this.accept.indexOf('image') != -1) {
  211. isInAccept = true
  212. }
  213. } else {
  214. isInAccept = this.accept.indexOf(file.raw.type) == -1 ? false : true
  215. }
  216. if (!isLTM || !isInAccept) {
  217. this.fileList = fileList
  218. } else {
  219. hasTip = true
  220. }
  221. }
  222. } else {
  223. hasTip = true
  224. }
  225. if (hasTip) {
  226. return this.$confirm(`确定移除 ${file.name}?`).then(() => {
  227. this.fileList = fileList
  228. if(this.index == -1){
  229. this.$emit('input', this.fileList)
  230. } else {
  231. this.$emit('input', this.fileList, this.index)
  232. }
  233. })
  234. }
  235. },
  236. successHandleList (response, file, fileList) {
  237. this.fileList = fileList;
  238. fileList.forEach((item, index) => {
  239. if (item.url == undefined && item.response != undefined) {
  240. fileList[index].fileName = item.response.data.fileName;
  241. fileList[index].filePath = item.response.data.url;
  242. fileList[index].url = item.response.url;
  243. }
  244. });
  245. if(this.index == -1){
  246. this.$emit('input', this.fileList)
  247. }else{
  248. this.$emit('input', this.fileList, this.index)
  249. }
  250. }
  251. },
  252. watch: {
  253. 'file' () {
  254. this.singleFile = this.file
  255. },
  256. 'files' () {
  257. this.fileList = this.files
  258. }
  259. }
  260. }
  261. </script>