28 lines
804 B
Plaintext
28 lines
804 B
Plaintext
|
<!--components/my/index.wxml-->
|
||
|
<van-nav-bar fixed class="navBar"
|
||
|
title="我的"
|
||
|
custom-style="background-color:#1989FA;color:#fff;z-index:9;" title-class="titleCss" placeholder />
|
||
|
<view class="userbg" style="background-image: url({{imageSrc}})">
|
||
|
<view class="userInfo">
|
||
|
<image src="../../assets/user.png" style="width: 100%;height: 100%;" mode="widthFix" alt=""/>
|
||
|
</view>
|
||
|
<view class="userAccont">
|
||
|
<view class="name">{{userName}}</view>
|
||
|
<view class="type">{{userType}}</view>
|
||
|
</view>
|
||
|
|
||
|
|
||
|
</view>
|
||
|
<view style="margin-top: 10px;">
|
||
|
<van-cell
|
||
|
is-link
|
||
|
title="个人信息"
|
||
|
link-type="navigateTo"
|
||
|
url="/pages/userInfo/index"
|
||
|
/>
|
||
|
</view>
|
||
|
|
||
|
<view class="btn">
|
||
|
<van-button type="info" round block bind:tap="loginOut">退出登陆</van-button>
|
||
|
</view>
|