index.wxml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <import src="tabbar.wxml"></import>
  2. <view class="groupCenter pb100">
  3. <view class="basicInform">
  4. <view class="user-avatar">
  5. <image class="userAvatarUrl" src="{{supply_info.logo}}"></image>
  6. </view>
  7. <view class="userInfo">
  8. <view class="user-name">
  9. <text>{{supply_info.shopname}}</text>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="distributionCon">
  14. <view class="distribution mx10">
  15. <view class="myDistribution">
  16. <text>销售数据</text>
  17. </view>
  18. <view class="incomeCon">
  19. <view class="income">
  20. <text class="incomeTop">{{today_order_count}}</text>
  21. <text class="incomeBottom">今日订单</text>
  22. </view>
  23. <view class="income">
  24. <text class="incomeTop">{{yestday_order_count}}</text>
  25. <text class="incomeBottom">昨日订单</text>
  26. </view>
  27. <view class="income">
  28. <text class="incomeTop">{{total_order_count}}</text>
  29. <text class="incomeBottom">总订单数</text>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="effectData">
  35. <view class="effect">
  36. <view class="incomeCon">
  37. <view class="income">
  38. <text class="incomeTop">{{wait_statement_money}}</text>
  39. <view class="incomeBottom">
  40. <text>待结算(元)</text>
  41. </view>
  42. </view>
  43. <view class="income">
  44. <text class="incomeTop">{{has_statement_money}}</text>
  45. <view class="incomeBottom">
  46. <text>已结算(元)</text>
  47. </view>
  48. </view>
  49. <view class="income">
  50. <text class="incomeTop">{{has_get_money}}</text>
  51. <view class="incomeBottom">
  52. <text>已提现(元)</text>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. <view class="groupCenterCon mx10">
  59. <view class="order">
  60. <view class="myOrders" bindtap="goLink" data-link="/lionfish_comshop/moduleB/supply/orderManage">
  61. <text>我的订单</text>
  62. <view bindtap="goOrder" class="allGroupOrder" data-status="0">
  63. <text>查看全部</text>
  64. <image class="rightArrowImg" src="../../images/rightArrowImg.png"></image>
  65. </view>
  66. </view>
  67. <view class="orderTab">
  68. <view bindtap="goOrder" class="order_status" bindtap="goLink" data-link="/lionfish_comshop/moduleB/supply/goodsManage?status=8">
  69. <text class="num" wx:if="{{false}}">0</text>
  70. <image class="distributionIcon" src="../../images/completeIcon-order.png"></image>
  71. <text>库存预警</text>
  72. </view>
  73. <view bindtap="goLink" class="order_status" data-link="/lionfish_comshop/moduleB/supply/orderManage?status=1">
  74. <text class="num" wx:if="{{wait_send_count!=0}}">{{wait_send_count}}</text>
  75. <image class="receiveIcon" src="../../images/distributionIcon-order.png"></image>
  76. <text>待发货</text>
  77. </view>
  78. <view style="width:20%"></view>
  79. <!-- <view class="order_status">
  80. <text class="num" wx:if="{{wait_refund_count!=0}}">{{wait_refund_count}}</text>
  81. <image class="needPickIcon" src="../../images/needPickIcon-order.png"></image>
  82. <text>售后</text>
  83. </view> -->
  84. </view>
  85. </view>
  86. </view>
  87. </view>
  88. <template is="tabbar" data="{{data:2}}"></template>