mall-app-b/pages/index/index.vue

30 lines
719 B
Vue
Raw Permalink Normal View History

2024-04-30 17:45:03 +08:00
<template>
2024-05-10 20:29:20 +08:00
<p-layout
title="首页"
navbar="normal"
tabbar="/pages/index/index"
:bgStyle="bgStyle"
opacityBgUi="bg-red"
color="orange"
></p-layout>
2024-04-30 17:45:03 +08:00
</template>
<script setup>
2024-05-10 20:29:20 +08:00
import { onLoad, onPageScroll, onPullDownRefresh } from '@dcloudio/uni-app'
import $share from '@/peach/platform/share'
2024-04-30 17:45:03 +08:00
const bgStyle = {
backgroundImage:
'http://101.43.181.163:9001/mall-backend/24dd085ca57fbfaa27c3e16788237b1d7a95c854c01b5e3e219aad6709bbb748.jpg',
backgroundColor: '',
description: '',
}
2024-05-10 20:29:20 +08:00
onLoad((options) => {
// 解析分享信息
if (options.spm) {
$share.decryptSpm(options.spm)
}
})
2024-04-30 17:45:03 +08:00
</script>