| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!--pages/mine/mine.wxml-->
- <!-- 我的视图 -->
- <!-- 导航栏 -->
- <nav-bar title="我的" left="{{false}}"></nav-bar>
- <!-- 我的顶部视图 -->
- <view class="minetop">
- <van-image src="{{avatarUrl}}" round width="50" height="50"></van-image>
- <view class="userinfo">
- <view class="userinfo-vip">
- <text>VIP</text>
- <text>永久</text>
- </view>
- <view class="userinfo-account">
- <text>elena</text>
- <text>21000001</text>
- </view>
- <text>深圳水贝珠宝有限公司</text>
- </view>
- </view>
- <!-- 出金 入金 -->
- <view class="button-view">
- <van-button custom-class="into-gold" id="into-gold" icon="https://img.yzcdn.cn/vant/logo.png" color="linear-gradient(to right, #4bb0ff, #6149f6)" bind:click="onButtonPressed">充值</van-button>
- <van-button custom-class="out-gold" id="out-gold" icon="https://img.yzcdn.cn/vant/logo.png" color="linear-gradient(to right, #4bb0ff, #FF7252)" bind:click="onButtonPressed">提现</van-button>
- </view>
- <!-- 功能菜单项 -->
- <van-grid column-num="5" wx:if="{{menulists.count != 0}}">
- <van-grid-item wx:for="{{menulists}}" wx:key="id" wx:for-index="idx" wx:for-item="itm" id="{{itm.id}}" icon="{{itm.img}}" icon-color="red" dot link-type="navigateTo" url="{{itm.path}}">
- <text slot="text" style="font-size: 13px;">{{itm.title}}</text>
- </van-grid-item>
- </van-grid>
- <!-- 列表菜单项 -->
- <van-cell-group>
- <van-cell clickable title-class="cell-title" center is-link border wx:for="{{tablelists}}" use-label-slot clickable wx:key="id" wx:for-index="idx" wx:for-item="itm" id="{{itm.id}}" title="{{itm.title}}" link-type="navigateTo" url="{{itm.path}}">
- </van-cell>
- </van-cell-group>
- <!-- 登出按钮 -->
- <button class="loginOut" bindtap="onLoginOut">系统登出</button>
- <!-- 对话弹框 -->
- <van-dialog id="van-dialog" />
- <!-- toast -->
- <van-toast id="van-toast" />
|