u-upload.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. <template>
  2. <view class="u-upload" v-if="!disabled">
  3. <view v-if="showUploadList" class="u-list-item u-preview-wrap" v-for="(item, index) in lists" :key="index" :style="{
  4. width: $u.addUnit(width),
  5. height: $u.addUnit(height)
  6. }">
  7. <view v-if="deletable" class="u-delete-icon" @tap.stop="deleteItem(index)" :style="{
  8. background: delBgColor
  9. }">
  10. <u-icon class="u-icon" :name="delIcon" size="20" :color="delColor"></u-icon>
  11. </view>
  12. <u-line-progress v-if="showProgress && item.progress > 0 && !item.error" :show-percent="false" height="16" class="u-progress"
  13. :percent="item.progress"></u-line-progress>
  14. <view @tap.stop="retry(index)" v-if="item.error" class="u-error-btn">点击重试</view>
  15. <image @tap.stop="doPreviewImage(item.url || item.path, index)" class="u-preview-image" v-if="!item.isImage" :src="item.url || item.path"
  16. :mode="imageMode"></image>
  17. </view>
  18. <slot name="file" :file="lists"></slot>
  19. <view style="display: inline-block;" @tap.stop="selectFile" v-if="maxCount > lists.length">
  20. <slot name="addBtn"></slot>
  21. <view v-if="!customBtn" class="u-list-item u-add-wrap" hover-class="u-add-wrap__hover" hover-stay-time="150" :style="{
  22. width: $u.addUnit(width),
  23. height: $u.addUnit(height)
  24. }">
  25. <u-icon name="plus" class="u-add-btn" size="40"></u-icon>
  26. <view class="u-add-tips">{{ uploadText }}</view>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. /**
  33. * upload 图片上传
  34. * @description 该组件用于上传图片场景
  35. * @tutorial https://www.uviewui.com/components/upload.html
  36. * @property {String} action 服务器上传地址
  37. * @property {String Number} max-count 最大选择图片的数量(默认99)
  38. * @property {Boolean} custom-btn 如果需要自定义选择图片的按钮,设置为true(默认false)
  39. * @property {Boolean} show-progress 是否显示进度条(默认true)
  40. * @property {Boolean} disabled 是否启用(显示/移仓)组件(默认false)
  41. * @property {String} image-mode 预览图片等显示模式,可选值为uni的image的mode属性值(默认aspectFill)
  42. * @property {String} del-icon 右上角删除图标名称,只能为uView内置图标
  43. * @property {String} del-bg-color 右上角关闭按钮的背景颜色
  44. * @property {String | Number} index 在各个回调事件中的最后一个参数返回,用于区别是哪一个组件的事件
  45. * @property {String} del-color 右上角关闭按钮图标的颜色
  46. * @property {Object} header 上传携带的头信息,对象形式
  47. * @property {Object} form-data 上传额外携带的参数
  48. * @property {String} name 上传文件的字段名,供后端获取使用(默认file)
  49. * @property {Array<String>} size-type original 原图,compressed 压缩图,默认二者都有(默认['original', 'compressed'])
  50. * @property {Array<String>} source-type 选择图片的来源,album-从相册选图,camera-使用相机,默认二者都有(默认['album', 'camera'])
  51. * @property {Boolean} preview-full-image 是否可以通过uni.previewImage预览已选择的图片(默认true)
  52. * @property {Boolean} multiple 是否开启图片多选,部分安卓机型不支持(默认true)
  53. * @property {Boolean} deletable 是否显示删除图片的按钮(默认true)
  54. * @property {String Number} max-size 选择单个文件的最大大小,单位B(byte),默认不限制(默认Number.MAX_VALUE)
  55. * @property {Array<Object>} file-list 默认显示的图片列表,数组元素为对象,必须提供url属性
  56. * @property {Boolean} upload-text 选择图片按钮的提示文字(默认“选择图片”)
  57. * @property {Boolean} auto-upload 选择完图片是否自动上传,见上方说明(默认true)
  58. * @property {Boolean} show-tips 特殊情况下是否自动提示toast,见上方说明(默认true)
  59. * @property {Boolean} show-upload-list 是否显示组件内部的图片预览(默认true)
  60. * @event {Function} on-oversize 图片大小超出最大允许大小
  61. * @event {Function} on-preview 全屏预览图片时触发
  62. * @event {Function} on-remove 移除图片时触发
  63. * @event {Function} on-success 图片上传成功时触发
  64. * @event {Function} on-change 图片上传后,无论成功或者失败都会触发
  65. * @event {Function} on-error 图片上传失败时触发
  66. * @event {Function} on-progress 图片上传过程中的进度变化过程触发
  67. * @event {Function} on-uploaded 所有图片上传完毕触发
  68. * @event {Function} on-choose-complete 每次选择图片后触发,只是让外部可以得知每次选择后,内部的文件列表
  69. * @example <u-upload :action="action" :file-list="fileList" ></u-upload>
  70. */
  71. export default {
  72. name: 'u-upload',
  73. props: {
  74. //是否显示组件自带的图片预览功能
  75. showUploadList: {
  76. type: Boolean,
  77. default: true
  78. },
  79. // 后端地址
  80. action: {
  81. type: String,
  82. default: ''
  83. },
  84. // 最大上传数量
  85. maxCount: {
  86. type: [String, Number],
  87. default: 52
  88. },
  89. // 是否显示进度条
  90. showProgress: {
  91. type: Boolean,
  92. default: true
  93. },
  94. // 是否启用
  95. disabled: {
  96. type: Boolean,
  97. default: false
  98. },
  99. // 预览上传的图片时的裁剪模式,和image组件mode属性一致
  100. imageMode: {
  101. type: String,
  102. default: 'aspectFill'
  103. },
  104. // 头部信息
  105. header: {
  106. type: Object,
  107. default () {
  108. return {};
  109. }
  110. },
  111. // 额外携带的参数
  112. formData: {
  113. type: Object,
  114. default () {
  115. return {};
  116. }
  117. },
  118. // 上传的文件字段名
  119. name: {
  120. type: String,
  121. default: 'file'
  122. },
  123. // 所选的图片的尺寸, 可选值为original compressed
  124. sizeType: {
  125. type: Array,
  126. default () {
  127. return ['original', 'compressed'];
  128. }
  129. },
  130. sourceType: {
  131. type: Array,
  132. default () {
  133. return ['album', 'camera'];
  134. }
  135. },
  136. // 是否在点击预览图后展示全屏图片预览
  137. previewFullImage: {
  138. type: Boolean,
  139. default: true
  140. },
  141. // 是否开启图片多选,部分安卓机型不支持
  142. multiple: {
  143. type: Boolean,
  144. default: true
  145. },
  146. // 是否展示删除按钮
  147. deletable: {
  148. type: Boolean,
  149. default: true
  150. },
  151. // 文件大小限制,单位为byte
  152. maxSize: {
  153. type: [String, Number],
  154. default: Number.MAX_VALUE
  155. },
  156. // 显示已上传的文件列表
  157. fileList: {
  158. type: Array,
  159. default () {
  160. return [];
  161. }
  162. },
  163. // 上传区域的提示文字
  164. uploadText: {
  165. type: String,
  166. default: '选择图片'
  167. },
  168. // 是否自动上传
  169. autoUpload: {
  170. type: Boolean,
  171. default: true
  172. },
  173. // 是否显示toast消息提示
  174. showTips: {
  175. type: Boolean,
  176. default: true
  177. },
  178. // 是否通过slot自定义传入选择图标的按钮
  179. customBtn: {
  180. type: Boolean,
  181. default: false
  182. },
  183. // 内部预览图片区域和选择图片按钮的区域宽度
  184. width: {
  185. type: [String, Number],
  186. default: 200
  187. },
  188. // 内部预览图片区域和选择图片按钮的区域高度
  189. height: {
  190. type: [String, Number],
  191. default: 200
  192. },
  193. // 右上角关闭按钮的背景颜色
  194. delBgColor: {
  195. type: String,
  196. default: '#fa3534'
  197. },
  198. // 右上角关闭按钮的叉号图标的颜色
  199. delColor: {
  200. type: String,
  201. default: '#ffffff'
  202. },
  203. // 右上角删除图标名称,只能为uView内置图标
  204. delIcon: {
  205. type: String,
  206. default: 'close'
  207. },
  208. // 如果上传后的返回值为json字符串,是否自动转json
  209. toJson: {
  210. type: Boolean,
  211. default: true
  212. },
  213. // 上传前的钩子,每个文件上传前都会执行
  214. beforeUpload: {
  215. type: Function,
  216. default: null
  217. },
  218. // 移除文件前的钩子
  219. beforeRemove: {
  220. type: Function,
  221. default: null
  222. },
  223. // 允许上传的图片后缀
  224. limitType: {
  225. type: Array,
  226. default () {
  227. return ['png', 'jpg', 'jpeg', 'webp', 'gif'];
  228. }
  229. },
  230. // 在各个回调事件中的最后一个参数返回,用于区别是哪一个组件的事件
  231. index: {
  232. type: [Number, String],
  233. default: ''
  234. }
  235. },
  236. mounted() {},
  237. data() {
  238. return {
  239. lists: [],
  240. isInCount: true,
  241. uploading: false
  242. };
  243. },
  244. watch: {
  245. fileList: {
  246. immediate: true,
  247. handler(val) {
  248. val.map(value => {
  249. // 首先检查内部是否已经添加过这张图片,因为外部绑定了一个对象给fileList的话(对象引用),进行修改外部fileList
  250. // 时,会触发watch,导致重新把原来的图片再次添加到this.lists
  251. // 数组的some方法意思是,只要数组元素有任意一个元素条件符合,就返回true,而另一个数组的every方法的意思是数组所有元素都符合条件才返回true
  252. let tmp = this.lists.some(val => {
  253. return val.url == value.url;
  254. })
  255. // 如果内部没有这个图片(tmp为false),则添加到内部
  256. !tmp && this.lists.push({
  257. url: value.url,
  258. error: false,
  259. progress: 100
  260. });
  261. });
  262. }
  263. },
  264. // 监听lists的变化,发出事件
  265. lists(n) {
  266. this.$emit('on-list-change', n, this.index);
  267. }
  268. },
  269. methods: {
  270. // 清除列表
  271. clear() {
  272. this.lists = [];
  273. },
  274. // 重新上传队列中上传失败的所有文件
  275. reUpload() {
  276. this.uploadFile();
  277. },
  278. // 选择图片
  279. selectFile() {
  280. if (this.disabled) return;
  281. const {
  282. name = '', maxCount, multiple, maxSize, sizeType, lists, camera, compressed, maxDuration, sourceType
  283. } = this;
  284. let chooseFile = null;
  285. const newMaxCount = maxCount - lists.length;
  286. // 设置为只选择图片的时候使用 chooseImage 来实现
  287. chooseFile = new Promise((resolve, reject) => {
  288. uni.chooseImage({
  289. count: multiple ? (newMaxCount > 9 ? 9 : newMaxCount) : 1,
  290. sourceType: sourceType,
  291. sizeType,
  292. success: resolve,
  293. fail: reject
  294. });
  295. });
  296. chooseFile
  297. .then(res => {
  298. let file = null;
  299. let listOldLength = this.lists.length;
  300. res.tempFiles.map((val, index) => {
  301. // 检查文件后缀是否允许,如果不在this.limitType内,就会返回false
  302. if (!this.checkFileExt(val)) return;
  303. // 如果是非多选,index大于等于1或者超出最大限制数量时,不处理
  304. if (!multiple && index >= 1) return;
  305. if (val.size > maxSize) {
  306. this.$emit('on-oversize', val, this.lists, this.index);
  307. this.showToast('超出允许的文件大小');
  308. } else {
  309. if (maxCount <= lists.length) {
  310. this.$emit('on-exceed', val, this.lists, this.index);
  311. this.showToast('超出最大允许的文件个数');
  312. return;
  313. }
  314. lists.push({
  315. url: val.path,
  316. progress: 0,
  317. error: false,
  318. file: val
  319. });
  320. }
  321. });
  322. // 每次图片选择完,抛出一个事件,并将当前内部选择的图片数组抛出去
  323. this.$emit('on-choose-complete', this.lists, this.index);
  324. if (this.autoUpload) this.uploadFile(listOldLength);
  325. })
  326. .catch(error => {
  327. this.$emit('on-choose-fail', error);
  328. });
  329. },
  330. // 提示用户消息
  331. showToast(message, force = false) {
  332. if (this.showTips || force) {
  333. uni.showToast({
  334. title: message,
  335. icon: 'none'
  336. });
  337. }
  338. },
  339. // 该方法供用户通过ref调用,手动上传
  340. upload() {
  341. this.uploadFile();
  342. },
  343. // 对失败的图片重新上传
  344. retry(index) {
  345. this.lists[index].progress = 0;
  346. this.lists[index].error = false;
  347. this.lists[index].response = null;
  348. uni.showLoading({
  349. title: '重新上传'
  350. });
  351. this.uploadFile(index);
  352. },
  353. // 上传图片
  354. async uploadFile(index = 0) {
  355. if (this.disabled) return;
  356. if (this.uploading) return;
  357. // 全部上传完成
  358. if (index >= this.lists.length) {
  359. this.$emit('on-uploaded', this.lists, this.index);
  360. return;
  361. }
  362. // 检查是否是已上传或者正在上传中
  363. if (this.lists[index].progress == 100) {
  364. if (this.autoUpload == false) this.uploadFile(index + 1);
  365. return;
  366. }
  367. // 执行before-upload钩子
  368. if (this.beforeUpload && typeof(this.beforeUpload) === 'function') {
  369. // 执行回调,同时传入索引和文件列表当作参数
  370. // 在微信,支付宝等环境(H5正常),会导致父组件定义的customBack()函数体中的this变成子组件的this
  371. // 通过bind()方法,绑定父组件的this,让this.customBack()的this为父组件的上下文
  372. // 因为upload组件可能会被嵌套在其他组件内,比如u-form,这时this.$parent其实为u-form的this,
  373. // 非页面的this,所以这里需要往上历遍,一直寻找到最顶端的$parent,这里用了this.$u.$parent.call(this)
  374. // 明白意思即可,无需纠结this.$u.$parent.call(this)的细节
  375. let beforeResponse = this.beforeUpload.bind(this.$u.$parent.call(this))(index, this.lists);
  376. // 判断是否返回了promise
  377. if (!!beforeResponse && typeof beforeResponse.then === 'function') {
  378. await beforeResponse.then(res => {
  379. // promise返回成功,不进行动作,继续上传
  380. }).catch(err => {
  381. // 进入catch回调的话,继续下一张
  382. return this.uploadFile(index + 1);
  383. })
  384. } else if (beforeResponse === false) {
  385. // 如果返回false,继续下一张图片的上传
  386. return this.uploadFile(index + 1);
  387. } else {
  388. // 此处为返回"true"的情形,这里不写代码,就跳过此处,继续执行当前的上传逻辑
  389. }
  390. }
  391. // 检查上传地址
  392. if (!this.action) {
  393. this.showToast('请配置上传地址', true);
  394. return;
  395. }
  396. this.lists[index].error = false;
  397. this.uploading = true;
  398. // 创建上传对象
  399. const task = uni.uploadFile({
  400. url: this.action,
  401. filePath: this.lists[index].url,
  402. name: this.name,
  403. formData: this.formData,
  404. header: this.header,
  405. success: res => {
  406. // 判断是否json字符串,将其转为json格式
  407. let data = this.toJson && this.$u.test.jsonString(res.data) ? JSON.parse(res.data) : res.data;
  408. if (![200, 201, 204].includes(res.statusCode)) {
  409. this.uploadError(index, data);
  410. } else {
  411. // 上传成功
  412. this.lists[index].response = data;
  413. this.lists[index].progress = 100;
  414. this.lists[index].error = false;
  415. this.$emit('on-success', data, index, this.lists, this.index);
  416. }
  417. },
  418. fail: e => {
  419. this.uploadError(index, e);
  420. },
  421. complete: res => {
  422. uni.hideLoading();
  423. this.uploading = false;
  424. this.uploadFile(index + 1);
  425. this.$emit('on-change', res, index, this.lists, this.index);
  426. }
  427. });
  428. task.onProgressUpdate(res => {
  429. if (res.progress > 0) {
  430. this.lists[index].progress = res.progress;
  431. this.$emit('on-progress', res, index, this.lists, this.index);
  432. }
  433. });
  434. },
  435. // 上传失败
  436. uploadError(index, err) {
  437. this.lists[index].progress = 0;
  438. this.lists[index].error = true;
  439. this.lists[index].response = null;
  440. this.$emit('on-error', err, index, this.lists, this.index);
  441. this.showToast('上传失败,请重试');
  442. },
  443. // 删除一个图片
  444. deleteItem(index) {
  445. uni.showModal({
  446. title: '提示',
  447. content: '您确定要删除此项吗?',
  448. success: async (res) => {
  449. if (res.confirm) {
  450. // 先检查是否有定义before-remove移除前钩子
  451. // 执行before-remove钩子
  452. if (this.beforeRemove && typeof(this.beforeRemove) === 'function') {
  453. // 此处钩子执行 原理同before-remove参数,见上方注释
  454. let beforeResponse = this.beforeRemove.bind(this.$u.$parent.call(this))(index, this.lists);
  455. // 判断是否返回了promise
  456. if (!!beforeResponse && typeof beforeResponse.then === 'function') {
  457. await beforeResponse.then(res => {
  458. // promise返回成功,不进行动作,继续上传
  459. this.handlerDeleteItem(index);
  460. }).catch(err => {
  461. // 如果进入promise的reject,终止删除操作
  462. this.showToast('已终止移除');
  463. })
  464. } else if (beforeResponse === false) {
  465. // 返回false,终止删除
  466. this.showToast('已终止移除');
  467. } else {
  468. // 如果返回true,执行删除操作
  469. this.handlerDeleteItem(index);
  470. }
  471. } else {
  472. // 如果不存在before-remove钩子,
  473. this.handlerDeleteItem(index);
  474. }
  475. }
  476. }
  477. });
  478. },
  479. // 执行移除图片的动作,上方代码只是判断是否可以移除
  480. handlerDeleteItem(index) {
  481. // 如果文件正在上传中,终止上传任务,进度在0 < progress < 100则意味着正在上传
  482. if (this.lists[index].process < 100 && this.lists[index].process > 0) {
  483. typeof this.lists[index].uploadTask != 'undefined' && this.lists[index].uploadTask.abort();
  484. }
  485. this.lists.splice(index, 1);
  486. this.$forceUpdate();
  487. this.$emit('on-remove', index, this.lists, this.index);
  488. this.showToast('移除成功');
  489. },
  490. // 用户通过ref手动的形式,移除一张图片
  491. remove(index) {
  492. // 判断索引的合法范围
  493. if (index >= 0 && index < this.lists.length) {
  494. this.lists.splice(index, 1);
  495. this.$emit('on-list-change', this.lists, this.index);
  496. }
  497. },
  498. // 预览图片
  499. doPreviewImage(url, index) {
  500. if (!this.previewFullImage) {
  501. this.$emit('on-preview-error', url, this.lists, this.index);
  502. return;
  503. }
  504. const images = this.lists.map(item => item.url || item.path);
  505. uni.previewImage({
  506. urls: images,
  507. current: url,
  508. success: () => {
  509. this.$emit('on-preview', url, this.lists, this.index);
  510. },
  511. fail: () => {
  512. uni.showToast({
  513. title: '预览图片失败',
  514. icon: 'none'
  515. });
  516. }
  517. });
  518. },
  519. // 判断文件后缀是否允许
  520. checkFileExt(file) {
  521. // 检查是否在允许的后缀中
  522. let noArrowExt = false;
  523. // 获取后缀名
  524. let fileExt = '';
  525. const reg = /.+\./;
  526. // 如果是H5,需要从name中判断
  527. // #ifdef H5
  528. fileExt = file.name.replace(reg, "").toLowerCase();
  529. // #endif
  530. // 非H5,需要从path中读取后缀
  531. // #ifndef H5
  532. fileExt = file.path.replace(reg, "").toLowerCase();
  533. // #endif
  534. // 使用数组的some方法,只要符合limitType中的一个,就返回true
  535. noArrowExt = this.limitType.some(ext => {
  536. // 转为小写
  537. return ext.toLowerCase() === fileExt;
  538. })
  539. if (!noArrowExt) this.showToast(`不允许选择${fileExt}格式的文件`);
  540. return noArrowExt;
  541. }
  542. }
  543. };
  544. </script>
  545. <style lang="scss" scoped>
  546. @import '../../libs/css/style.components.scss';
  547. .u-upload {
  548. @include vue-flex;
  549. flex-wrap: wrap;
  550. align-items: center;
  551. }
  552. .u-list-item {
  553. width: 200rpx;
  554. height: 200rpx;
  555. overflow: hidden;
  556. margin: 10rpx;
  557. background: rgb(244, 245, 246);
  558. position: relative;
  559. border-radius: 10rpx;
  560. /* #ifndef APP-NVUE */
  561. display: flex;
  562. /* #endif */
  563. align-items: center;
  564. justify-content: center;
  565. }
  566. .u-preview-wrap {
  567. border: 1px solid rgb(235, 236, 238);
  568. }
  569. .u-add-wrap {
  570. flex-direction: column;
  571. color: $u-content-color;
  572. font-size: 26rpx;
  573. }
  574. .u-add-tips {
  575. margin-top: 20rpx;
  576. line-height: 40rpx;
  577. }
  578. .u-add-wrap__hover {
  579. background-color: rgb(235, 236, 238);
  580. }
  581. .u-preview-image {
  582. display: block;
  583. width: 100%;
  584. height: 100%;
  585. border-radius: 10rpx;
  586. }
  587. .u-delete-icon {
  588. position: absolute;
  589. top: 10rpx;
  590. right: 10rpx;
  591. z-index: 10;
  592. background-color: $u-type-error;
  593. border-radius: 100rpx;
  594. width: 44rpx;
  595. height: 44rpx;
  596. @include vue-flex;
  597. align-items: center;
  598. justify-content: center;
  599. }
  600. .u-icon {
  601. @include vue-flex;
  602. align-items: center;
  603. justify-content: center;
  604. }
  605. .u-progress {
  606. position: absolute;
  607. bottom: 10rpx;
  608. left: 8rpx;
  609. right: 8rpx;
  610. z-index: 9;
  611. width: auto;
  612. }
  613. .u-error-btn {
  614. color: #ffffff;
  615. background-color: $u-type-error;
  616. font-size: 20rpx;
  617. padding: 4px 0;
  618. text-align: center;
  619. position: absolute;
  620. bottom: 0;
  621. left: 0;
  622. right: 0;
  623. z-index: 9;
  624. line-height: 1;
  625. }
  626. </style>