Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

smtp_tpl.htm 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {include file="public/layout" /}
  2. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page min-hg-c-i" style="min-width: 400px;">
  6. <div class="fixed-bar">
  7. <div class="item-title">
  8. <a class="back_xin" href="{:url('System/api_conf')}" title="返回"><i class="iconfont e-fanhui"></i></a>
  9. <div class="subject">
  10. <h3>电子邮箱</h3>
  11. <h5></h5>
  12. </div>
  13. <ul class="tab-base nc-row">
  14. {eq name="'System@smtp'|is_check_access" value="1"}
  15. <li><a href="{:url('System/smtp')}" {if condition="'smtp'==$Think.const.ACTION_NAME"}class="current"{/if}><span>邮箱配置</span></a></li>
  16. {/eq}
  17. {eq name="'System@smtp_tpl'|is_check_access" value="1"}
  18. <li><a href="{:url('System/smtp_tpl')}" {if condition="'smtp_tpl'==$Think.const.ACTION_NAME"}class="current"{/if}><span>自定义模板</span></a></li>
  19. {/eq}
  20. </ul>
  21. </div>
  22. </div>
  23. <div class="flexigrid">
  24. {empty name='$is_conf'}
  25. <!-- 操作说明 -->
  26. <div id="explanation" class="explanation" style="color: rgb(44, 188, 163); background-color: rgb(237, 251, 248); margin-bottom: 10px;">
  27. <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
  28. <h4 title="提示相关设置操作时应注意的要点">提示</h4>
  29. <span title="收起提示" id="explanationZoom" style="display: block;"></span>
  30. </div>
  31. <ul>
  32. <li style="color: red;">提示:邮箱尚未配置信息,全站邮箱功能将无法使用。</li>
  33. <!-- <li style="color: red;">模板填写已优化,请前往消息通知填写! <a href="{:url('Notice/buyer_notice')}">点击前往</a></li> -->
  34. </ul>
  35. </div>
  36. {/empty}
  37. <div class="hDiv">
  38. <div class="hDivBox">
  39. <table cellspacing="0" cellpadding="0" style="width: 100%">
  40. <thead>
  41. <tr>
  42. <th abbr="article_title" axis="col3" class="w150">
  43. <div class="text-l10">模板名称</div>
  44. </th>
  45. <th abbr="article_title" axis="col3" class="">
  46. <div class="text-l10">邮件标题</div>
  47. </th>
  48. <th abbr="send_scene" axis="col4" class="w150">
  49. <div class="tc">接收人</div>
  50. </th>
  51. <!-- <th abbr="article_time" axis="col6" class="w80">
  52. <div class="tc">启用</div>
  53. </th> -->
  54. </tr>
  55. </thead>
  56. </table>
  57. </div>
  58. </div>
  59. <div class="bDiv" style="height: auto;">
  60. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  61. <table style="width: 100%">
  62. <tbody>
  63. {empty name="list"}
  64. <tr>
  65. <td class="no-data" align="center" axis="col0" colspan="50">
  66. <div class="no_row">
  67. <div class="no_pic"><img src="__SKIN__/images/null-data.png"></div>
  68. </div>
  69. </td>
  70. </tr>
  71. {else/}
  72. {foreach name="list" item="vo" key="k" }
  73. <tr>
  74. <td class="">
  75. <div class="w150 text-l10">
  76. {$vo.tpl_name}
  77. </div>
  78. </td>
  79. <td style="width: 100%">
  80. <div class="">
  81. {php}
  82. $disabled_str = '';
  83. $web_users_switch = !empty($global['web_users_switch']) ? $global['web_users_switch'] : 0;
  84. if ((empty($shop_open) || $php_servicemeal <= 1) && in_array($vo['send_scene'], [5,6])) {
  85. $disabled_str = 'disabled="disabled" title="请开启商城中心"';
  86. } else if (empty($web_users_switch) && in_array($vo['send_scene'], [2,3,4])) {
  87. $disabled_str = 'disabled="disabled" title="请开启会员中心"';
  88. }
  89. {/php}
  90. <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}>
  91. </div>
  92. </td>
  93. <td style="width: 100%">
  94. <div class="w150 tc">
  95. {if condition="in_array($vo.send_scene,[1, 5, 20])"}
  96. <span class="green">站长</span>
  97. {else /}
  98. <span class="red">用户</span>
  99. {/if}
  100. </div>
  101. </td>
  102. <!-- <td class="">
  103. <div class="w80 tc">
  104. {eq name="$vo['is_open']" value='1'}
  105. <span class="yes" onClick="changeTableVal('smtp_tpl','tpl_id','{$vo.tpl_id}','is_open',this);"><i class="fa fa-check-circle"></i>是</span>
  106. {else /}
  107. <span class="no" onClick="changeTableVal('smtp_tpl','tpl_id','{$vo.tpl_id}','is_open',this);"><i class="fa fa-ban"></i>否</span>
  108. {/eq}
  109. </div>
  110. </td> -->
  111. </tr>
  112. {/foreach}
  113. {/empty}
  114. </tbody>
  115. </table>
  116. </div>
  117. <div class="iDiv" style="display: none;"></div>
  118. </div>
  119. <!-- <div class="tDiv">
  120. <div class="tDiv2">
  121. {include file="public/page" /}
  122. </div>
  123. <div style="clear:both"></div>
  124. </div> -->
  125. </div>
  126. </div>
  127. <script>
  128. $(document).ready(function(){
  129. // 表格行点击选中切换
  130. $('#flexigrid > table>tbody >tr').click(function(){
  131. $(this).toggleClass('trSelected');
  132. });
  133. // 点击刷新数据
  134. $('.fa-refresh').click(function(){
  135. location.href = location.href;
  136. });
  137. });
  138. </script>
  139. {include file="public/footer" /}