Commit 2844358513dbef859789778825873edb4f6c72a5
1 parent
631f9ce7
OA分销关系备注
Showing
2 changed files
with
8 additions
and
1 deletions
packageA/pages/distribution/myteam/myteam.js
| ... | ... | @@ -83,6 +83,7 @@ Page({ |
| 83 | 83 | store_id: app.globalData.setting.stoid, |
| 84 | 84 | user_id: app.globalData.user_id, |
| 85 | 85 | level: 1, |
| 86 | + isall: 1, | |
| 86 | 87 | }); |
| 87 | 88 | |
| 88 | 89 | }; |
| ... | ... | @@ -149,6 +150,7 @@ Page({ |
| 149 | 150 | store_id: app.globalData.setting.stoid, |
| 150 | 151 | user_id: app.globalData.user_id, |
| 151 | 152 | level: th.data.currentTabIndex + 1, |
| 153 | + isall: 1 | |
| 152 | 154 | }); |
| 153 | 155 | }, |
| 154 | 156 | |
| ... | ... | @@ -176,6 +178,7 @@ Page({ |
| 176 | 178 | store_id: app.globalData.setting.stoid, |
| 177 | 179 | user_id: app.globalData.user_id, |
| 178 | 180 | level: currentIndex + 1, |
| 181 | + isall: 1 | |
| 179 | 182 | }); |
| 180 | 183 | }, |
| 181 | 184 | ... | ... |
packageA/pages/distribution/myteam/myteam.wxml
| ... | ... | @@ -9,7 +9,11 @@ |
| 9 | 9 | <view class="flex ai-center"> |
| 10 | 10 | <view class="pdr20"><image class="avatar" src="{{item.head_pic}}"/></view> |
| 11 | 11 | <view> |
| 12 | - <view>{{item.nickname}}</view> | |
| 12 | + <view> | |
| 13 | + {{item.nickname}} | |
| 14 | + <block wx:if="{{item.is_distribut == 1}}">分销会员</block> | |
| 15 | + <block wx:else>普通会员</block> | |
| 16 | + </view> | |
| 13 | 17 | <view class="fs24 c-a">{{filter.format_time(item.reg_time)}}</view> |
| 14 | 18 | </view> |
| 15 | 19 | </view> | ... | ... |