yuminge-app/yun-min-program-plugin-master/packageC/selfCarry/selfCarry_reward/selfCarry_reward.wxml

42 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--packageC/selfCarry/selfCarry_reward/selfCarry_reward.wxml-->
<view class="selfCarry_reward">
<view class="content">
<view class="background">
<view class="user">
<view class="user-head">
<image style="width: 100%; height: 100%;" src="{{member.avatar_image}}" mode="{{widthFix}}"/>
</view>
<view class="user-name">{{member.nickname}}</view>
</view>
</view>
<view class="absolute-block">
<view class="top_left">自提点名称:</view>
<view class="top_right">{{deliver_name}}</view>
<view class="left">
<view class="first">
<b>{{amount}}</b>
</view>
<view class="second">奖励总额</view>
</view>
</view>
<view class="list">
<view class="title_bolok">奖励</view>
<view class="li" wx:for="{{dividend}}" wx:for-item="item" wx:for-index="index" wx:key="index">
<view class="block">
<view class="left">
<view>
提成ID{{item.id}}
<i class="stateClass">{{item.status_name}}</i>
</view>
<view class="date">{{ item.created_at }}</view>
</view>
<view class="right">
<view>{{ item.amount }}{{language['元']}}</view>
</view>
</view>
</view>
<text wx:if="{{dividend.length== 0}}" class="notext">还没有记录哦 </text>
</view>
</view>
</view>