index.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <template>
  2. <div class="upload-file">
  3. <el-upload
  4. multiple
  5. :action="uploadFileUrl"
  6. :before-upload="handleBeforeUpload"
  7. :file-list="fileList"
  8. :limit="limit"
  9. :on-error="handleUploadError"
  10. :on-exceed="handleExceed"
  11. :on-success="handleUploadSuccess"
  12. :show-file-list="false"
  13. :headers="headers"
  14. class="upload-file-uploader"
  15. ref="fileUpload"
  16. >
  17. <!-- 上传按钮 -->
  18. <el-button size="mini" type="primary">选取文件</el-button>
  19. <!-- 上传提示 -->
  20. <div class="el-upload__tip" slot="tip" v-if="showTip">
  21. 请上传
  22. <template v-if="fileSize"> 大小不超过 <b style="color: #f56c6c">{{ fileSize }}MB</b> </template>
  23. <template v-if="fileType"> 格式为 <b style="color: #f56c6c">{{ fileType.join("/") }}</b> </template>
  24. 的文件
  25. </div>
  26. </el-upload>
  27. <!-- 文件列表 -->
  28. <transition-group class="upload-file-list el-upload-list el-upload-list--text" name="el-fade-in-linear" tag="ul">
  29. <li :key="file.url" class="el-upload-list__item ele-upload-list__item-content" v-for="(file, index) in fileList">
  30. <el-link :href="`${baseUrl}${file.url}`" :underline="false" target="_blank">
  31. <span class="el-icon-document"> {{ getFileName(file.name) }} </span>
  32. </el-link>
  33. <div class="ele-upload-list__item-content-action">
  34. <el-link :underline="false" @click="handleDelete(index)" type="danger">删除</el-link>
  35. </div>
  36. </li>
  37. </transition-group>
  38. </div>
  39. </template>
  40. <script>
  41. import { getToken } from "@/utils/auth";
  42. export default {
  43. name: "FileUpload",
  44. props: {
  45. // 值
  46. value: [String, Object, Array],
  47. // 数量限制
  48. limit: {
  49. type: Number,
  50. default: 5,
  51. },
  52. // 大小限制(MB)
  53. fileSize: {
  54. type: Number,
  55. default: 900,
  56. },
  57. // 文件类型, 例如['png', 'jpg', 'jpeg']
  58. fileType: {
  59. type: Array,
  60. default: () => ["mp4",],
  61. },
  62. // 是否显示提示
  63. isShowTip: {
  64. type: Boolean,
  65. default: true
  66. }
  67. },
  68. data() {
  69. return {
  70. number: 0,
  71. uploadList: [],
  72. baseUrl: process.env.VUE_APP_BASE_API,
  73. uploadFileUrl: process.env.VUE_APP_BASE_API + "/common/upload", // 上传文件服务器地址
  74. headers: {
  75. Authorization: "Bearer " + getToken(),
  76. clientid:'e5cd7e4891bf95d1d19206ce24a7b32e'
  77. },
  78. fileList: [],
  79. };
  80. },
  81. watch: {
  82. value: {
  83. handler(val) {
  84. if (val) {
  85. let temp = 1;
  86. // 首先将值转为数组
  87. const list = Array.isArray(val) ? val : this.value.split(',');
  88. // 然后将数组转为对象数组
  89. this.fileList = list.map(item => {
  90. if (typeof item === "string") {
  91. item = { name: item, url: item };
  92. }
  93. item.uid = item.uid || new Date().getTime() + temp++;
  94. return item;
  95. });
  96. } else {
  97. this.fileList = [];
  98. return [];
  99. }
  100. },
  101. deep: true,
  102. immediate: true
  103. }
  104. },
  105. computed: {
  106. // 是否显示提示
  107. showTip() {
  108. return this.isShowTip && (this.fileType || this.fileSize);
  109. },
  110. },
  111. methods: {
  112. // 上传前校检格式和大小
  113. handleBeforeUpload(file) {
  114. // 校检文件类型
  115. if (this.fileType) {
  116. const fileName = file.name.split('.');
  117. const fileExt = fileName[fileName.length - 1];
  118. const isTypeOk = this.fileType.indexOf(fileExt) >= 0;
  119. if (!isTypeOk) {
  120. this.$modal.msgError(`文件格式不正确,请上传${this.fileType.join("/")}格式文件!`);
  121. return false;
  122. }
  123. }
  124. // 校检文件名是否包含特殊字符
  125. if (file.name.includes(',')) {
  126. this.$modal.msgError('文件名不正确,不能包含英文逗号!');
  127. return false;
  128. }
  129. // 校检文件大小
  130. if (this.fileSize) {
  131. const isLt = file.size / 1024 / 1024 < this.fileSize;
  132. if (!isLt) {
  133. this.$modal.msgError(`上传文件大小不能超过 ${this.fileSize} MB!`);
  134. return false;
  135. }
  136. }
  137. this.$modal.loading("正在上传文件,请稍候...");
  138. this.number++;
  139. return true;
  140. },
  141. // 文件个数超出
  142. handleExceed() {
  143. this.$modal.msgError(`上传文件数量不能超过 ${this.limit} 个!`);
  144. },
  145. // 上传失败
  146. handleUploadError(err) {
  147. this.$modal.msgError("上传文件失败,请重试");
  148. this.$modal.closeLoading();
  149. },
  150. // 上传成功回调
  151. handleUploadSuccess(res, file) {
  152. if (res.code === 200) {
  153. this.uploadList.push({ name: res.data.fileName, url: res.data.fileName });
  154. this.uploadedSuccessfully();
  155. } else {
  156. this.number--;
  157. this.$modal.closeLoading();
  158. this.$modal.msgError(res.msg);
  159. this.$refs.fileUpload.handleRemove(file);
  160. this.uploadedSuccessfully();
  161. }
  162. },
  163. // 删除文件
  164. handleDelete(index) {
  165. this.fileList.splice(index, 1);
  166. this.$emit("input", this.listToString(this.fileList));
  167. },
  168. // 上传结束处理
  169. uploadedSuccessfully() {
  170. if (this.number > 0 && this.uploadList.length === this.number) {
  171. this.fileList = this.fileList.concat(this.uploadList);
  172. this.uploadList = [];
  173. this.number = 0;
  174. this.$emit("input", this.listToString(this.fileList));
  175. this.$modal.closeLoading();
  176. }
  177. },
  178. // 获取文件名称
  179. getFileName(name) {
  180. // 如果是url那么取最后的名字 如果不是直接返回
  181. if (name.lastIndexOf("/") > -1) {
  182. return name.slice(name.lastIndexOf("/") + 1);
  183. } else {
  184. return name;
  185. }
  186. },
  187. // 对象转成指定字符串分隔
  188. listToString(list, separator) {
  189. let strs = "";
  190. separator = separator || ",";
  191. for (let i in list) {
  192. strs += list[i].url + separator;
  193. }
  194. return strs != '' ? strs.substr(0, strs.length - 1) : '';
  195. }
  196. }
  197. };
  198. </script>
  199. <style scoped lang="scss">
  200. .upload-file-uploader {
  201. margin-bottom: 5px;
  202. }
  203. .upload-file-list .el-upload-list__item {
  204. border: 1px solid #e4e7ed;
  205. line-height: 2;
  206. margin-bottom: 10px;
  207. position: relative;
  208. }
  209. .upload-file-list .ele-upload-list__item-content {
  210. display: flex;
  211. justify-content: space-between;
  212. align-items: center;
  213. color: inherit;
  214. }
  215. .ele-upload-list__item-content-action .el-link {
  216. margin-right: 10px;
  217. }
  218. </style>