zyejMAll-mobile/pages/index/user.vue

109 lines
2.2 KiB
Vue
Raw Normal View History

2024-08-07 10:31:42 +08:00
<!-- 个人中心支持装修 -->
<template>
2024-09-30 19:00:13 +08:00
<s-layout title="个人中心" tabbar="/pages/index/user" navbar="normal" :bgStyle="template.page"
:navbarStyle="template.navigationBar" onShareAppMessage>
2024-10-11 16:07:43 +08:00
2024-09-30 19:00:13 +08:00
2024-10-11 16:07:43 +08:00
2024-09-30 19:00:13 +08:00
<s-block class="" v-for="(item, index) in template.components" :key="index" :styles="item.property.style">
2024-10-11 16:07:43 +08:00
<s-block-item style="" :class="item.id == 'UserOrder'? 'ss': ''" :type="item.id" :data="item.property" :styles="item.property.style" />
2024-09-30 19:00:13 +08:00
</s-block>
2024-10-11 16:07:43 +08:00
<view class="new-huiy" @click="
sheep.$router.go('/pages/user/user_vip/index')
">
<image class="seckill" src="@/static/images/seckilbg.png"></image>
<view class="new-button">立即开通</view>
<img class="seckill1" mode="aspectFit"
src="https://zysc.fjptzykj.com:3000/shangcheng/64776e2edc3c2f15295e7c3976ba301e08f9170f99a2e845d8f33bd65179b177.png" />
</view>
2024-09-30 19:00:13 +08:00
</s-layout>
2024-08-07 10:31:42 +08:00
</template>
<script setup>
2024-09-30 19:00:13 +08:00
import {
computed
} from 'vue';
import {
onShow,
onPageScroll,
onPullDownRefresh
} from '@dcloudio/uni-app';
import sheep from '@/sheep';
2024-08-07 10:31:42 +08:00
2024-09-30 19:00:13 +08:00
// 隐藏原生tabBar
uni.hideTabBar();
2024-08-07 10:31:42 +08:00
2024-09-30 19:00:13 +08:00
const template = computed(() => sheep.$store('app').template.user);
const isLogin = computed(() => sheep.$store('user').isLogin);
2024-08-07 10:31:42 +08:00
2024-09-30 19:00:13 +08:00
onShow(() => {
sheep.$store('user').updateUserData();
});
2024-08-07 10:31:42 +08:00
2024-09-30 19:00:13 +08:00
onPullDownRefresh(() => {
sheep.$store('user').updateUserData();
setTimeout(function() {
uni.stopPullDownRefresh();
}, 800);
});
2024-08-07 10:31:42 +08:00
2024-09-30 19:00:13 +08:00
onPageScroll(() => {});
2024-08-07 10:31:42 +08:00
</script>
2024-10-11 16:07:43 +08:00
<style lang="scss" scoped>
.new-huiy {
width: 100%;
height: 240px;
position: absolute;
top: 0;
.new-button {
background: white;
padding: 8px;
text-align: center;
position: absolute;
border-radius: 20px;
right: 29px;
bottom: 17px;
font-size: 14px;
color: rgba(148, 109, 45, 1);
// z-index: 33;
}
.seckill1 {
position: absolute;
bottom: 0;
// z-index: 22;
/* left: 50%; */
/* transform: translateX(-50%); */
width: 96%;
height: 72px;
}
2024-09-19 17:57:12 +08:00
}
2024-10-11 16:07:43 +08:00
/* .new-main {} */
2024-09-30 19:00:13 +08:00
.seckill1 {
position: absolute;
z-index: 22;
left: 50%;
transform: translateX(-50%);
width: 94%;
}
.seckill {
width: 100%;
position: absolute;
}
view {
2024-09-19 17:57:12 +08:00
position: relative;
}
2024-10-11 16:07:43 +08:00
::v-deep .ss{
z-index: 99999;
&>view{
margin-top: 94px;
}
}
2024-09-30 19:00:13 +08:00
</style>