营销:适配商城装修组件【弹窗广告】
parent
4854cee7ca
commit
d9b25ed14b
|
@ -5,8 +5,6 @@
|
||||||
<s-block v-for="(item, index) in template.components" :key="index" :styles="item.property.style">
|
<s-block v-for="(item, index) in template.components" :key="index" :styles="item.property.style">
|
||||||
<s-block-item :type="item.id" :data="item.property" :styles="item.property.style" />
|
<s-block-item :type="item.id" :data="item.property" :styles="item.property.style" />
|
||||||
</s-block>
|
</s-block>
|
||||||
<!-- 广告模块 -->
|
|
||||||
<s-popup-image />
|
|
||||||
</s-layout>
|
</s-layout>
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
@ -89,4 +87,4 @@
|
||||||
onPageScroll(() => {});
|
onPageScroll(() => {});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style></style>
|
<style></style>
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
<s-menu-list v-if="type === 'MenuList'" :data="data" />
|
<s-menu-list v-if="type === 'MenuList'" :data="data" />
|
||||||
<!-- 基础组件:宫格导航 -->
|
<!-- 基础组件:宫格导航 -->
|
||||||
<s-menu-grid v-if="type === 'MenuGrid'" :data="data" />
|
<s-menu-grid v-if="type === 'MenuGrid'" :data="data" />
|
||||||
|
<!-- 基础组件:弹窗广告 -->
|
||||||
|
<s-popup-image v-if="type === 'Popover'" :data="data" />
|
||||||
|
|
||||||
<!-- 图文组件:图片展示 -->
|
<!-- 图文组件:图片展示 -->
|
||||||
<s-image-block v-if="type === 'ImageBar'" :data="data" :styles="styles" />
|
<s-image-block v-if="type === 'ImageBar'" :data="data" :styles="styles" />
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<view>
|
<view>
|
||||||
<view v-for="(item, index) in popupList" :key="item.src">
|
<view v-for="(item, index) in popupList" :key="index">
|
||||||
<su-popup
|
<su-popup
|
||||||
v-if="index === currentIndex"
|
v-if="index === currentIndex"
|
||||||
:show="item.isShow"
|
:show="item.isShow"
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
<view class="img-box">
|
<view class="img-box">
|
||||||
<image
|
<image
|
||||||
class="modal-img"
|
class="modal-img"
|
||||||
:src="sheep.$url.cdn(item.src)"
|
:src="sheep.$url.cdn(item.imgUrl)"
|
||||||
mode="widthFix"
|
mode="widthFix"
|
||||||
@tap.stop="onPopup(item.url)"
|
@tap.stop="onPopup(item.url)"
|
||||||
/>
|
/>
|
||||||
|
@ -27,34 +27,46 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import sheep from '@/sheep';
|
import sheep from '@/sheep';
|
||||||
import { computed, ref } from 'vue';
|
import { computed, ref } from 'vue';
|
||||||
import { onShow } from '@dcloudio/uni-app';
|
|
||||||
import { saveAdvHistory } from '@/sheep/hooks/useModal';
|
import { saveAdvHistory } from '@/sheep/hooks/useModal';
|
||||||
|
|
||||||
|
// 定义属性
|
||||||
|
const props = defineProps({
|
||||||
|
data: {
|
||||||
|
type: Object,
|
||||||
|
default() {},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
// const modalStore = sheep.$store('modal');
|
// const modalStore = sheep.$store('modal');
|
||||||
const modalStore = JSON.parse(uni.getStorageSync('modal-store') || '{}');
|
const modalStore = JSON.parse(uni.getStorageSync('modal-store') || '{}');
|
||||||
|
console.log(modalStore)
|
||||||
const advHistory = modalStore.advHistory || [];
|
const advHistory = modalStore.advHistory || [];
|
||||||
const currentIndex = ref(0);
|
const currentIndex = ref(0);
|
||||||
const popupList = computed(() => {
|
const popupList = computed(() => {
|
||||||
const list = sheep.$store('app').template.basic?.popupImage?.list || [];
|
const list = props.data.list || [];
|
||||||
const newList = [];
|
const newList = [];
|
||||||
if (list.length > 0) {
|
if (list.length > 0) {
|
||||||
list.forEach((adv) => {
|
list.forEach((adv) => {
|
||||||
if (adv.show === 1 && advHistory.includes(adv.src)) {
|
if (adv.showType === 'once' && advHistory.includes(adv.imgUrl)) {
|
||||||
adv.isShow = false;
|
adv.isShow = false;
|
||||||
} else {
|
} else {
|
||||||
adv.isShow = true;
|
adv.isShow = true;
|
||||||
newList.push(adv);
|
newList.push(adv);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 记录弹窗已显示过
|
||||||
saveAdvHistory(adv);
|
saveAdvHistory(adv);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return newList;
|
return newList;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// 跳转链接
|
||||||
function onPopup(path) {
|
function onPopup(path) {
|
||||||
sheep.$router.go(path);
|
sheep.$router.go(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 关闭
|
||||||
function onClose(index) {
|
function onClose(index) {
|
||||||
currentIndex.value = index + 1;
|
currentIndex.value = index + 1;
|
||||||
popupList.value[index].isShow = false;
|
popupList.value[index].isShow = false;
|
||||||
|
|
|
@ -121,8 +121,8 @@ export function saveAdvHistory(adv) {
|
||||||
const modal = $store('modal');
|
const modal = $store('modal');
|
||||||
|
|
||||||
modal.$patch((state) => {
|
modal.$patch((state) => {
|
||||||
if (!state.advHistory.includes(adv.src)) {
|
if (!state.advHistory.includes(adv.imgUrl)) {
|
||||||
state.advHistory.push(adv.src);
|
state.advHistory.push(adv.imgUrl);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue