begin of thinksaas 3.68

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2023-06-22 13:33:25 +08:00
commit 963ec1b2ea
2746 changed files with 331806 additions and 0 deletions
+111
View File
@@ -0,0 +1,111 @@
{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")}