188 lines
4.1 KiB
Vue
188 lines
4.1 KiB
Vue
<template>
|
|
<view>
|
|
<image :src="imgUrlShow" :mode="mode" @click="showDetail" style="width: 100%; height: 100%"></image>
|
|
<uni-popup ref="PopupRef" class="popup" mask-background-color="rgba(0,0,0,.2)" @change="changeShow">
|
|
<view class="overlay-box" @click="closePopup">
|
|
<image class="detail-img" :src="imgUrlShow" :mode="mode"></image>
|
|
</view>
|
|
</uni-popup>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { previewFile, previewCacheThumbImage } from '@/api/common.js';
|
|
import { get_base_url } from '@/api/request.js';
|
|
import { useStorageStore } from '@/store/storage.js';
|
|
|
|
// const storageStore = useStorageStore()
|
|
export default {
|
|
name: 'image-preview',
|
|
props: {
|
|
imgId: {
|
|
default: '',
|
|
type: String
|
|
},
|
|
src: {
|
|
default: '',
|
|
type: String
|
|
},
|
|
width: {
|
|
default: 50,
|
|
type: [String, Number]
|
|
},
|
|
height: {
|
|
default: 50,
|
|
type: [String, Number]
|
|
},
|
|
isCache: {
|
|
// 获取缩略图
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
mode: {
|
|
type: String,
|
|
default: 'aspectFill'
|
|
},
|
|
previewDetail: {
|
|
default: '',
|
|
type: [String, Boolean]
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
imgUrlShow: '',
|
|
watching: false,
|
|
base_url: get_base_url(),
|
|
showModel: false
|
|
};
|
|
},
|
|
computed: {
|
|
storageStore: () => useStorageStore(),
|
|
imageObj() {
|
|
return this.storageStore?.imgObj || {};
|
|
}
|
|
},
|
|
watch: {
|
|
imgId: {
|
|
handler(newval, oldval) {
|
|
if (newval.indexOf('/') === 0) {
|
|
this.imgUrlShow = this.base_url + newval;
|
|
return;
|
|
}
|
|
if (newval.indexOf('http') === 0) {
|
|
this.imgUrlShow = newval;
|
|
return;
|
|
}
|
|
if (newval && this.watching) {
|
|
this.getPreviewUrlBlob(newval);
|
|
}
|
|
},
|
|
immediate: true,
|
|
deep: true
|
|
},
|
|
src: {
|
|
handler(newval, oldval) {
|
|
if (newval && this.watching) {
|
|
this.imgUrlShow = this.base_url + this.src;
|
|
}
|
|
},
|
|
immediate: true,
|
|
deep: true
|
|
},
|
|
showModel(val){
|
|
if(!val){
|
|
this.storageStore.setTouchBtnZIndex(12);
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
changeShow(data){
|
|
if(!data.show){
|
|
this.storageStore.setTouchBtnZIndex(12);
|
|
}else{
|
|
this.storageStore.setTouchBtnZIndex(-1);
|
|
}
|
|
},
|
|
closePopup() {
|
|
this.showModel = false;
|
|
this.$refs.PopupRef.close();
|
|
},
|
|
showDetail() {
|
|
if (!!this.previewDetail) {
|
|
this.showModel = true;
|
|
this.$refs.PopupRef.open();
|
|
}
|
|
},
|
|
getPreviewUrlBlob(id) {
|
|
if (!id) {
|
|
this.imgUrlShow = '';
|
|
return;
|
|
}
|
|
if (this.isCache) {
|
|
let _cache = this.imageObj[`/${id}/${this.width}/${this.height}`] || '';
|
|
if (_cache) {
|
|
this.imgUrlShow = _cache;
|
|
return;
|
|
}
|
|
previewCacheThumbImage(id, this.width, this.height).then((res) => {
|
|
this.imgUrlShow = res;
|
|
this.storageStore.setStorage('image', `/${id}/${this.width}/${this.height}`, res);
|
|
});
|
|
} else {
|
|
let _cache = this.imageObj[`${id}`] || '';
|
|
if (_cache) {
|
|
this.imgUrlShow = _cache;
|
|
return;
|
|
}
|
|
previewFile(id).then((result) => {
|
|
//#ifdef APP-PLUS
|
|
let _header = result.header['Content-Type'].split(';')[0];
|
|
// #endif
|
|
//#ifndef APP-PLUS
|
|
let _header = result.header['content-type'].split(';')[0];
|
|
// #endif
|
|
let base64 = `data:${_header};base64,` + uni.arrayBufferToBase64(result.data);
|
|
this.imgUrlShow = base64;
|
|
this.storageStore.setStorage('image', id, base64);
|
|
});
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
if (this.imgId) {
|
|
if (this.imgId.indexOf('/') === 0) {
|
|
this.imgUrlShow = this.base_url + this.imgId;
|
|
} else if (this.imgId.indexOf('http') === 0) {
|
|
this.imgUrlShow = this.imgId;
|
|
} else {
|
|
this.getPreviewUrlBlob(this.imgId);
|
|
}
|
|
}
|
|
this.watching = true;
|
|
if (this.src) {
|
|
this.imgUrlShow = this.base_url + this.src;
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.overlay-box {
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 999;
|
|
background-color: rgba(0, 0, 0, 0.65);
|
|
.detail-img {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
width: 100vw;
|
|
max-height: 100%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
}
|
|
</style>
|