index.wxml 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <view>
  2. <view class="groupCenter">
  3. <view class="basicInform">
  4. <view class="user-avatar">
  5. <image class="userAvatarUrl" src="{{member_info.avatar}}"></image>
  6. </view>
  7. <view class="userInfo">
  8. <view class="user-name">
  9. <text>{{community_info.head_name}}</text>
  10. <view bindtap="goEdit" class="edit-name">
  11. <image class="icon-edit" src="../../images/icon-edit.png"></image>
  12. <text>编辑</text>
  13. </view>
  14. </view>
  15. <view class="userId">
  16. <text>ID:{{community_info.re_id}}</text>
  17. <view bindtap="goScan" class="scan-code">
  18. <image class="icon-scan" src="../../images/scan.png"></image>
  19. </view>
  20. </view>
  21. <view class="address">
  22. <text>绑定{{groupInfo.group_name}}:{{community_info.community_name}}</text>
  23. </view>
  24. </view>
  25. </view>
  26. <view class="distributionCon">
  27. <view class="distribution">
  28. <view class="myDistribution">
  29. <text>{{groupInfo.owner_name}}概况</text>
  30. </view>
  31. <view class="incomeCon">
  32. <view class="income">
  33. <text class="incomeTop">{{commission_info.mix_total_money}}</text>
  34. <text class="incomeBottom">总收入(元)</text>
  35. </view>
  36. <view class="income">
  37. <text class="incomeTop">{{total_order_count}}</text>
  38. <text class="incomeBottom">总订单</text>
  39. </view>
  40. <view class="income" bindtap='goLink' data-url='/lionfish_comshop/pages/groupCenter/memberList'>
  41. <text class="incomeTop">{{total_member_count}}</text>
  42. <text class="incomeBottom">会员数</text>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. <view class="effectData">
  48. <view class="effect">
  49. <view class="myEffect">
  50. <text>今日详情</text>
  51. </view>
  52. <view class="incomeCon">
  53. <view class="income">
  54. <text class="incomeTop">{{today_order_count}}</text>
  55. <view class="incomeBottom" data-type="1">
  56. <text>订单总数</text>
  57. </view>
  58. </view>
  59. <view class="income">
  60. <text class="incomeTop">{{today_effect_order_count}}</text>
  61. <view class="incomeBottom" data-type="2">
  62. <text>有效订单</text>
  63. </view>
  64. </view>
  65. <view class="income">
  66. <text class="incomeTop">{{today_pay_order_count}}</text>
  67. <view class="incomeBottom" data-type="3">
  68. <text>付款人数</text>
  69. </view>
  70. </view>
  71. <view class="income">
  72. <text class="incomeTop">{{today_pre_total_money}}</text>
  73. <view class="incomeBottom" data-type="3">
  74. <text>预估收入</text>
  75. </view>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. <view class="groupCenterCon">
  81. <view class="order" wx:if="{{isShow}}">
  82. <view class="myOrders">
  83. <text>我的团单</text>
  84. <view bindtap="goOrder" class="allGroupOrder" data-status="0">
  85. <text>查看全部</text>
  86. <image class="rightArrowImg" src="../../images/rightArrowImg.png"></image>
  87. </view>
  88. </view>
  89. <view class="orderTab">
  90. <view bindtap="goOrder" class="order_status" data-status="1">
  91. <text class="num" wx:if="{{waitSendNum!=0}}">{{waitSendNum}}</text>
  92. <image class="distributionIcon" src="../../images/distributionIcon-order.png"></image>
  93. <text>待配送</text>
  94. </view>
  95. <view bindtap="goOrder" class="order_status" data-status="2">
  96. <text class="num" wx:if="{{waitSignNum!=0}}">{{waitSignNum}}</text>
  97. <image class="receiveIcon" src="../../images/receiveIcon-order.png"></image>
  98. <text>待签收</text>
  99. </view>
  100. <view bindtap="goOrder" class="order_status" data-status="3">
  101. <text class="num" wx:if="{{waitPickNum!=0}}">{{waitPickNum}}</text>
  102. <image class="needPickIcon" src="../../images/needPickIcon-order.png"></image>
  103. <text>待提货</text>
  104. </view>
  105. <view bindtap="goOrder" class="order_status" data-status="4">
  106. <text class="num" wx:if="{{completeNum!=0}}">{{completeNum}}</text>
  107. <image class="completeIcon" src="../../images/completeIcon-order.png"></image>
  108. <text>已完成</text>
  109. </view>
  110. </view>
  111. </view>
  112. <view class="record">
  113. <navigator hoverClass="none" url="/lionfish_comshop/pages/groupCenter/communityMembers" wx:if="{{isShow}}">
  114. <view class="recordList">
  115. <text class="recordListTit">{{groupInfo.group_name}}用户</text>
  116. <view class="rightText">待核销 <image class="rightArrowImg" src="../../images/rightArrowImg.png"></image></view>
  117. </view>
  118. </navigator>
  119. <navigator hoverClass="none" url="/lionfish_comshop/pages/groupCenter/distributionList">
  120. <view class="recordList">
  121. <text class="recordListTit">分销记录</text>
  122. <image class="rightArrowImg" src="../../images/rightArrowImg.png"></image>
  123. </view>
  124. </navigator>
  125. <navigator hoverClass="none" url="/lionfish_comshop/pages/groupCenter/wallet">
  126. <view class="recordList">
  127. <text class="recordListTit">我的钱包</text>
  128. <image class="rightArrowImg" src="../../images/rightArrowImg.png"></image>
  129. </view>
  130. </navigator>
  131. <navigator style="display:none;" hoverClass="none" url="/lionfish_comshop/pages/groupCenter/settlementList">
  132. <view class="recordList borNone">
  133. <text class="recordListTit">结算记录</text>
  134. <image class="rightArrowImg" src="../../images/rightArrowImg.png"></image>
  135. </view>
  136. </navigator>
  137. <navigator hoverClass="none" url="/lionfish_comshop/pages/groupCenter/list">
  138. <view class="recordList">
  139. <text class="recordListTit">清单列表</text>
  140. <image class="rightArrowImg" src="../../images/rightArrowImg.png"></image>
  141. </view>
  142. </navigator>
  143. <navigator hoverClass="none" url="/lionfish_comshop/pages/groupCenter/closure" wx:if="{{open_community_addhexiaomember==1}}">
  144. <view class="recordList">
  145. <text class="recordListTit">核销管理</text>
  146. <image class="rightArrowImg" src="../../images/rightArrowImg.png"></image>
  147. </view>
  148. </navigator>
  149. <navigator hoverClass="none" url="/lionfish_comshop/pages/groupCenter/gruopInfo" wx:if="{{open_community_head_leve>0}}">
  150. <view class="recordList borNone">
  151. <text class="recordListTit">{{groupInfo.owner_name}}分销</text>
  152. <image class="rightArrowImg" src="../../images/rightArrowImg.png"></image>
  153. </view>
  154. </navigator>
  155. </view>
  156. <navigator class="distributionInstr" style="display:none;" hoverClass="none" url="/lionfish_comshop/pages/groupCenter/distributionInstruct">
  157. <view class="disInstr">
  158. <image class="distributionInstrIcon" src="../../images/question.png"></image>
  159. <text>分销说明</text>
  160. </view>
  161. </navigator>
  162. </view>
  163. </view>
  164. <view bindtap="confirmMessage" class="hide-dialog" wx:if="{{dialogShow}}"></view>
  165. <view class="dialog-tips" wx:if="{{dialogShow}}">
  166. <view class="dialog-title">
  167. <text>{{explainTitle}}</text>
  168. </view>
  169. <view class="dialog-content">
  170. <text>{{explainContent}}</text>
  171. </view>
  172. <button bindtap="confirmMessage" class="dialog-btn">
  173. <text>我知道了</text>
  174. </button>
  175. </view>
  176. </view>