mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-19 19:55:28 +08:00
65 lines
2.2 KiB
HTML
65 lines
2.2 KiB
HTML
<!--
|
||
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
||
|
||
Licensed under the Apache License, Version 2.0 (the "License");
|
||
you may not use this file except in compliance with the License.
|
||
You may obtain a copy of the License at
|
||
|
||
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
||
Unless required by applicable law or agreed to in writing, software
|
||
distributed under the License is distributed on an "AS IS" BASIS,
|
||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
See the License for the specific language governing permissions and
|
||
limitations under the License.
|
||
-->
|
||
|
||
<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> |