12345678910111213141516171819202122232425262728293031323334353637383940 |
- <view class="user-box">
- <My_card custom-class='user-con' hover>
- <van-image image-class="v-img" round width="128rpx" height="128rpx" src="https://img.yzcdn.cn/vant/cat.jpeg" />
- <view class="user-msg">
- <view class="user-name">
- 张三丰<text>店长</text>
- </view>
- <view class="user-phone">
- 17757394388
- </view>
- </view>
- <van-icon size='40rpx' name="arrow" />
- </My_card>
- <My_card custom-class='display-data'>
- <view class="display-data_l">
- <view class="first-line">250</view>
- <view class="tow-line">行动力</view>
- </view>
- <view class="display-data_r">
- <view class="first-line">平台行动力:250</view>
- <view class="tow-line">总部行动力:250</view>
- </view>
- </My_card>
- </view>
- <My_card custom-class='operating' hover>
- <navigator class="item" url="{{item.path}}" wx:for="{{pathList}}">
- <view class="con">
- <view class="label">
- <text class="iconfont {{item.icon}}" style="color: {{item.color}};" />
- {{item.name}}
- </view>
- <van-icon size='30rpx' name="arrow" />
- </view>
- </navigator>
- </My_card>
- <view style="width: 100vw;text-align: center;margin-top: 200rpx;">
- <van-button custom-class='out-login' color="#CCC" plain>退出登录</van-button>
- </view>
- <view style="height: 140rpx;" />
|