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.
75 lines
1.5 KiB
75 lines
1.5 KiB
<template>
|
|
<view :style="themeColor()">
|
|
|
|
<loading-page :loading="diy.getLoading()"></loading-page>
|
|
|
|
<view v-show="!diy.getLoading()">
|
|
|
|
<!-- 自定义模板渲染 -->
|
|
<view class="diy-template-wrap bg-index" :style="diy.pageStyle()">
|
|
|
|
<diy-group ref="diyGroupRef" :data="diy.data" />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<!-- #ifdef MP-WEIXIN -->
|
|
<!-- 小程序隐私协议 -->
|
|
<wx-privacy-popup ref="wxPrivacyPopupRef"></wx-privacy-popup>
|
|
<!-- #endif -->
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref,nextTick } from 'vue';
|
|
import {useDiy} from '@/hooks/useDiy'
|
|
import diyGroup from '@/addon/components/diy/group/index.vue'
|
|
|
|
const diy = useDiy({
|
|
name: 'DIY_SHOP_INDEX'
|
|
})
|
|
|
|
const diyGroupRef = ref(null)
|
|
|
|
const wxPrivacyPopupRef:any = ref(null)
|
|
|
|
// 监听页面加载
|
|
diy.onLoad();
|
|
|
|
// 监听页面显示
|
|
diy.onShow((data: any) => {
|
|
diyGroupRef.value?.refresh();
|
|
// #ifdef MP
|
|
nextTick(()=>{
|
|
if(wxPrivacyPopupRef.value) wxPrivacyPopupRef.value.proactive();
|
|
})
|
|
// #endif
|
|
});
|
|
|
|
// 监听页面隐藏
|
|
diy.onHide();
|
|
|
|
// 监听页面卸载
|
|
diy.onUnload();
|
|
|
|
// 监听滚动事件
|
|
diy.onPageScroll()
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
@import '@/styles/diy.scss';
|
|
</style>
|
|
<style lang="scss">
|
|
.diy-template-wrap {
|
|
/* #ifdef MP */
|
|
.child-diy-template-wrap {
|
|
::v-deep .diy-group {
|
|
> .draggable-element.top-fixed-diy {
|
|
display: block !important;
|
|
}
|
|
}
|
|
}
|
|
/* #endif */
|
|
}
|
|
</style>
|
|
|