index.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <div class="upload-file">
  3. <el-upload
  4. :action="uploadFileUrl"
  5. :before-upload="handleBeforeUpload"
  6. :file-list="fileList"
  7. :limit="limit"
  8. :accept="fileType.join(',')"
  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="upload"
  16. >
  17. <!-- 上传按钮 -->
  18. <el-button size="mini" type="primary" :loading="uploadLoading" :disabled="uploadLoading">选取文件</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.uid" 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: 500,
  56. },
  57. // 文件类型, 例如['png', 'jpg', 'jpeg']
  58. fileType: {
  59. type: Array,
  60. default: () => [".doc", ".docx", ".xls", ".xlsx", ".ppt", ".pptx", ".pdf", ".mp4"],
  61. },
  62. // 是否显示提示
  63. isShowTip: {
  64. type: Boolean,
  65. default: true
  66. }
  67. },
  68. data() {
  69. return {
  70. uploadLoading: false,
  71. baseUrl: BASE_URL,
  72. uploadFileUrl: BASE_URL + "/v1/common/upload", // 上传的图片服务器地址
  73. headers: {
  74. Authorization: "Bearer " + getToken(),
  75. },
  76. fileList: [],
  77. };
  78. },
  79. watch: {
  80. value: {
  81. handler(val) {
  82. if (val) {
  83. let temp = 1;
  84. // 首先将值转为数组
  85. const list = Array.isArray(val) ? val : this.value.split(',');
  86. // 然后将数组转为对象数组
  87. this.fileList = list.map(item => {
  88. if (typeof item === "string") {
  89. item = { name: item, url: item };
  90. }
  91. item.uid = item.uid || new Date().getTime() + temp++;
  92. return item;
  93. });
  94. } else {
  95. this.fileList = [];
  96. return [];
  97. }
  98. },
  99. deep: true,
  100. immediate: true
  101. }
  102. },
  103. computed: {
  104. // 是否显示提示
  105. showTip() {
  106. return this.isShowTip && (this.fileType || this.fileSize);
  107. },
  108. },
  109. methods: {
  110. // 上传前校检格式和大小
  111. handleBeforeUpload(file) {
  112. // 校检文件类型
  113. if (this.fileType) {
  114. let fileExtension = "";
  115. if (file.name.lastIndexOf(".") > -1) {
  116. fileExtension = file.name.slice(file.name.lastIndexOf("."));
  117. }
  118. const isTypeOk = this.fileType.some((type) => {
  119. if (file.type.indexOf(type) > -1) return true;
  120. if (fileExtension && fileExtension.indexOf(type) > -1) return true;
  121. return false;
  122. });
  123. if (!isTypeOk) {
  124. this.$message.error(`文件格式不正确, 请上传${this.fileType.join("|")}格式文件!`);
  125. return false;
  126. }
  127. }
  128. // 校检文件大小
  129. if (this.fileSize) {
  130. const isLt = file.size / 1024 / 1024 < this.fileSize;
  131. if (!isLt) {
  132. this.$message.error(`上传文件大小不能超过 ${this.fileSize} MB!`);
  133. return false;
  134. }
  135. }
  136. this.uploadLoading = true
  137. return true;
  138. },
  139. // 文件个数超出
  140. handleExceed() {
  141. this.uploadLoading = false
  142. this.$message.error(`上传文件数量不能超过 ${this.limit} 个!`);
  143. },
  144. // 上传失败
  145. handleUploadError(err) {
  146. this.uploadLoading = false
  147. this.$message.error("上传失败, 请重试");
  148. },
  149. // 上传成功回调
  150. handleUploadSuccess(res, file) {
  151. this.$emit('fatherMethod', file.name);
  152. this.uploadLoading = false
  153. this.$message.success("上传成功");
  154. this.fileList.push({ name: res.url, url: this.baseUrl + res.url });
  155. this.$emit("input", this.listToString(this.fileList));
  156. },
  157. // 删除文件
  158. handleDelete(index) {
  159. this.fileList.splice(index, 1);
  160. this.$emit("input", this.listToString(this.fileList));
  161. },
  162. // 获取文件名称
  163. getFileName(name) {
  164. if (name.lastIndexOf("/") > -1) {
  165. return name.slice(name.lastIndexOf("/") + 1).toLowerCase();
  166. } else {
  167. return "";
  168. }
  169. },
  170. // 对象转成指定字符串分隔
  171. listToString(list, separator) {
  172. let strs = "";
  173. separator = separator || ",";
  174. for (let i in list) {
  175. strs += list[i].url.replace(this.baseUrl, "") + separator;
  176. }
  177. return strs != '' ? strs.substr(0, strs.length - 1) : '';
  178. }
  179. }
  180. };
  181. </script>
  182. <style scoped lang="scss">
  183. .upload-file-uploader {
  184. margin-bottom: 5px;
  185. }
  186. .upload-file-list .el-upload-list__item {
  187. border: 1px solid #e4e7ed;
  188. line-height: 2;
  189. margin-bottom: 10px;
  190. position: relative;
  191. }
  192. .upload-file-list .ele-upload-list__item-content {
  193. display: flex;
  194. justify-content: space-between;
  195. align-items: center;
  196. color: inherit;
  197. }
  198. .ele-upload-list__item-content-action .el-link {
  199. margin-right: 10px;
  200. }
  201. </style>