29 lines
1.5 KiB
HTML
29 lines
1.5 KiB
HTML
<foreach name="lists" item="v">
|
|
<div class="fll_acc" style="padding-bottom: .3rem;">
|
|
<ul style="overflow: hidden;">
|
|
<li style="width: 45%; padding-bottom: .1rem;">
|
|
<p>订单号:{$v[order_sn]}</p>
|
|
<p>购买人:{$v[nickname]|getsubStr=0,12}</p>
|
|
</li>
|
|
<li style="width: 40%; margin-left: 15%; padding-bottom: .1rem;" >
|
|
<p><span>订单金额: </span><span class="red">{$v[goods_price]}</span></p>
|
|
<p><span>分成金额: </span><span class="red">{$v[money]}</span></p>
|
|
</li>
|
|
<li style="width: 100%; padding-top: 0;">
|
|
<p style="display: initial;"><span>支付状态: </span>
|
|
<span class="red">
|
|
<if condition="$v[status] eq 0">未付款(未分成)</if>
|
|
<if condition="$v[status] eq 1">已付款(未分成)</if>
|
|
<if condition="$v[status] eq 2">等待分成(未分成)</if>
|
|
<if condition="$v[status] eq 3">已分成</if>
|
|
<if condition="$v[status] eq 4">已取消</if>
|
|
</span>
|
|
</p>
|
|
<p class="coligh" class="coligh" style="display: initial; margin-left: 0.230rem;"><span>{:date('Y-m-d H:i:s',$v[create_time])}</span></p>
|
|
</li>
|
|
</ul>
|
|
<notempty name="v['return_desc']">
|
|
<ul><strong>备注:{$v.return_desc}</strong></ul>
|
|
</notempty>
|
|
</div>
|
|
</foreach> |