add miniprogram
This commit is contained in:
53
miniprogram/pages/person/person.wxml
Normal file
53
miniprogram/pages/person/person.wxml
Normal file
@@ -0,0 +1,53 @@
|
||||
<!--pages/person/person.wxml-->
|
||||
<view class="person">
|
||||
|
||||
<view class="user-info-box">
|
||||
<navigator url="/pages/person/info" class="user-info">
|
||||
<view class="info-hd">
|
||||
<image class="user-avatar" src="{{img}}"></image>
|
||||
<view class="user-title">
|
||||
<text class="user-name">{{name}}</text>
|
||||
</view>
|
||||
<text class="bind-btn">个人信息</text>
|
||||
<view class="btn-open">
|
||||
<image class="btn-enter" src="/icon/person/enter.png"></image>
|
||||
</view>
|
||||
</view>
|
||||
</navigator>
|
||||
</view>
|
||||
|
||||
<view class="more-list">
|
||||
<navigator url="/pages/other/password" class="issue-link">
|
||||
<view class="more-btn">
|
||||
<image class="btn-icon" src="/icon/person/password.png"></image>
|
||||
<text class="btn-text">修改密码</text>
|
||||
<view class="btn-open">
|
||||
<image class="btn-enter" src="/icon/person/enter.png"></image>
|
||||
</view>
|
||||
</view>
|
||||
</navigator>
|
||||
<navigator url="/pages/person/issues" class="issue-link">
|
||||
<view class="more-btn">
|
||||
<image class="btn-icon" src="/icon/person/issue.png"></image>
|
||||
<text class="btn-text">反馈</text>
|
||||
<view class="btn-open">
|
||||
<image class="btn-enter" src="/icon/person/enter.png"></image>
|
||||
</view>
|
||||
</view>
|
||||
</navigator>
|
||||
<navigator url="/pages/other/about" class="about-link">
|
||||
<view class="more-btn">
|
||||
<image class="btn-icon" src="/icon/person/about.png"></image>
|
||||
<text class="btn-text">关于</text>
|
||||
<view class="btn-open">
|
||||
<image class="btn-enter" src="/icon/person/enter.png"></image>
|
||||
</view>
|
||||
</view>
|
||||
</navigator>
|
||||
</view>
|
||||
|
||||
<navigator bindtap='quit' class="login-btn" url="none">
|
||||
<text >退出登录</text>
|
||||
</navigator>
|
||||
|
||||
</view>
|
Reference in New Issue
Block a user