|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<view>
|
|
|
- <view v-for="(item, index) in popupList" :key="item.src">
|
|
|
+ <view v-for="(item, index) in popupList" :key="index">
|
|
|
<su-popup
|
|
|
v-if="index === currentIndex"
|
|
|
:show="item.isShow"
|
|
@@ -14,7 +14,7 @@
|
|
|
<view class="img-box">
|
|
|
<image
|
|
|
class="modal-img"
|
|
|
- :src="sheep.$url.cdn(item.src)"
|
|
|
+ :src="sheep.$url.cdn(item.imgUrl)"
|
|
|
mode="widthFix"
|
|
|
@tap.stop="onPopup(item.url)"
|
|
|
/>
|
|
@@ -27,34 +27,46 @@
|
|
|
<script setup>
|
|
|
import sheep from '@/sheep';
|
|
|
import { computed, ref } from 'vue';
|
|
|
- import { onShow } from '@dcloudio/uni-app';
|
|
|
import { saveAdvHistory } from '@/sheep/hooks/useModal';
|
|
|
|
|
|
+ // 定义属性
|
|
|
+ const props = defineProps({
|
|
|
+ data: {
|
|
|
+ type: Object,
|
|
|
+ default() {},
|
|
|
+ }
|
|
|
+ })
|
|
|
+
|
|
|
// const modalStore = sheep.$store('modal');
|
|
|
const modalStore = JSON.parse(uni.getStorageSync('modal-store') || '{}');
|
|
|
+ console.log(modalStore)
|
|
|
const advHistory = modalStore.advHistory || [];
|
|
|
const currentIndex = ref(0);
|
|
|
const popupList = computed(() => {
|
|
|
- const list = sheep.$store('app').template.basic?.popupImage?.list || [];
|
|
|
+ const list = props.data.list || [];
|
|
|
const newList = [];
|
|
|
if (list.length > 0) {
|
|
|
list.forEach((adv) => {
|
|
|
- if (adv.show === 1 && advHistory.includes(adv.src)) {
|
|
|
+ if (adv.showType === 'once' && advHistory.includes(adv.imgUrl)) {
|
|
|
adv.isShow = false;
|
|
|
} else {
|
|
|
adv.isShow = true;
|
|
|
newList.push(adv);
|
|
|
}
|
|
|
+
|
|
|
+ // 记录弹窗已显示过
|
|
|
saveAdvHistory(adv);
|
|
|
});
|
|
|
}
|
|
|
return newList;
|
|
|
});
|
|
|
|
|
|
+ // 跳转链接
|
|
|
function onPopup(path) {
|
|
|
sheep.$router.go(path);
|
|
|
}
|
|
|
|
|
|
+ // 关闭
|
|
|
function onClose(index) {
|
|
|
currentIndex.value = index + 1;
|
|
|
popupList.value[index].isShow = false;
|