index.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <view class="user-box">
  2. <My_card custom-class='user-con' hover>
  3. <van-image image-class="v-img" round width="128rpx" height="128rpx" src="https://img.yzcdn.cn/vant/cat.jpeg" />
  4. <view class="user-msg">
  5. <view class="user-name">
  6. 张三丰<text>店长</text>
  7. </view>
  8. <view class="user-phone">
  9. 17757394388
  10. </view>
  11. </view>
  12. <van-icon size='40rpx' name="arrow" />
  13. </My_card>
  14. <My_card custom-class='display-data'>
  15. <view class="display-data_l">
  16. <view class="first-line">250</view>
  17. <view class="tow-line">行动力</view>
  18. </view>
  19. <view class="display-data_r">
  20. <view class="first-line">平台行动力:250</view>
  21. <view class="tow-line">总部行动力:250</view>
  22. </view>
  23. </My_card>
  24. </view>
  25. <My_card custom-class='operating' hover>
  26. <navigator class="item" url="{{item.path}}" wx:for="{{pathList}}">
  27. <view class="con">
  28. <view class="label">
  29. <text class="iconfont {{item.icon}}" style="color: {{item.color}};" />
  30. {{item.name}}
  31. </view>
  32. <van-icon size='30rpx' name="arrow" />
  33. </view>
  34. </navigator>
  35. </My_card>
  36. <view style="width: 100vw;text-align: center;margin-top: 200rpx;">
  37. <van-button custom-class='out-login' color="#CCC" plain>退出登录</van-button>
  38. </view>
  39. <view style="height: 140rpx;" />