productAll.wxml 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <view class="content">
  2. <view class="content-money">
  3. <view class="money-box">
  4. <image class="andr-mt-avatar andr-mt-avatarBd" src="{{userInfo.avatar}}"></image>
  5. <view class="text">{{userInfo.nickname}}</view>
  6. </view>
  7. <image mode=" " src="../../static/img/userbg.png" style="width:750rpx;height:81rpx;background-color:#FFFFFF;"></image>
  8. <view class="flex buttom-box">
  9. <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'navto',['/pages/app/gsfh'] ] ] ] ]}}">
  10. <view class="icon">
  11. <text class="moneyType">¥</text>{{''+userData.all_stock_right_bonus+''}}</view>
  12. <text>公司分红</text>
  13. </view>
  14. <view class="interval"></view>
  15. <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'navto',['/pages/app/zsfh'] ] ] ] ]}}">
  16. <view class="icon">
  17. <text class="moneyType">¥</text>{{''+userData.give_stock_right_bonus+''}}</view>
  18. <text>赠送分紅</text>
  19. </view>
  20. <view class="interval"></view>
  21. <view bindtap="__e" class="buttom" data-event-opts="{{[ [ 'tap',[ [ 'navto',['/pages/app/qmfh'] ] ] ] ]}}">
  22. <view class="icon">
  23. <text class="moneyType">¥</text>{{''+userData.code_stock_right_bonus+''}}</view>
  24. <text>全民分紅</text>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="content-money padding-b-0 ">
  29. <view class="flex buttom-box kcLIst">
  30. <view class="buttom">
  31. <view class="icon">{{''+userCode.total_stock+''}}</view>
  32. <text>库存</text>
  33. </view>
  34. <view class="interval"></view>
  35. <view class="buttom">
  36. <view class="icon">{{''+userCode.total_sales+''}}</view>
  37. <text>销量</text>
  38. </view>
  39. <view class="interval"></view>
  40. </view>
  41. </view>
  42. <view class="tab-content goodList" wx:for="{{navList}}" wx:for-index="tabIndex" wx:for-item="tabItem" wx:key="tabIndex">
  43. <view class="list-scroll-content">
  44. <view class="andr-mt-flex andr-mt-lBox" wx:for="{{tabItem.orderList}}" wx:key="uid">
  45. <image class="andr-mt-avatar andr-mt-marR20" src="{{item.goods_pic}}"></image>
  46. <view class="andr-mt-flex andr-mt-fdC position-relative">
  47. <text class="andr-mt-lname clamp2">{{item.goods_name}}</text>
  48. <view class="andr-mt-ltime flex goodsDetail">
  49. <view class="goodsMoney">
  50. <view>库存<text class="num">{{item.goods_stock}}</text>件</view>
  51. </view>
  52. <view class="goodsRight">
  53. <view>销量<text class="num">{{item.goods_sales}}</text>件</view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. <uni-load-more bind:__l="__l" status="{{tabItem.loadingType}}" vueId="{{'5ab0bee6-1-'+tabIndex}}"></uni-load-more>
  59. </view>
  60. </view>
  61. </view>