Files
addons
app_download_files
extend
hyhproject
admin
app
common
home
behavior
common
conf
controller
model
validate
view
default
css
img
js
shops
cashdraws
freights
goods
goodsappraises
goodsconsult
goodsvirtuals
logmoneys
messages
orders
recharge
reports
settlements
list.html
settlements.js
view.html
shopcats
shopconfigs
shoproles
shops
shopusers
stockwarn
base.html
import.html
index.html
base.html
footer.html
header.html
header_lite.html
index.html
right_cart.html
self_shop.html
self_shop_header.html
top.html
home2
mobile2
wechat2
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5B854518.wgt
admin.php
app-release.apk
app_download.html
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
qlg.tsgz.moe/hyhproject/home/view/default/shops/settlements/view.html
2019-09-06 23:53:10 +08:00

91 lines
2.7 KiB
HTML
Executable File

{extend name="default/shops/base" /}
{block name="title"}结算详情-卖家中心{__block__}{/block}
{block name="content"}
<div class="wst-shop-head"><span>结算详情</span><a href="<?=url('home/settlements/index');?>">返回</a></div>
<div class="wst-clear"></div>
<div class="wst-body">
<form id='editform' autocomplete='off'>
<div class="wst-tab-item" style="position: relative;">
<table class='wst-form'>
<tr>
<td class='head-ititle' colspan='2'>结算信息</td>
</tr>
<tr>
<th width='120'>结算单号:</th>
<td>{$object['settlementNo']}</td>
</tr>
<tr>
<th>结算金额:</th>
<td>¥{$object['settlementMoney']}</td>
</tr>
<tr>
<th>结算佣金:</th>
<td>¥{$object['commissionFee']}</td>
</tr>
<tr>
<th>返还金额:</th>
<td>¥{$object['backMoney']}</td>
</tr>
<tr>
<th>申请时间:</th>
<td>{$object['createTime']}</td>
</tr>
<tr>
<th>结算状态:</th>
<td>
{if $object['settlementStatus']==1}
已结算
{else}
待结算
{/if}
</td>
</tr>
{if $object['settlementStatus']==1}
<tr>
<th>结算时间:</th>
<td>{$object['settlementTime']}</td>
</tr>
<tr>
<th>结算备注:</th>
<td>{$object['remarks']}</td>
</tr>
{/if}
<tr>
<td colspan='2' align="center">
<table class='wst-list' style='margin-left:5px;'>
<thead>
<tr>
<th>序号</th>
<th>订单号</th>
<th>支付方式</th>
<th>商品金额</th>
<th>运费</th>
<th>订单总金额</th>
<th>积分抵扣</th>
<th>实付金额</th>
<th>佣金</th>
<th>下单时间</th>
</tr>
</thead>
{volist name='$object["list"]' id='vo'}
<tr>
<td>{$key+1}</td>
<td>{$vo['orderNo']}</td>
<td>{:WSTLangPayType($vo['payType'])}</td>
<td>¥{$vo['goodsMoney']}</td>
<td>¥{$vo['deliverMoney']}</td>
<td>¥{$vo['totalMoney']}</td>
<td>¥{$vo['scoreMoney']}</td>
<td>¥{$vo['realTotalMoney']}</td>
<td>¥{$vo['commissionFee']}</td>
<td>{$vo['createTime']}</td>
</tr>
{/volist}
</table>
</td>
</tr>
</table>
</div>
</form>
</div>
{/block}