You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qixie/components/shopro-float-btn/shopro-float-btn.vue

185 lines
4.6 KiB

2 years ago
<template>
<view class="" v-if="floatList && floatList.length">
<view class="cu-modal" :class="{ show: showMask }" @tap="hideMask"></view>
<!-- 悬浮按钮菜单 -->
<view class="shopro-float-btn">
<button class="wechat-btn u-reset-button" @tap="onBtn">
<image class="wechat_img" :src="floatList.length == 1 ? floatList[0].btnimage : floatData.image" mode="widthFix"></image>
</button>
<view :class="showBtnList ? 'float--active' : 'float-list-box'">
<view class="btn-img-box u-flex-col" @tap="onBtnItem(item)" v-for="item in floatList" :key="item.btnimage">
<view class="btn-item u-flex-col u-row-center u-col-center">
<image class="btn-img" :src="item.btnimage" mode="aspectFill"></image>
<view class="btn-name">{{ item.name }}</view>
</view>
</view>
</view>
</view>
<!-- 弹窗 -->
<view class="cu-modal" :class="{ show: showModal }" @tap="showModal = false">
<view class="cu-dialog" style="width: 610rpx;background: none;">
<view class="img-box"><image class="modal-img" :src="modalImg" mode="aspectFit" @tap="saveImage(modalImg)"></image></view>
</view>
</view>
</view>
</template>
<script>
/**
* 悬浮按钮悬浮菜单全局通用数据为vuex初始化导入
* @property {Array} floatList - 悬浮按钮菜单数据列表
*/
import { mapMutations, mapActions, mapState, mapGetters } from 'vuex';
import Auth from '@/shopro/permission/index.js';
export default {
components: {},
data() {
return {
showBtnList: false, //列表弹出
modalImg: '', //子项图片弹出
showModal: false, //modal层
showMask: false,
platform: this.$platform.get()
};
},
props: {},
computed: {
...mapGetters(['floatData']),
// 悬浮按钮数据列表
floatList() {
if (this.floatData) {
return this.floatData.list;
}
}
},
created() {},
methods: {
hideMask() {
this.showBtnList = false;
this.showMask = false;
},
// 点击悬浮按钮
onBtn() {
this.showMask = !this.showMask;
if (this.floatList.length == 1) {
this.modalImg = this.floatList[0].image;
this.floatList[0].style == 2 ? this.$tools.routerTo(this.floatList[0].path) : (this.showModal = true);
this.showMask = false;
} else {
this.showBtnList = !this.showBtnList;
}
},
// 点击按钮菜单,如果悬浮按钮数据为一条,按钮图片为唯一菜单项图片和标题
onBtnItem(item) {
if (item.style == 2) {
this.showMask = false;
this.showModal = false;
this.showBtnList = false;
this.$tools.routerTo(item.path);
} else {
this.modalImg = item.image;
this.showMask = false;
this.showModal = true;
this.showBtnList = false;
!item.image && console.log(`%cerr:弹窗图片未配置`, 'color:green;background:yellow');
}
},
saveImageToPhotosAlbum(path) {
uni.saveImageToPhotosAlbum({
filePath: path,
success: res => {
this.showMask = false;
this.showModal = false;
this.$u.toast('保存成功');
},
fail: err => {
console.log(`图片保存失败:`, err);
this.$u.toast('保存失败');
}
});
},
// 保存图片
async saveImage(path) {
let that = this;
if (['wxOfficialAccount', 'H5'].includes(this.platform)) {
this.$u.toast('长按图片保存');
return false;
}
let authState = await new Auth('writePhotosAlbum').check();
if (authState) {
// #ifdef MP ||APP-VUE
const res = await uni.downloadFile({
url: this.$tools.checkMPUrl(path)
});
res[1].statusCode === 200 && this.saveImageToPhotosAlbum(res[1].tempFilePath);
// #endif
}
}
}
};
</script>
<style lang="scss">
.shopro-float-btn {
position: fixed;
bottom: calc(var(--window-bottom) + 100rpx);
right: 30rpx;
z-index: 9999;
.float--active {
position: absolute;
bottom: 80rpx;
right: 0;
left: 0;
margin: 0 auto;
z-index: 10010;
transform: scale(1);
transition: all 0.2s linear;
}
.float-list-box {
position: absolute;
z-index: 10010;
bottom: 0;
right: 0;
left: 0;
margin: 0 auto;
transform: scale(0);
transform-origin: bottom;
opacity: 0;
transition: all 0.2s linear;
}
.btn-item {
margin-bottom: 20rpx;
.btn-img {
width: 60rpx;
height: 60rpx;
}
.btn-name {
font-size: 20rpx;
color: #fff;
text-align: center;
white-space: nowrap;
}
}
.wechat-btn {
box-shadow: 0px 0px 20px 4px rgba(199, 199, 199, 0.22);
border-radius: 50%;
width: 80rpx;
height: 80rpx;
.wechat_img {
width: 80rpx;
height: 80rpx;
}
}
}
.img-box {
position: relative;
width: 610rpx;
.modal-img {
width: 100%;
will-change: transform;
height: 830rpx;
}
}
</style>