Commit a6ad1c9c by 严立

Signed-off-by: yanl <yanl@xmmakeit.com>

parent bff0d91a
{
"pages": [
"pages/mine/mine",
"pages/home/home",
"pages/play/play",
"pages/home-strategy/home-strategy",
"pages/index/index",
"pages/campsite/campsite",
"pages/mine/mine"
"pages/campsite/campsite"
],
"usingComponents": {
"navigation": "../component/navigation/navigation",
"swiper-point": "../component/swiper-point/swiper-point",
"l-avatar": "../miniprogram_npm/lin-ui/avatar/index",
"l-button": "../miniprogram_npm/lin-ui/button/index",
"l-card": "../miniprogram_npm/lin-ui/card/index",
"l-capsule-bar": "../miniprogram_npm/lin-ui/capsule-bar/index",
......@@ -24,7 +25,8 @@
},
"window": {
"navigationStyle": "custom",
"backgroundTextStyle": "light"
"backgroundTextStyle": "light",
"enablePullDownRefresh": false
},
"tabBar": {
"color": "#a0a7b2",
......
{
"disableScroll": true,
"usingComponents": {
"strategy-item": "./component/strategy-item/strategy-item"
}
......
<navigation class="navigation" background="{{'rgba(255, 255, 255, 1)'}}"></navigation>
<view class="prohibit-pull-down">
<navigation class="navigation" background="{{'rgba(255, 255, 255, 1)'}}"></navigation>
<view class="container">
<view class="container">
<image class="navigation-bar-image" src="/image/logo-w.png" hidden="{{!isNavigationLogoWhite}}"></image>
<image class="navigation-bar-image" src="/image/logo-b.png" hidden="{{isNavigationLogoWhite}}"></image>
......@@ -82,4 +83,5 @@
<l-water-flow column-gap="14rpx" generic:l-water-flow-item="strategy-item" bind:linitemtap="onStrategyDetail"></l-water-flow>
</view>
</view>
</view>
</view>
\ No newline at end of file
<!--pages/mine/mine.wxml-->
<!-- <l-button bind:getuserinfo="getUserInfo" open-type="getUserInfo"></l-button> -->
<text>mine</text>
\ No newline at end of file
<navigation class="navigation" titleText="我的" backIcon="/image/back.png"></navigation>
<view class="container">
<view class="mine">
<image class="background-image" src="./image/mine.png"></image>
<view class="row align-c">
<view class="mine-avatar">
<l-avatar size="112" icon="user" />
</view>
<view class="mine-info col">
<view class="row align-c">
<text>张笑寒</text>
<image src="./image/inform.png"></image>
</view>
<view>
<text>18030242524</text>
</view>
</view>
</view>
</view>
<view class="status row con-b align-c">
<view class="status-symbol col">
<text>业主认证</text>
<text>享受业主尊贵特权,预定消费专属优惠</text>
</view>
<view class="status-operation row con-c align-c">
<text>去认证</text>
</view>
</view>
<view class="menu">
<l-list l-content-class="menu-title" title="我的活动"></l-list>
<l-list l-content-class="menu-title" title="我的预约"></l-list>
<l-list l-content-class="menu-title" title="服务中心"></l-list>
</view>
</view>
\ No newline at end of file
/* pages/mine/mine.wxss */
\ No newline at end of file
.mine {
position: relative;
width: 750rpx;
height: 380rpx;
padding: 220rpx 0 0 48rpx;
}
.mine-avatar {
margin-right: 32rpx;
}
.mine-info view:nth-child(1) text {
margin-right: 20rpx;
font-size: 42rpx;
font-weight: bolder;
}
.mine-info view:nth-child(1) image {
width: 40rpx;
height: 40rpx;
}
.mine-info view:nth-child(2) {
margin-top: 20rpx;
}
.mine-info view:nth-child(2) text {
font-size: 26rpx;
color: #959DA9;
}
.status {
width: 654rpx;
height: 130rpx;
padding: 24rpx 32rpx 24rpx 40rpx;
border-radius: 4rpx;
background: linear-gradient(#FBE9D0, #EBD3B2);
}
.status-symbol text:nth-child(1) {
font-size: 30rpx;
font-weight: bolder;
color: #342512;
}
.status-symbol text:nth-child(2) {
margin-top: 14rpx;
font-size: 22rpx;
color: #483522;
}
.status-operation {
width: 110rpx;
height: 52rpx;
border-radius: 2rpx;
border:1px solid rgba(72,53,34,1);
}
.status-operation text {
font-size: 26rpx;
font-weight: bolder;
color: #483522;
}
.menu {
width: 750rpx;
margin-top: 60rpx;
padding: 0 48rpx;
}
.menu-title {
font-weight: bolder;
}
\ No newline at end of file
/* SAMCSS-layout */
.prohibit-pull-down {
height: 100vh;
overflow: scroll;
}
.navigation {
position: fixed;
top: 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment