Files
integral-shop/single_uniapp22miao/components/homeIndex/hotSpot.vue
panchengyong 786bf78282 更新项目配置和添加小程序模块
- 修改 ArticleController.java
- 更新 application.yml 配置
- 更新 frontend/.env.production 环境配置
- 添加 single_uniapp22miao 小程序模块
- 添加 logs 目录
2026-03-13 13:27:13 +08:00

225 lines
5.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<!-- 热区+图片魔方 -->
<view class="mobile-page" v-if="dataConfig" :style="[boxStyle]">
<view class="advert">
<!-- 单图/热区布局 -->
<template v-if="style === 0">
<view class="advertItem01 acea-row hotspot" v-for="(item, index) in picList" :key="index">
<image :src="item.image" mode="widthFix" v-if="item.image" :style="[contentStyle]"
@click="dataConfig.checkoutConfig.hotspot.length?'':goDetail(item)"></image>
<view v-for="(item, index) in dataConfig.checkoutConfig.hotspot" :key="index" :style="{
top: `${Number(spotIndex*item.starY)}rpx`,
left: `${Number(spotIndex*item.starX)}rpx`,
width: `${Number(spotIndex*item.areaWidth)}rpx`,
height: `${Number(spotIndex*item.areaHeight)}rpx`,
}" class="area" @click="goDetail(item)"></view>
</view>
</template>
</view>
</view>
</template>
<script>
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
export default {
name: 'hotSpot',
props: {
dataConfig: {
type: Object,
default: () => {}
},
},
data() {
return {
picList: this.dataConfig.picStyle.picList,
style: this.dataConfig.tabConfig.tabVal,
prConfig: this.dataConfig.lrConfig.val,
igConfig: this.dataConfig.igConfig.val
};
},
computed: {
//最外层盒子的样式
boxStyle() {
return {
borderRadius: this.dataConfig.bgStyle.val * 2 + 'rpx',
backgroundImage: `linear-gradient(${this.dataConfig.bgColor.color[0].item}, ${this.dataConfig.bgColor.color[1].item})`,
margin: this.dataConfig.mbConfig.val * 2 + 'rpx' + ' ' + this.dataConfig.lrConfig.val * 2 + 'rpx' +
' ' + 0,
padding: this.dataConfig.upConfig.val * 2 + 'rpx' + ' ' + '0' + ' ' + this.dataConfig.downConfig.val *
2 + 'rpx'
}
},
contentStyle(){
return{
borderRadius: this.dataConfig.contentStyle.val * 2 + 'rpx',
}
},
//伸缩系数
spotIndex(){
return (750-4*this.dataConfig.lrConfig.val)/456
},
// 两张图片 图片间距样式
twoImgStyle() {
return {
width: (750 - 2 * this.igConfig - 4 * this.prConfig) / 2 + 'rpx',
height: (750 - 2 * this.igConfig - 4 * this.prConfig) / 2 + 'rpx',
}
},
// 第一种 三张图片间距样式
thrOneImgStyle() {
return {
width: (750 - 4 * this.igConfig - 4 * this.prConfig) / 3 + 'rpx',
height: (750 - 4 * this.igConfig - 4 * this.prConfig) / 3 + 'rpx',
}
},
// 第一种四张图片布局
forOneImgStyle() {
return {
width: (750 - 6 * this.igConfig - 4 * this.prConfig) / 4 + 'rpx',
}
},
// 第二种四张图片布局
forTwoImgStyle() {
return {
width: (750 - 2 * this.igConfig - 4 * this.prConfig) / 2 + 'rpx',
height: (750 - 2 * this.igConfig - 4 * this.prConfig) / 2 + 'rpx',
}
},
imgBoxStyle() {
return {
display: this.igConfig ? 'flex' : '',
'justify-content': this.igConfig ? 'space-between' : ''
}
}
},
methods: {
//替换安全域名
setDomain: function(url) {
url = url ? url.toString() : '';
//本地调试打开,生产请注销
if (url.indexOf("https://") > -1) return url;
else return url.replace('http://', 'https://');
},
goDetail(item) {
this.$util.navigateTo(item.link);
}
}
}
</script>
<style lang="scss" scoped>
.mobile-page {
.advert {
.advertItem01 {
width: 100%;
height: 100%;
.empty-box {
width: 100%;
height: auto;
}
image {
width: 100%;
height: 100%;
}
}
.advertItem02 {
width: 100%;
.item {
width: 50%;
height: auto;
image {
width: 100%;
height: 100%;
}
.empty-box {
width: 100%;
height: auto;
}
}
}
.advertItem03 {
.item {
width: 33.3333%;
height: auto;
.empty-box {
width: 100%;
height: auto;
}
}
}
.advertItem04 {
.item {
width: 50%;
height: auto;
.empty-box {
width: 100%;
height: 100%;
}
image {
width: 100%;
height: 100%;
}
.pic {
width: 100%;
height: auto;
}
}
}
.advertItem05 {
.item {
width: 25%;
.empty-box {
width: 100%;
height: auto;
}
}
}
.advertItem06 {
.item {
width: 50%;
image {
width: 100%;
height: 100%;
}
.empty-box {
width: 100%;
height: 100%;
}
}
}
}
}
.hotspot {
position: relative;
.area {
position: absolute;
}
}
</style>