Files
thinksaas_lmve/app/shop/html/order.html
T
2023-06-22 13:33:25 +08:00

111 lines
2.1 KiB
HTML
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.
{php include pubTemplate("header")}
<div class="container">
<nav aria-label="breadcrumb" class="position-relative">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{SITE_URL}">首页</a></li>
<li class="breadcrumb-item"><a href="{tsUrl('shop')}">商店</a></li>
<li class="breadcrumb-item"><a href="{tsUrl('shop','myorder')}">我的订单</a></li>
<li class="breadcrumb-item active" aria-current="page">订单ID{$stroder[orderid]}</li>
</ol>
</nav>
<div class="card">
<div class="card-header">订单ID{$stroder[orderid]}<a class="btn btn-sm btn-info position-absolute" style="z-index: 100;top:6px;right:6px;" href="javascript:history.back(-1);">返回</a></div>
<div class="card-body">
<div class="shopping">
<table class="table table-hover table-bordered">
<thead class="thead-light">
<tr><th>Title</th><th>价格</th><th>数量</th><th>总额</th><th>订单状态</th><th>买家</th><th>卖家</th><th>日期</th></tr>
</thead>
<tbody>
<tr>
<td>
{$stroder[title]}
</td>
<td> {$stroder[pay]}{if $stroder[pay_type] == '1'}积分{/if}</td>
<td>
{$stroder[much]}
</td>
<td>
{$needpay}{if $stroder[pay_type] == '1'}积分{/if}
</td>
<td>
{if $stroder[state] == '1'}交易完成{/if}
</td>
<td>
{$buyuser[username]}
</td>
<td>
{$selluser[username]}
</td>
<td>
{$stroder[addtime]}
</td>
</tr>
</tbody>
</table>
<table class="table table-bordered">
<thead class="thead-light">
<tr bgcolor="#f0f0f0"><th>收货信息</th></tr>
</thead>
<tbody>
<tr>
<td>
{$stroder[address]}
</td>
</tr>
</tbody>
</table>
<table class="table table-bordered">
<thead class="thead-light">
<tr bgcolor="#f0f0f0"><th>反单</th></tr>
</thead>
<tbody>
<tr>
<td>
{$stroder[reorder]}
</td>
</tr>
</tbody>
</table>
<table class="table table-bordered">
<thead class="thead-light">
<tr bgcolor="#f0f0f0"><th>交易快照</th></tr>
</thead>
<tbody>
<tr>
<td>
{$stroder[content]}
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
{php include pubTemplate("footer")}