index.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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. :data="{bucket:'tourism'}"
  15. class="upload-file-uploader"
  16. ref="fileUpload"
  17. >
  18. <!-- 上传按钮 -->
  19. <el-button size="mini" type="primary">选取文件</el-button>
  20. <!-- 上传提示 -->
  21. <div class="el-upload__tip" slot="tip" v-if="showTip">
  22. 请上传
  23. <template v-if="fileSize"> 大小不超过 <b style="color: #f56c6c">{{ fileSize }}MB</b> </template>
  24. <template v-if="fileType"> 格式为 <b style="color: #f56c6c">{{ fileType.join("/") }}</b> </template>
  25. 的文件
  26. </div>
  27. </el-upload>
  28. <!-- 文件列表 -->
  29. <transition-group class="upload-file-list el-upload-list el-upload-list--text" name="el-fade-in-linear" tag="ul">
  30. <li :key="file.url" class="el-upload-list__item ele-upload-list__item-content" v-for="(file, index) in fileList">
  31. <el-link :href="`${baseUrl}${file.url}`" :underline="false" target="_blank">
  32. <span class="el-icon-document"> {{ getFileName(file.name) }} </span>
  33. </el-link>
  34. <div class="ele-upload-list__item-content-action">
  35. <el-link :underline="false" @click="handleDelete(index)" type="danger">删除</el-link>
  36. </div>
  37. </li>
  38. </transition-group>
  39. </div>
  40. </template>
  41. <script>
  42. import { getToken } from "@/utils/auth";
  43. export default {
  44. name: "FileUpload",
  45. props: {
  46. // 值
  47. value: [String, Object, Array],
  48. // 数量限制
  49. limit: {
  50. type: Number,
  51. default: 5,
  52. },
  53. // 大小限制(MB)
  54. fileSize: {
  55. type: Number,
  56. default: 5,
  57. },
  58. // 文件类型, 例如['png', 'jpg', 'jpeg']
  59. fileType: {
  60. type: Array,
  61. default: () => ["doc", "xls", "ppt", "txt", "pdf"],
  62. },
  63. // 是否显示提示
  64. isShowTip: {
  65. type: Boolean,
  66. default: true
  67. }
  68. },
  69. data() {
  70. return {
  71. number: 0,
  72. uploadList: [],
  73. baseUrl: process.env.VUE_APP_BASE_API,
  74. uploadFileUrl: process.env.VUE_APP_UPLOAD_FILE_API + "/thirdapi/upload/single/minio", // 上传文件服务器地址
  75. headers: {
  76. Authorization: "Bearer " + getToken(),
  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 (this.fileSize) {
  126. const isLt = file.size / 1024 / 1024 < this.fileSize;
  127. if (!isLt) {
  128. this.$modal.msgError(`上传文件大小不能超过 ${this.fileSize} MB!`);
  129. return false;
  130. }
  131. }
  132. this.$modal.loading("正在上传文件,请稍候...");
  133. this.number++;
  134. return true;
  135. },
  136. // 文件个数超出
  137. handleExceed() {
  138. this.$modal.msgError(`上传文件数量不能超过 ${this.limit} 个!`);
  139. },
  140. // 上传失败
  141. handleUploadError(err) {
  142. this.$modal.msgError("上传文件失败,请重试");
  143. this.$modal.closeLoading();
  144. },
  145. // 上传成功回调
  146. handleUploadSuccess(res, file) {
  147. if (res.code === 200) {
  148. this.uploadList.push({ name: res.fileName, url: res.fileName });
  149. this.uploadedSuccessfully();
  150. } else {
  151. this.number--;
  152. this.$modal.closeLoading();
  153. this.$modal.msgError(res.msg);
  154. this.$refs.fileUpload.handleRemove(file);
  155. this.uploadedSuccessfully();
  156. }
  157. },
  158. // 删除文件
  159. handleDelete(index) {
  160. this.fileList.splice(index, 1);
  161. this.$emit("input", this.listToString(this.fileList));
  162. },
  163. // 上传结束处理
  164. uploadedSuccessfully() {
  165. if (this.number > 0 && this.uploadList.length === this.number) {
  166. this.fileList = this.fileList.concat(this.uploadList);
  167. this.uploadList = [];
  168. this.number = 0;
  169. this.$emit("input", this.listToString(this.fileList));
  170. this.$modal.closeLoading();
  171. }
  172. },
  173. // 获取文件名称
  174. getFileName(name) {
  175. // 如果是url那么取最后的名字 如果不是直接返回
  176. if (name.lastIndexOf("/") > -1) {
  177. return name.slice(name.lastIndexOf("/") + 1);
  178. } else {
  179. return name;
  180. }
  181. },
  182. // 对象转成指定字符串分隔
  183. listToString(list, separator) {
  184. let strs = "";
  185. separator = separator || ",";
  186. for (let i in list) {
  187. strs += list[i].url + separator;
  188. }
  189. return strs != '' ? strs.substr(0, strs.length - 1) : '';
  190. }
  191. }
  192. };
  193. </script>
  194. <style scoped lang="scss">
  195. .upload-file-uploader {
  196. margin-bottom: 5px;
  197. }
  198. .upload-file-list .el-upload-list__item {
  199. border: 1px solid #e4e7ed;
  200. line-height: 2;
  201. margin-bottom: 10px;
  202. position: relative;
  203. }
  204. .upload-file-list .ele-upload-list__item-content {
  205. display: flex;
  206. justify-content: space-between;
  207. align-items: center;
  208. color: inherit;
  209. }
  210. .ele-upload-list__item-content-action .el-link {
  211. margin-right: 10px;
  212. }
  213. </style>