mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-16 02:25:34 +08:00
54 lines
1.8 KiB
HTML
54 lines
1.8 KiB
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<style>
|
||
.delivery-tab{margin:0;padding:0;overflow:hidden;}
|
||
.delivery-tab li{float:left; height:24px;line-height:24px;margin-right:5px;font-size: 12px;overflow:hidden;}
|
||
.delivery-tab .hover{background-position:0 0;font-weight:bold;}
|
||
</style>
|
||
|
||
<div class="tableform">
|
||
<div class="note">
|
||
<font color='red'>以下淘宝网店的session将要过期,请<a href='index.php?app=ome&ctl=admin_shop&act=view_bindrelation' target="_blank"> <b>点击此处</b> </a>。分别进行登录
|
||
|
||
</font>
|
||
</div>
|
||
|
||
<table class="gridlist" style="*width:97%;">
|
||
<thead>
|
||
<tr>
|
||
<th>店铺名称</th>
|
||
<th>店铺类型</th>
|
||
<th>店铺节点</th>
|
||
<th>开始时间</th>
|
||
<th>过期时间</th>
|
||
<th>过期信息</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody id="memNode">
|
||
<{foreach from=$shopInfo item=item}>
|
||
<tr>
|
||
<td><{$item.name}></td>
|
||
<td><{$item.shop_type}></td>
|
||
<td><{$item.node_id}></td>
|
||
<td><{$item.addon.session_start_time}></td>
|
||
<td><{$item.addon.session_expire_time}></td>
|
||
<td><{$item.expireday}></td>
|
||
</tr>
|
||
<{/foreach}>
|
||
</tbody>
|
||
</table>
|
||
<div class="table-action">
|
||
<{button label="关闭" type="botton" name="btn-close" id="btn-close" style="padding-left:35px;"}>
|
||
</div>
|
||
</div>
|
||
|
||
<script>
|
||
|
||
$('btn-close').addEvent('click', function(){
|
||
$('btn-close').getParent('.dialog').retrieve('instance').close();
|
||
});
|
||
|
||
</script> |