123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- <template>
- <view class="tui-container">
- <view class="tui-upload-box">
- <view class="tui-image-item" v-for="(item,index) in imageList" :key="index">
- <image :src="item" class="tui-item-img" @tap.stop="previewImage(index)" mode="aspectFill"></image>
- <view v-if="!forbidDel" class="tui-img-del" @tap.stop="delImage(index)"></view>
- <view v-if="statusArr[index]!=1" class="tui-upload-mask">
- <view class="tui-upload-loading" v-if="statusArr[index]==2"></view>
- <text class="tui-tips">{{statusArr[index]==2?'上传中...':'上传失败'}}</text>
- <view class="tui-mask-btn" v-if="statusArr[index]==3" @tap.stop="reUpLoad(index)" hover-class="tui-hover"
- :hover-stay-time="150">重新上传</view>
- </view>
- </view>
- <view v-if="isShowAdd" class="tui-upload-add" @tap="chooseImage">
- <view class="tui-upload-icon tui-icon-plus"></view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'tuiUpload',
- props: {
- //初始化图片路径
- value: {
- type: Array,
- default () {
- return []
- }
- },
- //禁用删除
- forbidDel: {
- type: Boolean,
- default: false
- },
- //禁用添加
- forbidAdd: {
- type: Boolean,
- default: false
- },
- //服务器地址
- serverUrl: {
- type: String,
- default: ""
- },
- //限制数
- limit: {
- type: Number,
- default: 9
- },
- //项目名,默认为 file
- fileKeyName: {
- type: String,
- default: "file"
- }
- },
- data() {
- return {
- //图片地址
- imageList: [],
- //上传状态:1-上传成功 2-上传中 3-上传失败
- statusArr: []
- }
- },
- created() {
- this.imageList = [...this.value];
- for (let item of this.imageList) {
- this.statusArr.push("1")
- }
- },
- computed: {
- isShowAdd() {
- let isShow = true;
- if (this.forbidAdd || (this.limit && this.imageList.length >= this.limit)) {
- isShow = false;
- }
- return isShow
- }
- },
- methods: {
- // 重新上传
- reUpLoad(index) {
- this.$set(this.statusArr, index, "2")
- this.change()
- this.uploadImage(index, this.imageList[index]).then(() => {
- this.change()
- }).catch(() => {
- this.change()
- })
- },
- change() {
- let status = ~this.statusArr.indexOf("2") ? 2 : 1
- if (status != 2 && ~this.statusArr.indexOf("3")) {
- // 上传失败
- status = 3
- }
- this.$emit('complete', {
- status: status,
- imgArr: this.imageList
- })
- },
- chooseImage: function() {
- let _this = this;
- uni.chooseImage({
- count: _this.limit - _this.imageList.length,
- success: function(e) {
- let imageArr = [];
- for (let i = 0; i < e.tempFilePaths.length; i++) {
- let len = _this.imageList.length;
- if (len >= _this.limit) {
- uni.showToast({
- title: `最多可上传${_this.limit}张图片`,
- icon: "none"
- });
- break;
- }
- let path = e.tempFilePaths[i]
- imageArr.push(path)
- _this.imageList.push(path)
- _this.statusArr.push("2")
- }
- _this.change()
- let start = _this.imageList.length - imageArr.length
- for (let j = 0; j < imageArr.length; j++) {
- let index = start + j
- //服务器地址
- if (_this.serverUrl) {
- _this.uploadImage(index, imageArr[j]).then(() => {
- _this.change()
- }).catch(() => {
- _this.change()
- })
- } else {
- //无服务器地址则直接返回成功
- _this.$set(_this.statusArr, index, "1")
- _this.change()
- }
- }
- }
- })
- },
- uploadImage: function(index, url) {
- let _this = this;
- return new Promise((resolve, reject) => {
- uni.uploadFile({
- url: this.serverUrl,
- name: this.fileKeyName,
- header: {
- //设置请求头
- },
- formData: {},
- filePath: url,
- success: function(res) {
- console.log(res)
- if (res.statusCode == 200) {
- //返回结果 此处需要按接口实际返回进行修改
- let d = JSON.parse(res.data.replace(/\ufeff/g, "") || "{}")
- //判断code,以实际接口规范判断
- if (d.code % 100 === 0) {
- // 上传成功 d.url 为上传后图片地址,以实际接口返回为准
- d.url && (_this.imageList[index] = d.url)
- _this.$set(_this.statusArr, index, d.url ? "1" : "3")
- } else {
- // 上传失败
- _this.$set(_this.statusArr, index, "3")
- }
- resolve(index)
- } else {
- _this.$set(_this.statusArr, index, "3")
- reject(index)
- }
- },
- fail: function(res) {
- _this.$set(_this.statusArr, index, "3")
- reject(index)
- }
- })
- })
- },
- delImage: function(index) {
- this.imageList.splice(index, 1)
- this.statusArr.splice(index, 1)
- this.$emit("remove", {
- index: index
- })
- this.change()
- },
- previewImage: function(index) {
- if (!this.imageList.length) return;
- uni.previewImage({
- current: this.imageList[index],
- loop: true,
- urls: this.imageList
- })
- }
- }
- }
- </script>
- <style>
- @font-face {
- font-family: 'tuiUpload';
- src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAATcAA0AAAAAByQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEwAAAABoAAAAciR52BUdERUYAAASgAAAAHgAAAB4AKQALT1MvMgAAAaAAAABCAAAAVjxvR/tjbWFwAAAB+AAAAEUAAAFK5ibpuGdhc3AAAASYAAAACAAAAAj//wADZ2x5ZgAAAkwAAADXAAABAAmNjcZoZWFkAAABMAAAAC8AAAA2FpiS+WhoZWEAAAFgAAAAHQAAACQH3QOFaG10eAAAAeQAAAARAAAAEgwAACBsb2NhAAACQAAAAAwAAAAMAEoAgG1heHAAAAGAAAAAHwAAACABEgA2bmFtZQAAAyQAAAFJAAACiCnmEVVwb3N0AAAEcAAAACgAAAA6OMUs4HjaY2BkYGAAYo3boY/i+W2+MnCzMIDAzb3qdQj6fwPzf+YGIJeDgQkkCgA/KAtvAHjaY2BkYGBu+N/AEMPCAALM/xkYGVABCwBZ4wNrAAAAeNpjYGRgYGBl0GJgZgABJiDmAkIGhv9gPgMADTABSQB42mNgZGFgnMDAysDA1Ml0hoGBoR9CM75mMGLkAIoysDIzYAUBaa4pDA7PGJ9xMjf8b2CIYW5gaAAKM4LkANt9C+UAAHjaY2GAABYIVmBgAAAA+gAtAAAAeNpjYGBgZoBgGQZGBhBwAfIYwXwWBg0gzQakGRmYnjE+4/z/n4EBQksxSf6GqgcCRjYGOIeRCUgwMaACRoZhDwCiLwmoAAAAAAAAAAAAAAAASgCAeNpdjkFKw0AARf/vkIR0BkPayWRKQZtYY90ohJju2kOIbtz0KD1HVm50UfEmWXoAr9ADOHFARHHzeY//Fx8Ci+FJfIgdJFa4AhgiMshbrCuIsLxhFJZVs+Vl1bT1GddtbXTC3OhohN4dg4BJ3zMJAnccyfm468ZzHXddrH9ZKbHzdf9n/vkY/xv9sPQXgGEvBrHHwst5kTbXLE+YpYVPkxepPmW94W16UbdNJd6f3SAzo5W7m1jaKd+8ZZIvk5nlKw9SK6Wle7BLS3f/bTzQLmfAF2T1NsQAeNp9kD1OAzEQhZ/zByQSQiCoXVEA2vyUKRMp9Ailo0g23pBo1155nUg5AS0VB6DlGByAGyDRcgpelkmTImvt6PObmeexAZzjGwr/3yXuhBWO8ShcwREy4Sr1F+Ea+V24jhY+hRvUf4SbuFUD4RYu1BsdVO2Eu5vSbcsKZxgIV3CKJ+Eq9ZVwjfwqXMcVPoQb1L+EmxjjV7iFa2WpDOFhMEFgnEFjig3jAjEcLJIyBtahOfRmEsxMTzd6ETubOBso71dilwMeaDnngCntPbdmvkon/mDLgdSYbh4FS7YpjS4idCgbXyyc1d2oc7D9nu22tNi/a4E1x+xRDWzU/D3bM9JIbAyvkJI18jK3pBJTj2hrrPG7ZynW814IiU68y/SIx5o0dTr3bmniwOLn8owcfbS5kj33qBw+Y1kIeb/dTsQgil2GP5PYcRkAAAB42mNgYoAALjDJyIAOWMGiTIxMjMxsKak5qSWpbFmZiRmJ+QAmgAUIAAAAAf//AAIAAQAAAAwAAAAWAAAAAgABAAMABAABAAQAAAACAAAAAHjaY2BgYGQAgqtL1DlA9M296nUwGgA+8QYgAAA=) format('woff');
- font-weight: normal;
- font-style: normal;
- }
- .tui-upload-icon {
- font-family: "tuiUpload" !important;
- font-style: normal;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- padding: 10rpx;
- }
- .tui-upload-box {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- height: 100%;
- }
- .tui-upload-add {
- width: 100rpx;
- height: 100rpx;
- font-size: 68rpx;
- font-weight: 100;
- color: #888;
- background-color: #F7F7F7;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 0;
- background-image: url(../../static/img/shop/1.jpg);
- background-repeat:no-repeat;
- background-size: cover;
- }
- .tui-image-item {
- width: 220rpx;
- height: 220rpx;
- position: relative;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- }
- .tui-image-item:nth-of-type(3n) {
- margin-right: 0;
- }
- .tui-item-img {
- width: 220rpx;
- height: 220rpx;
- display: block;
- }
- .tui-img-del {
- width: 36rpx;
- height: 36rpx;
- position: absolute;
- right: -12rpx;
- top: -12rpx;
- background: #EB0909;
- border-radius: 50%;
- color: white;
- font-size: 34rpx;
- z-index: 999;
- }
- .tui-img-del::before {
- content: '';
- width: 16rpx;
- height: 1px;
- position: absolute;
- left: 10rpx;
- top: 18rpx;
- background: #fff;
- }
- .tui-upload-mask {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- padding: 40rpx 0;
- box-sizing: border-box;
- background: rgba(0, 0, 0, 0.6);
- }
- .tui-upload-loading {
- width: 28rpx;
- height: 28rpx;
- border-radius: 50%;
- border: 2px solid;
- border-color: #B2B2B2 #B2B2B2 #B2B2B2 #fff;
- animation: tui-rotate 0.7s linear infinite;
- }
- @keyframes tui-rotate {
- 0% {
- transform: rotate(0);
- }
- 100% {
- transform: rotate(360deg);
- }
- }
- .tui-tips {
- font-size: 26rpx;
- color: #fff;
- }
- .tui-mask-btn {
- padding: 6rpx 16rpx;
- border-radius: 40rpx;
- text-align: center;
- font-size: 24rpx;
- color: #fff;
- border: 1rpx solid #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .tui-hover {
- opacity: 0.5;
- }
- </style>
|