123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728 |
- <template>
- <view class="u-upload" v-if="!disabled">
- <view
- v-if="showUploadList"
- class="u-list-item u-preview-wrap"
- v-for="(item, index) in lists"
- :key="index"
- :style="{
- width: $u.addUnit(width),
- height: $u.addUnit(height)
- }"
- >
- <view
- v-if="deletable"
- class="u-delete-icon"
- @tap.stop="deleteItem(index)"
- :style="{
- background: delBgColor
- }"
- >
- <u-icon class="u-icon" :name="delIcon" size="20" :color="delColor"></u-icon>
- </view>
-
- <u-line-progress
- v-if="showProgress && item.progress > 0 && item.progress != 100 && !item.error"
- :show-percent="false"
- height="16"
- class="u-progress"
- :percent="item.progress"
- ></u-line-progress>
- <view @tap.stop="retry(index)" v-if="item.error" class="u-error-btn">点击重试</view>
- <image @tap.stop="doPreviewImage(item.url || item.path, index)" class="u-preview-image" v-if="!item.isImage" :src="item.url || item.path" :mode="imageMode"></image>
- </view>
- <slot name="file" :file="lists"></slot>
- <view style="display: inline-block;" @tap="selectFile" v-if="maxCount > lists.length">
- <slot name="addBtn"></slot>
- <view
- v-if="!customBtn"
- class="u-list-item u-add-wrap"
- hover-class="u-add-wrap__hover"
- hover-stay-time="150"
- :style="{
- width: $u.addUnit(width),
- height: $u.addUnit(height)
- }"
- >
- <u-icon name="plus" class="u-add-btn" size="40"></u-icon>
- <view class="u-add-tips">{{ uploadText }}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "u-upload",
- emits: ["update:file-list", "on-oversize", "on-list-change", "on-preview", "on-remove", "on-success", "on-change", "on-error", "on-progress", "on-uploaded", "on-choose-complete", "on-choose-fail"],
- props: {
-
- showUploadList: {
- type: Boolean,
- default: true
- },
-
- action: {
- type: String,
- default: ""
- },
-
- maxCount: {
- type: [String, Number],
- default: 52
- },
-
- showProgress: {
- type: Boolean,
- default: true
- },
-
- disabled: {
- type: Boolean,
- default: false
- },
-
- imageMode: {
- type: String,
- default: "aspectFill"
- },
-
- header: {
- type: Object,
- default() {
- return {};
- }
- },
-
- formData: {
- type: Object,
- default() {
- return {};
- }
- },
-
- name: {
- type: String,
- default: "file"
- },
-
- sizeType: {
- type: Array,
- default() {
- return ["original", "compressed"];
- }
- },
- sourceType: {
- type: Array,
- default() {
- return ["album", "camera"];
- }
- },
-
- previewFullImage: {
- type: Boolean,
- default: true
- },
-
- multiple: {
- type: Boolean,
- default: true
- },
-
- deletable: {
- type: Boolean,
- default: true
- },
-
- maxSize: {
- type: [String, Number],
- default: Number.MAX_VALUE
- },
-
- fileList: {
- type: Array,
- default() {
- return [];
- }
- },
-
- uploadText: {
- type: String,
- default: "选择图片"
- },
-
- autoUpload: {
- type: Boolean,
- default: true
- },
-
- showTips: {
- type: Boolean,
- default: true
- },
-
- customBtn: {
- type: Boolean,
- default: false
- },
-
- width: {
- type: [String, Number],
- default: 200
- },
-
- height: {
- type: [String, Number],
- default: 200
- },
-
- delBgColor: {
- type: String,
- default: "#fa3534"
- },
-
- delColor: {
- type: String,
- default: "#ffffff"
- },
-
- delIcon: {
- type: String,
- default: "close"
- },
-
- successIcon: {
- type: String,
- default: "checkbox-mark"
- },
-
- successColor: {
- type: String,
- default: "#ffffff"
- },
-
- toJson: {
- type: Boolean,
- default: true
- },
-
- beforeUpload: {
- type: Function,
- default: null
- },
-
- beforeRemove: {
- type: Function,
- default: null
- },
-
- limitType: {
- type: Array,
- default() {
-
-
- return ["png", "jpg", "jpeg", "webp", "gif", "image"];
- }
- },
-
- index: {
- type: [Number, String],
- default: ""
- }
- },
- mounted() {},
- data() {
- return {
- lists: [],
- isInCount: true,
- uploading: false
- };
- },
- watch: {
- fileList: {
- immediate: true,
- handler(val) {
- let that = this;
- let lists = JSON.parse(JSON.stringify(that.lists));
- val.map(value => {
-
-
-
- let tmp = lists.some(val => {
- return val.url == value.url;
- });
-
- if (!tmp) {
- lists.push({ url: value.url, error: false, progress: 100 });
- }
- });
- that.lists = JSON.parse(JSON.stringify(lists));
- }
- },
-
- lists: {
- deep: true,
- handler(n) {
- this.$emit("update:file-list", n);
- this.$emit("on-list-change", n, this.index);
- }
- }
- },
- methods: {
-
- clear() {
- this.lists = [];
- },
-
- reUpload() {
- this.uploadFile();
- },
-
- selectFile() {
- let that = this;
- if (that.disabled) return;
- const { name = "", maxCount, multiple, maxSize, sizeType, camera, compressed, maxDuration, sourceType } = that;
- let chooseFile = null;
- let lists = JSON.parse(JSON.stringify(that.lists));
- const newMaxCount = maxCount - lists.length;
-
- chooseFile = new Promise((resolve, reject) => {
- uni.chooseImage({
- count: multiple ? (newMaxCount > 9 ? 9 : newMaxCount) : 1,
- sourceType: sourceType,
- sizeType,
- success: resolve,
- fail: reject
- });
- });
- chooseFile
- .then(res => {
- let file = null;
- let listOldLength = that.lists.length;
- res.tempFiles.map((val, index) => {
-
- if (!that.checkFileExt(val)) return;
-
- if (!multiple && index >= 1) return;
- if (val.size > maxSize) {
- that.$emit("on-oversize", val, that.lists, that.index);
- that.showToast("超出允许的文件大小");
- } else {
- if (maxCount <= lists.length) {
- that.$emit("on-exceed", val, that.lists, that.index);
- that.showToast("超出最大允许的文件个数");
- return;
- }
- lists.push({
- url: val.path,
- progress: 0,
- error: false,
- file: val
- });
- }
- });
-
-
- this.deepClone(lists, that.lists);
-
- that.$emit("on-choose-complete", that.lists, that.index);
- if (that.autoUpload) that.uploadFile(listOldLength);
- })
- .catch(error => {
- that.$emit("on-choose-fail", error);
- });
- },
-
- showToast(message, force = false) {
- if (this.showTips || force) {
- uni.showToast({
- title: message,
- icon: "none"
- });
- }
- },
-
- upload() {
- this.uploadFile();
- },
-
- retry(index) {
- this.lists[index].progress = 0;
- this.lists[index].error = false;
- this.lists[index].response = null;
- uni.showLoading({
- title: "重新上传"
- });
- this.uploadFile(index);
- },
-
- async uploadFile(index = 0) {
- if (this.disabled) return;
- if (this.uploading) return;
-
- if (index >= this.lists.length) {
- this.$emit("on-uploaded", this.lists, this.index);
- return;
- }
-
- if (this.lists[index].progress == 100) {
- if (this.autoUpload == false) this.uploadFile(index + 1);
- return;
- }
-
- if (this.beforeUpload && typeof this.beforeUpload === "function") {
-
-
-
-
-
-
- let beforeResponse = this.beforeUpload.bind(this.$u.$parent.call(this))(index, this.lists);
-
- if (!!beforeResponse && typeof beforeResponse.then === "function") {
- await beforeResponse
- .then(res => {
-
- })
- .catch(err => {
-
- return this.uploadFile(index + 1);
- });
- } else if (beforeResponse === false) {
-
- return this.uploadFile(index + 1);
- } else {
-
- }
- }
-
- if (!this.action) {
- this.showToast("请配置上传地址", true);
- return;
- }
- this.lists[index].error = false;
- this.uploading = true;
-
- const task = uni.uploadFile({
- url: this.action,
- filePath: this.lists[index].url,
- name: this.name,
- formData: this.formData,
- header: this.header,
-
- fileType:'image',
-
- success: res => {
-
- let data = this.toJson && this.$u.test.jsonString(res.data) ? JSON.parse(res.data) : res.data;
- if (![200, 201, 204].includes(res.statusCode)) {
- this.uploadError(index, data);
- } else {
-
- this.lists[index].response = data;
- this.lists[index].progress = 100;
- this.lists[index].error = false;
- this.$emit("on-success", data, index, this.lists, this.index);
- }
- },
- fail: e => {
- this.uploadError(index, e);
- },
- complete: res => {
- uni.hideLoading();
- this.uploading = false;
- this.uploadFile(index + 1);
- this.$emit("on-change", res, index, this.lists, this.index);
- }
- });
- task.onProgressUpdate(res => {
- if (res.progress > 0) {
- this.lists[index].progress = res.progress;
- this.$emit("on-progress", res, index, this.lists, this.index);
- }
- });
- },
-
- uploadError(index, err) {
- this.lists[index].progress = 0;
- this.lists[index].error = true;
- this.lists[index].response = null;
- this.$emit("on-error", err, index, this.lists, this.index);
- this.showToast("上传失败,请重试");
- },
-
- deleteItem(index) {
- uni.showModal({
- title: "提示",
- content: "您确定要删除此项吗?",
- success: async res => {
- if (res.confirm) {
-
-
- if (this.beforeRemove && typeof this.beforeRemove === "function") {
-
- let beforeResponse = this.beforeRemove.bind(this.$u.$parent.call(this))(index, this.lists);
-
- if (!!beforeResponse && typeof beforeResponse.then === "function") {
- await beforeResponse
- .then(res => {
-
- this.handlerDeleteItem(index);
- })
- .catch(err => {
-
- this.showToast("已终止移除");
- });
- } else if (beforeResponse === false) {
-
- this.showToast("已终止移除");
- } else {
-
- this.handlerDeleteItem(index);
- }
- } else {
-
- this.handlerDeleteItem(index);
- }
- }
- }
- });
- },
-
- handlerDeleteItem(index) {
-
- if (this.lists[index].progress < 100 && this.lists[index].progress > 0) {
- typeof this.lists[index].uploadTask != 'undefined' && this.lists[index].uploadTask.abort();
- }
- this.lists.splice(index, 1);
- this.$forceUpdate();
- this.$emit("on-remove", index, this.lists, this.index);
-
- },
-
- remove(index) {
-
- if (index >= 0 && index < this.lists.length) {
- this.lists.splice(index, 1);
- this.$emit('on-list-change', this.lists, this.index);
- }
- },
-
- doPreviewImage(url, index) {
- if (!this.previewFullImage) {
- this.$emit("on-preview", url, this.lists, this.index);
- return;
- }
- const images = this.lists.map(item => item.url || item.path);
- uni.previewImage({
- urls: images,
- current: url,
- success: () => {
- this.$emit("on-preview", url, this.lists, this.index);
- },
- fail: () => {
- uni.showToast({
- title: "预览图片失败",
- icon: "none"
- });
- }
- });
- },
-
- checkFileExt(file) {
-
- let noArrowExt = false;
-
- let fileExt = "";
- const reg = /.+\./;
-
-
- fileExt = file.name.replace(reg, "").toLowerCase();
-
-
-
- fileExt = file.path.replace(reg, "").toLowerCase();
-
-
- noArrowExt = this.limitType.some(ext => {
-
- return ext.toLowerCase() === fileExt;
- });
- if (!noArrowExt) this.showToast(`不允许选择${fileExt}格式的文件`);
- return noArrowExt;
- },
-
- deepClone(obj, newObj) {
- for (let k in obj) {
- const value = obj[k];
- if (Array.isArray(value)) {
- newObj[k] = [];
- this.deepClone(value, newObj[k]);
- } else if (value !== null && typeof value === "object") {
- newObj[k] = {};
- this.deepClone(value, newObj[k]);
- } else {
- newObj[k] = value;
- }
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- @import "../../libs/css/style.components.scss";
- .u-upload {
- @include vue-flex;
- flex-wrap: wrap;
- align-items: center;
- }
- .u-list-item {
- width: 200rpx;
- height: 200rpx;
- overflow: hidden;
- margin: 10rpx;
- background: rgb(244, 245, 246);
- position: relative;
- border-radius: 10rpx;
- /* #ifndef APP-NVUE */
- display: flex;
- /* #endif */
- align-items: center;
- justify-content: center;
- }
- .u-preview-wrap {
- border: 1px solid rgb(235, 236, 238);
- }
- .u-add-wrap {
- flex-direction: column;
- color: $u-content-color;
- font-size: 26rpx;
- }
- .u-add-tips {
- margin-top: 20rpx;
- line-height: 40rpx;
- }
- .u-add-wrap__hover {
- background-color: rgb(235, 236, 238);
- }
- .u-preview-image {
- display: block;
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- .u-delete-icon {
- position: absolute;
- top: 6rpx;
- right: 6rpx;
- z-index: 10;
- background-color: $u-type-error;
- border-radius: 100rpx;
- width: 36rpx;
- height: 36rpx;
- @include vue-flex;
- align-items: center;
- justify-content: center;
- }
- .u-icon {
- @include vue-flex;
- align-items: center;
- justify-content: center;
- }
- .u-success-icon {
- position: absolute;
- bottom: 6rpx;
- right: 6rpx;
- z-index: 10;
- background-color: #5ac725;
- border-radius: 100rpx;
- width: 36rpx;
- height: 36rpx;
- @include vue-flex;
- align-items: center;
- justify-content: center;
- }
- .u-progress {
- position: absolute;
- bottom: 10rpx;
- left: 8rpx;
- right: 8rpx;
- z-index: 9;
- width: auto;
- }
- .u-error-btn {
- color: #ffffff;
- background-color: $u-type-error;
- font-size: 20rpx;
- padding: 4px 0;
- text-align: center;
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 9;
- line-height: 1;
- }
- </style>
|