Files
OMS/app/taoexlib/view/admin/info.html
2025-12-28 23:13:25 +08:00

73 lines
3.0 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.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<div class="tableform">
<table border="0" cellspan="0" colspan="0" style="background: none repeat scroll 0 0 #EAEEF4;">
<tr>
<td width="25%">
<table border="0" cellspan="0" colspan="0">
<tr>
<td width="40%" align="right">ShopEx通行证Id:</td>
<td width="60%" align="left"><{$account['entid']}></td>
</tr>
</table>
</td>
<td width="25%">
<table border="0" cellspan="0" colspan="0">
<tr>
<td width="40%" align="right">Email:</td>
<td width="60%" align="left"><{$account['email']}></td>
</tr>
</table>
</td>
<td width="25%">
<table border="0" cellspan="0" colspan="0">
<tr>
<td width="40%" align="right">状态:</td>
<td width="60%" align="left"><{if $info['res'] == 'fail'}><{$info['info']}><{elseif $info['info']->account_info->active == 1}>正常<{else}>未激活<{/if}></td>
</tr>
</table>
</td>
<td width="25%">
<form action="<{link app='taoexlib' ctl='admin_account' act='unbind'}>" method="post" id="enterpriseUnbind">
<{button type="button" label="解除绑定" id="unbind"}>
</form>
</td>
</tr>
<{ if $info['res'] == 'succ'}>
<tr>
<td width="25%">
<table border="0" cellspan="0" colspan="0">
<tr>
<td width="40%" align="right">当月可用短信:</td>
<td width="60%" align="left"><{$info['info']->month_residual}>条</td>
</tr>
</table>
</td>
<td width="25%">
<table border="0" cellspan="0" colspan="0">
<tr>
<td width="40%" align="right">全部可用短信:</td>
<td width="60%" align="left"><{if $info['info']->all_residual<$warningnumber}><font style="color:#FF0000; font-weight:bold;">还剩<{$info['info']->all_residual}>条,尽快充值!</font><{else}><{$info['info']->all_residual}>条<{/if}></td>
</tr>
</table>
</td>
<td width="25%">&nbsp;</td>
<td width="25%">&nbsp;</td>
</tr>
<{/if }>
</table>
</div>
<script type="text/javascript">
(function(){
var _form = $('enterpriseUnbind');
var btn =$('unbind');
btn.addEvent('click',function(){
_form.fireEvent('submit',{stop:$empty});
});
})();
</script>