72 lines
1.7 KiB
Vue
72 lines
1.7 KiB
Vue
<!-- 个人中心:支持装修 -->
|
||
<template>
|
||
<s-layout
|
||
title="我的"
|
||
tabbar="/pages/index/user"
|
||
navbar="custom"
|
||
:bgStyle="template.page"
|
||
:navbarStyle="template.navigationBar"
|
||
onShareAppMessage
|
||
>
|
||
<userAvatarCard />
|
||
<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>
|
||
<userTryOn />
|
||
<!-- 购物车 -->
|
||
<view class="cart-box" @click="sheep.$router.go('/pages/index/cart')">
|
||
<uni-icons type="cart" size="28" color="#fff" />
|
||
</view>
|
||
</s-layout>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { computed, reactive, ref } from 'vue';
|
||
import { onShow, onPageScroll, onPullDownRefresh } from '@dcloudio/uni-app';
|
||
import sheep from '@/sheep';
|
||
import userAvatarCard from './components/user-avatar-card.vue';
|
||
import userTryOn from './components/user-tryOn.vue';
|
||
|
||
// 隐藏原生tabBar
|
||
uni.hideTabBar({
|
||
fail: () => {},
|
||
});
|
||
|
||
const template = computed(() => sheep.$store('app').template.user);
|
||
|
||
onShow(() => {
|
||
sheep.$store('user').updateUserData();
|
||
});
|
||
|
||
onPullDownRefresh(() => {
|
||
sheep.$store('user').updateUserData();
|
||
setTimeout(function () {
|
||
uni.stopPullDownRefresh();
|
||
}, 800);
|
||
});
|
||
|
||
onPageScroll(() => {});
|
||
|
||
const pattern = reactive({
|
||
icon: 'uni-icons-heart',
|
||
});
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.cart-box {
|
||
width: 80rpx;
|
||
height: 80rpx;
|
||
border-radius: 50%;
|
||
background: red;
|
||
position: fixed;
|
||
bottom: 80px;
|
||
right: 10px;
|
||
text-align: center;
|
||
line-height: 80rpx;
|
||
}
|
||
</style>
|