|
|
@@ -91,10 +91,22 @@
|
|
|
<image class="list-head" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/wx.png" wx:if="{{!item.head}}"></image>
|
|
|
<view class="list-name ellipsis" wx:if="{{item.nickname}}">{{item.nickname}}</view>
|
|
|
<view class="list-name ellipsis" wx:if="{{!item.nickname}}">---</view>
|
|
|
- <view class="list-price" style="right: 260rpx;" wx:if="{{wx_user.rank>=1}}"><currency symbol="" value="{{item.sale_group_sum}}" ></currency></view>
|
|
|
- <view class="list-price" style="right: 200rpx;" wx:else><currency symbol="" value="{{item.sale_group_sum}}" ></currency></view>
|
|
|
- <view class="list-price" style="right: 110rpx;" wx:if="{{wx_user.rank>=1}}"><currency symbol="" value="{{item.sale_group}}" ></currency></view>
|
|
|
- <view class="list-price" wx:else><currency symbol="" value="{{item.sale_group}}" ></currency></view>
|
|
|
+ <view class="list-price" style="right: 260rpx;" wx:if="{{wx_user.rank>=1}}">
|
|
|
+ <!-- <currency symbol="" value="{{item.sale_group_sum}}" ></currency> -->
|
|
|
+ {{parseInt(item.sale_group_sum / 100)}}
|
|
|
+ </view>
|
|
|
+ <view class="list-price" style="right: 200rpx;" wx:else>
|
|
|
+ <!-- <currency symbol="" value="{{item.sale_group_sum}}" ></currency> -->
|
|
|
+ {{parseInt(item.sale_group_sum / 100)}}
|
|
|
+ </view>
|
|
|
+ <view class="list-price" style="right: 110rpx;" wx:if="{{wx_user.rank>=1}}">
|
|
|
+ <!-- <currency symbol="" value="{{item.sale_group}}" ></currency> -->
|
|
|
+ {{parseInt(item.sale_group / 100)}}
|
|
|
+ </view>
|
|
|
+ <view class="list-price" wx:else>
|
|
|
+ <!-- <currency symbol="" value="{{item.sale_group}}" ></currency> -->
|
|
|
+ {{parseInt(item.sale_group / 100)}}
|
|
|
+ </view>
|
|
|
<view wx:if="{{item.ne_invitee.length}}">
|
|
|
<view class="list-oheadlist">
|
|
|
<image src="{{item1.head}}" class="list-ohead" wx:for="{{item.ne_invitee}}" wx:for-item="item1" wx:key="{{index}}"/>
|
|
|
@@ -120,10 +132,22 @@
|
|
|
<image class="list-head" src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/image/icon/wx.png" wx:if="{{!item.head}}"></image>
|
|
|
<view class="list-name ellipsis" wx:if="{{item.nickname}}">{{item.nickname}}</view>
|
|
|
<view class="list-name ellipsis" wx:if="{{!item.nickname}}">---</view>
|
|
|
- <view class="list-price" style="right: 260rpx;" wx:if="{{wx_user.rank>=1}}"><currency symbol="" value="{{item.sale_group_sum}}" ></currency></view>
|
|
|
- <view class="list-price" style="right: 200rpx;" wx:else><currency symbol="" value="{{item.sale_group_sum}}" ></currency></view>
|
|
|
- <view class="list-price" style="right: 110rpx;" wx:if="{{wx_user.rank>=1}}"><currency symbol="" value="{{item.sale_group}}" ></currency></view>
|
|
|
- <view class="list-price" wx:else><currency symbol="" value="{{item.sale_group}}" ></currency></view>
|
|
|
+ <view class="list-price" style="right: 260rpx;" wx:if="{{wx_user.rank>=1}}">
|
|
|
+ <!-- <currency symbol="" value="{{item.sale_group_sum}}" ></currency> -->
|
|
|
+ {{parseInt(item.sale_group_sum / 100)}}
|
|
|
+ </view>
|
|
|
+ <view class="list-price" style="right: 200rpx;" wx:else>
|
|
|
+ <!-- <currency symbol="" value="{{item.sale_group_sum}}" ></currency> -->
|
|
|
+ {{parseInt(item.sale_group_sum / 100)}}
|
|
|
+ </view>
|
|
|
+ <view class="list-price" style="right: 110rpx;" wx:if="{{wx_user.rank>=1}}">
|
|
|
+ <!-- <currency symbol="" value="{{item.sale_group}}" ></currency> -->
|
|
|
+ {{parseInt(item.sale_group / 100)}}
|
|
|
+ </view>
|
|
|
+ <view class="list-price" wx:else>
|
|
|
+ <!-- <currency symbol="" value="{{item.sale_group}}" ></currency> -->
|
|
|
+ {{parseInt(item.sale_group / 100)}}
|
|
|
+ </view>
|
|
|
<view wx:if="{{item.ne_invitee.length}}">
|
|
|
<view class="list-oheadlist">
|
|
|
<image src="{{item1.head}}" class="list-ohead" wx:for="{{item.ne_invitee}}" wx:for-item="item1" wx:key="{{index}}" wx:if="{{item1.head}}"/>
|