Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

notify_tpl.htm 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. {include file="users_notice/bar" /}
  7. <div class="flexigrid">
  8. <!-- 操作说明 -->
  9. <!-- <div id="explanation" class="explanation" style="color: rgb(44, 188, 163); background-color: rgb(237, 251, 248); margin-bottom: 10px;">
  10. <div id="checkZoom" class="title"><i class="fa fa-lightbulb-o"></i>
  11. <h4 title="提示相关设置操作时应注意的要点">提示</h4>
  12. <span title="收起提示" id="explanationZoom" style="display: block;"></span>
  13. </div>
  14. <ul>
  15. <li style="color: red;">模板填写已优化,请前往消息通知填写! <a href="{:url('Notice/buyer_notice')}">点击前往</a></li>
  16. </ul>
  17. </div> -->
  18. <div class="hDiv">
  19. <div class="hDivBox">
  20. <table cellspacing="0" cellpadding="0" style="width: 100%">
  21. <thead>
  22. <tr>
  23. <th abbr="article_title" axis="col3" class="w150">
  24. <div class="text-l10">模板名称</div>
  25. </th>
  26. <th abbr="article_title" axis="col3" class="">
  27. <div class="text-l10">站内信标题</div>
  28. </th>
  29. <th abbr="article_time" axis="col6" class="w60">
  30. <div class="tc">接收者</div>
  31. </th>
  32. <th abbr="article_time" axis="col6" class="w50">
  33. <div class="tc">启用</div>
  34. </th>
  35. <th abbr="article_time" axis="col6" class="w100">
  36. <div class="tc">更新时间</div>
  37. </th>
  38. </tr>
  39. </thead>
  40. </table>
  41. </div>
  42. </div>
  43. <div class="bDiv" style="height: auto;">
  44. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  45. <table style="width: 100%">
  46. <tbody>
  47. {empty name="list"}
  48. <tr>
  49. <td class="no-data" align="center" axis="col0" colspan="50">
  50. <div class="no_row">
  51. <div class="no_pic"><img src="__SKIN__/images/null-data.png"></div>
  52. </div>
  53. </td>
  54. </tr>
  55. {else/}
  56. {foreach name="list" item="vo" key="k" }
  57. <tr>
  58. <td class="">
  59. <div class="w150 text-l10">
  60. {$vo.tpl_name}
  61. </div>
  62. </td>
  63. <td style="width: 100%">
  64. <div class="">
  65. {php}
  66. $disabled_str = '';
  67. $web_users_switch = !empty($global['web_users_switch']) ? $global['web_users_switch'] : 0;
  68. if ((empty($shop_open) || $php_servicemeal <= 1) && in_array($vo['send_scene'], [5,6])) {
  69. $disabled_str = 'disabled="disabled" title="请开启商城中心"';
  70. }
  71. {/php}
  72. <input type="text" name="tpl_title" value="{$vo.tpl_title}" onchange="changeTableVal('users_notice_tpl','tpl_id','{$vo.tpl_id}','tpl_title',this);" style="width: 94%;" {$disabled_str}>
  73. </div>
  74. </td>
  75. <td class="">
  76. <div class="w60 tc">
  77. {eq name="$vo['send_scene']" value='6'}
  78. <span class="red">用户</span>
  79. {else /}
  80. <span class="green">站长</span>
  81. {/eq}
  82. </div>
  83. </td>
  84. <td class="">
  85. <div class="w50 tc">
  86. {eq name="$vo['is_open']" value='1'}
  87. <span class="yes" onClick="changeTableVal('users_notice_tpl','tpl_id','{$vo.tpl_id}','is_open',this);"><i class="fa fa-check-circle"></i>是</span>
  88. {else /}
  89. <span class="no" onClick="changeTableVal('users_notice_tpl','tpl_id','{$vo.tpl_id}','is_open',this);"><i class="fa fa-ban"></i>否</span>
  90. {/eq}
  91. </div>
  92. </td>
  93. <td class="">
  94. <div class="w100 tc">
  95. {$vo.update_time|MyDate='Y-m-d',###}
  96. </div>
  97. </td>
  98. </tr>
  99. {/foreach}
  100. {/empty}
  101. </tbody>
  102. </table>
  103. </div>
  104. <div class="iDiv" style="display: none;"></div>
  105. </div>
  106. <!-- <div class="tDiv">
  107. <div class="tDiv2">
  108. {include file="public/page" /}
  109. </div>
  110. <div style="clear:both"></div>
  111. </div> -->
  112. </div>
  113. </div>
  114. <script>
  115. $(document).ready(function(){
  116. // 表格行点击选中切换
  117. $('#flexigrid > table>tbody >tr').click(function(){
  118. $(this).toggleClass('trSelected');
  119. });
  120. // 点击刷新数据
  121. $('.fa-refresh').click(function(){
  122. location.href = location.href;
  123. });
  124. });
  125. </script>
  126. {include file="public/footer" /}