123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- {include file="public/layout" /}
- <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
- <div id="append_parent"></div>
- <div id="ajaxwaitid"></div>
- <div class="page min-hg-c-i" style="min-width: 400px;">
- <div class="fixed-bar">
- <div class="item-title">
- <a class="back_xin" href="{:url('System/api_conf')}" title="返回"><i class="iconfont e-fanhui"></i></a>
- <div class="subject">
- <h3>电子邮箱</h3>
- <h5></h5>
- </div>
- <ul class="tab-base nc-row">
- {eq name="'System@smtp'|is_check_access" value="1"}
- <li><a href="{:url('System/smtp')}" {if condition="'smtp'==$Think.const.ACTION_NAME"}class="current"{/if}><span>邮箱配置</span></a></li>
- {/eq}
-
- {eq name="'System@smtp_tpl'|is_check_access" value="1"}
- <li><a href="{:url('System/smtp_tpl')}" {if condition="'smtp_tpl'==$Think.const.ACTION_NAME"}class="current"{/if}><span>自定义模板</span></a></li>
- {/eq}
- </ul>
- </div>
- </div>
- <div class="flexigrid">
- {empty name='$is_conf'}
- <!-- 操作说明 -->
- <div id="explanation" class="explanation" style="color: rgb(44, 188, 163); background-color: rgb(237, 251, 248); margin-bottom: 10px;">
- <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
- <h4 title="提示相关设置操作时应注意的要点">提示</h4>
- <span title="收起提示" id="explanationZoom" style="display: block;"></span>
- </div>
- <ul>
- <li style="color: red;">提示:邮箱尚未配置信息,全站邮箱功能将无法使用。</li>
- <!-- <li style="color: red;">模板填写已优化,请前往消息通知填写! <a href="{:url('Notice/buyer_notice')}">点击前往</a></li> -->
- </ul>
- </div>
- {/empty}
-
- <div class="hDiv">
- <div class="hDivBox">
- <table cellspacing="0" cellpadding="0" style="width: 100%">
- <thead>
- <tr>
- <th abbr="article_title" axis="col3" class="w150">
- <div class="text-l10">模板名称</div>
- </th>
- <th abbr="article_title" axis="col3" class="">
- <div class="text-l10">邮件标题</div>
- </th>
- <th abbr="send_scene" axis="col4" class="w150">
- <div class="tc">接收人</div>
- </th>
- <!-- <th abbr="article_time" axis="col6" class="w80">
- <div class="tc">启用</div>
- </th> -->
- </tr>
- </thead>
- </table>
- </div>
- </div>
- <div class="bDiv" style="height: auto;">
- <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
- <table style="width: 100%">
- <tbody>
- {empty name="list"}
- <tr>
- <td class="no-data" align="center" axis="col0" colspan="50">
- <div class="no_row">
- <div class="no_pic"><img src="__SKIN__/images/null-data.png"></div>
- </div>
- </td>
- </tr>
- {else/}
- {foreach name="list" item="vo" key="k" }
- <tr>
-
- <td class="">
- <div class="w150 text-l10">
- {$vo.tpl_name}
- </div>
- </td>
- <td style="width: 100%">
- <div class="">
- {php}
- $disabled_str = '';
- $web_users_switch = !empty($global['web_users_switch']) ? $global['web_users_switch'] : 0;
- if ((empty($shop_open) || $php_servicemeal <= 1) && in_array($vo['send_scene'], [5,6])) {
- $disabled_str = 'disabled="disabled" title="请开启商城中心"';
- } else if (empty($web_users_switch) && in_array($vo['send_scene'], [2,3,4])) {
- $disabled_str = 'disabled="disabled" title="请开启会员中心"';
- }
- {/php}
- <input type="text" name="tpl_title" value="{$vo.tpl_title}" onchange="changeTableVal('smtp_tpl','tpl_id','{$vo.tpl_id}','tpl_title',this);" style="width: 94%;" {$disabled_str}>
- </div>
- </td>
- <td style="width: 100%">
- <div class="w150 tc">
- {if condition="in_array($vo.send_scene,[1, 5, 20])"}
- <span class="green">站长</span>
- {else /}
- <span class="red">用户</span>
- {/if}
- </div>
- </td>
- <!-- <td class="">
- <div class="w80 tc">
- {eq name="$vo['is_open']" value='1'}
- <span class="yes" onClick="changeTableVal('smtp_tpl','tpl_id','{$vo.tpl_id}','is_open',this);"><i class="fa fa-check-circle"></i>是</span>
- {else /}
- <span class="no" onClick="changeTableVal('smtp_tpl','tpl_id','{$vo.tpl_id}','is_open',this);"><i class="fa fa-ban"></i>否</span>
- {/eq}
- </div>
- </td> -->
- </tr>
- {/foreach}
- {/empty}
- </tbody>
- </table>
- </div>
- <div class="iDiv" style="display: none;"></div>
- </div>
- <!-- <div class="tDiv">
- <div class="tDiv2">
- {include file="public/page" /}
- </div>
- <div style="clear:both"></div>
- </div> -->
- </div>
- </div>
- <script>
- $(document).ready(function(){
- // 表格行点击选中切换
- $('#flexigrid > table>tbody >tr').click(function(){
- $(this).toggleClass('trSelected');
- });
-
- // 点击刷新数据
- $('.fa-refresh').click(function(){
- location.href = location.href;
- });
- });
- </script>
-
- {include file="public/footer" /}
|