拓恒河湖长制全民护河平台WEB端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
3.0KB

  1. <!--pages/mine/index.wxml-->
  2. <view class="mine_container">
  3. <view class="user_massage">
  4. <view class="message_box">
  5. <image class="user_avatar" src="{{userInfo.headimgurl}}"></image>
  6. <view class="approve_box">
  7. <view class="id_box">
  8. <text class="user_name">{{userInfo.nickname}}</text>
  9. <view wx:if="{{userInfo.identityName}}" class="approve_btn">{{userInfo.identityName}}</view>
  10. </view>
  11. <view class="integral">
  12. <image style="width: 26rpx;height: 26rpx;margin-right: 10rpx;" src="../../assets/img/gold.png"></image>
  13. <text style="font-size: 24rpx;color: #ffffff;margin-right: 20rpx;" bindtap="handlePointDetail">{{userInfo.mallPoints || 0}}</text>
  14. <text style="color: rgba(255, 255, 255, 0.6);font-size: 24rpx;">护河积分可兑换礼物!快来加入我们吧~</text>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="function_list">
  20. <!-- 标题 -->
  21. <view class="apply_head" wx:if="{{!userInfo.identityName}}">
  22. <view class="item_title">
  23. <image style="height: 33rpx;width: 42rpx;margin-right: 20rpx;" src="../../assets/img/apply.png"></image>
  24. <view style="font-size: 28rpx;z-index:99;color: #FFFFFF;">申请成为护河身份</view>
  25. </view>
  26. <view class="apply_btn" bindtap="goApprove">立即申请</view>
  27. </view>
  28. <view class="function_item" wx:for="{{list}}" wx:key="index" bindtap="goRecords" data-path="{{item.path}}">
  29. <view class="item_title">
  30. <image style="height: 40rpx;width: 40rpx;margin-right: 14rpx;" src="{{'../../assets/img/'+ item.type +'.png'}}"></image>
  31. <view style="font-size: 30rpx;z-index:99">{{item.title}}</view>
  32. </view>
  33. <view class="enter_box">
  34. <text style="font-size: 26rpx; color: #C6C6C6;margin-top: -2rpx;">{{item.info}}</text>
  35. <image style="height: 30rpx;width: 30rpx;margin-left: 20rpx;" src="../../assets/img/more.png"></image>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="tag"></view>
  40. <view class="function_list">
  41. <view class="function_item" wx:for="{{otherList}}" wx:key="index" bindtap="goRecords" data-path="{{item.path}}">
  42. <view class="item_title">
  43. <image style="height: 40rpx;width: 40rpx;margin-right: 14rpx;" src="{{'../../assets/img/'+ item.type +'.png'}}"></image>
  44. <view style="font-size: 30rpx;z-index:99">{{item.title}}</view>
  45. <text wx:if="{{item.showNumbers && numbers > 0}}" class="badge">{{numbers > 99 ? '99+' : numbers }}</text>
  46. </view>
  47. <view class="enter_box">
  48. <text style="font-size: 26rpx; color: #C6C6C6;margin-top: -2rpx;">{{item.info}}</text>
  49. <image style="height: 30rpx;width: 30rpx;margin-left: 20rpx;" src="../../assets/img/more.png"></image>
  50. </view>
  51. </view>
  52. </view>
  53. </view>