index.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <div class="component-upload-image">
  3. <el-upload
  4. multiple
  5. :action="uploadImgUrl"
  6. list-type="picture-card"
  7. :on-success="handleUploadSuccess"
  8. :before-upload="handleBeforeUpload"
  9. :limit="limit"
  10. :on-error="handleUploadError"
  11. :on-exceed="handleExceed"
  12. ref="imageUpload"
  13. :on-remove="handleDelete"
  14. :show-file-list="true"
  15. :headers="headers"
  16. :file-list="fileList"
  17. :on-preview="handlePictureCardPreview"
  18. :class="{hide: this.fileList.length >= this.limit}"
  19. >
  20. <i class="el-icon-plus"></i>
  21. </el-upload>
  22. <!-- 上传提示 -->
  23. <div class="el-upload__tip" slot="tip" v-if="showTip">
  24. 请上传
  25. <template v-if="fileSize"> 大小不超过 <b style="color: #f56c6c">{{ fileSize }}MB</b> </template>
  26. <template v-if="fileType"> 格式为 <b style="color: #f56c6c">{{ fileType.join("/") }}</b> </template>
  27. 的文件
  28. </div>
  29. <el-dialog
  30. :visible.sync="dialogVisible"
  31. title="预览"
  32. width="800"
  33. append-to-body
  34. :close-on-click-modal="false"
  35. >
  36. <img
  37. :src="dialogImageUrl"
  38. style="display: block; max-width: 100%; margin: 0 auto"
  39. />
  40. </el-dialog>
  41. </div>
  42. </template>
  43. <script>
  44. import { getToken } from "@/utils/auth";
  45. export default {
  46. props: {
  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: () => ["png", "jpg", "jpeg"],
  62. },
  63. // 是否显示提示
  64. isShowTip: {
  65. type: Boolean,
  66. default: true
  67. }
  68. },
  69. data() {
  70. return {
  71. number: 0,
  72. uploadList: [],
  73. dialogImageUrl: "",
  74. dialogVisible: false,
  75. hideUpload: false,
  76. baseUrl: process.env.VUE_APP_BASE_API,
  77. uploadImgUrl: process.env.VUE_APP_BASE_API + "/common/upload", // 上传的图片服务器地址
  78. headers: {
  79. Authorization: "Bearer " + getToken(),
  80. },
  81. fileList: []
  82. };
  83. },
  84. watch: {
  85. value: {
  86. handler(val) {
  87. if (val) {
  88. // 首先将值转为数组
  89. const list = Array.isArray(val) ? val : this.value.split(',');
  90. // 然后将数组转为对象数组
  91. this.fileList = list.map(item => {
  92. if (typeof item === "string") {
  93. if (item.indexOf(this.baseUrl) === -1) {
  94. item = { name: this.baseUrl + item, url: this.baseUrl + item };
  95. } else {
  96. item = { name: item, url: item };
  97. }
  98. }
  99. return item;
  100. });
  101. } else {
  102. this.fileList = [];
  103. return [];
  104. }
  105. },
  106. deep: true,
  107. immediate: true
  108. }
  109. },
  110. computed: {
  111. // 是否显示提示
  112. showTip() {
  113. return this.isShowTip && (this.fileType || this.fileSize);
  114. },
  115. },
  116. methods: {
  117. // 上传前loading加载
  118. handleBeforeUpload(file) {
  119. let isImg = false;
  120. if (this.fileType.length) {
  121. let fileExtension = "";
  122. if (file.name.lastIndexOf(".") > -1) {
  123. fileExtension = file.name.slice(file.name.lastIndexOf(".") + 1);
  124. }
  125. isImg = this.fileType.some(type => {
  126. if (file.type.indexOf(type) > -1) return true;
  127. if (fileExtension && fileExtension.indexOf(type) > -1) return true;
  128. return false;
  129. });
  130. } else {
  131. isImg = file.type.indexOf("image") > -1;
  132. }
  133. if (!isImg) {
  134. this.$modal.msgError(`文件格式不正确, 请上传${this.fileType.join("/")}图片格式文件!`);
  135. return false;
  136. }
  137. if (this.fileSize) {
  138. const isLt = file.size / 1024 / 1024 < this.fileSize;
  139. if (!isLt) {
  140. this.$modal.msgError(`上传头像图片大小不能超过 ${this.fileSize} MB!`);
  141. return false;
  142. }
  143. }
  144. this.$modal.loading("正在上传图片,请稍候...");
  145. this.number++;
  146. },
  147. // 文件个数超出
  148. handleExceed() {
  149. this.$modal.msgError(`上传文件数量不能超过 ${this.limit} 个!`);
  150. },
  151. // 上传成功回调
  152. handleUploadSuccess(res, file) {
  153. if (res.code === 200) {
  154. this.uploadList.push({ name: res.fileName, url: res.fileName });
  155. this.uploadedSuccessfully();
  156. } else {
  157. this.number--;
  158. this.$modal.closeLoading();
  159. this.$modal.msgError(res.msg);
  160. this.$refs.imageUpload.handleRemove(file);
  161. this.uploadedSuccessfully();
  162. }
  163. },
  164. // 删除图片
  165. handleDelete(file) {
  166. const findex = this.fileList.map(f => f.name).indexOf(file.name);
  167. if(findex > -1) {
  168. this.fileList.splice(findex, 1);
  169. this.$emit("input", this.listToString(this.fileList));
  170. }
  171. },
  172. // 上传失败
  173. handleUploadError() {
  174. this.$modal.msgError("上传图片失败,请重试");
  175. this.$modal.closeLoading();
  176. },
  177. // 上传结束处理
  178. uploadedSuccessfully() {
  179. if (this.number > 0 && this.uploadList.length === this.number) {
  180. this.fileList = this.fileList.concat(this.uploadList);
  181. this.uploadList = [];
  182. this.number = 0;
  183. this.$emit("input", this.listToString(this.fileList));
  184. this.$modal.closeLoading();
  185. }
  186. },
  187. // 预览
  188. handlePictureCardPreview(file) {
  189. this.dialogImageUrl = file.url;
  190. this.dialogVisible = true;
  191. },
  192. // 对象转成指定字符串分隔
  193. listToString(list, separator) {
  194. let strs = "";
  195. separator = separator || ",";
  196. for (let i in list) {
  197. if (list[i].url) {
  198. strs += list[i].url.replace(this.baseUrl, "") + separator;
  199. }
  200. }
  201. return strs != '' ? strs.substr(0, strs.length - 1) : '';
  202. }
  203. }
  204. };
  205. </script>
  206. <style scoped lang="scss">
  207. // .el-upload--picture-card 控制加号部分
  208. ::v-deep.hide .el-upload--picture-card {
  209. display: none;
  210. }
  211. // 去掉动画效果
  212. ::v-deep .el-list-enter-active,
  213. ::v-deep .el-list-leave-active {
  214. transition: all 0s;
  215. }
  216. ::v-deep .el-list-enter, .el-list-leave-active {
  217. opacity: 0;
  218. transform: translateY(0);
  219. }
  220. </style>