You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
54
hyhproject/admin/view/ecttarget/ecttarget.html
Executable file
54
hyhproject/admin/view/ecttarget/ecttarget.html
Executable file
@ -0,0 +1,54 @@
|
||||
{if !empty($object)}
|
||||
<form id='editFrom'>
|
||||
<table class='wst-form'>
|
||||
<tr>
|
||||
<td colspan='2' class='head-ititle'>订单信息</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th width='100'>订单编号:</th>
|
||||
<td>{$object['transactionId']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>用户名称:</th>
|
||||
<td>¥{$object['loginName']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ECT发送方:</th>
|
||||
<td>{$object['fromAccount']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ECT接收方:</th>
|
||||
<td>{$object['toAccount']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>备注:</th>
|
||||
<td>{$object['dataRemarks']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>ECT数量:</th>
|
||||
<td>{$object['ectNum']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>创建时间:</th>
|
||||
<td>{$object['createTime']}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th width='120'>管理员意见:</th>
|
||||
<td>
|
||||
<label><input type='radio' {if $object['status']==1} checked{/if} onclick='WST.showHide(0,"#tr")' name='status' id='refundStatus1' value='1'/>同意</label>
|
||||
<label style='margin-left:15px;'><input type='radio' {if $object['status']==2} checked{/if} onclick='WST.showHide(1,"#tr")' name='status' id='refundStatus0' value='2'/>不同意</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2' style='text-align:center;padding-top:30px;'>
|
||||
<button type="button" class="btn btn-primary btn-mright" onclick="javascript:toEcttarget({$object['id']})"><i class="fa fa-check"></i>确 定</button>
|
||||
<button type="button" class="btn" onclick='javascript:layer.close(w)'><i class="fa fa-angle-double-left"></i>取 消</button>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
{else}
|
||||
<div style='color:red;margin:20px;'>
|
||||
该订单不存在或已退款。
|
||||
</div>
|
||||
{/if}
|
Reference in New Issue
Block a user