seller_tpl.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {include file="public/header" /}
  2. <div class="page">
  3. <div class="fixed-bar">
  4. <div class="item-title">
  5. <div class="subject">
  6. <h3>{$Think.lang.ds_message}</h3>
  7. <h5></h5>
  8. </div>
  9. {include file="public/admin_items" /}
  10. </div>
  11. </div>
  12. <div class="explanation" id="explanation">
  13. <div class="title" id="checkZoom">
  14. <h4 title="{$Think.lang.ds_explanation_tip}">{$Think.lang.ds_explanation}</h4>
  15. <span id="explanationZoom" title="{$Think.lang.ds_explanation_close}" class="arrow"></span>
  16. </div>
  17. <ul>
  18. <li>{$Think.lang.message_help1}</li>
  19. <li>{$Think.lang.message_help2}</li>
  20. <li>{$Think.lang.message_help3}</li>
  21. </ul>
  22. </div>
  23. <table class="ds-default-table">
  24. <thead>
  25. <tr class="space">
  26. <th colspan="15" class="nobg">{$Think.lang.ds_list}</th>
  27. </tr>
  28. <tr class="thead">
  29. <th>&nbsp;</th>
  30. <th>{$Think.lang.mailtemplates_index_desc}</th>
  31. <th class="align-center">{$Think.lang.mt_message_switch}</th>
  32. <th class="align-center">{$Think.lang.mt_short_switch}</th>
  33. <th class="align-center">{$Think.lang.mt_mail_switch}</th>
  34. <th class="align-center">{$Think.lang.mt_weixin_switch}</th>
  35. <th class="align-center">{$Think.lang.ds_handle}</th>
  36. </tr>
  37. </thead>
  38. <tbody>
  39. {notempty name="mstpl_list"}
  40. {foreach name="mstpl_list" item="val"}
  41. <tr class="hover">
  42. <td class="w24">&nbsp;</td>
  43. <td class="w25pre">{$val.storemt_name}</td>
  44. <td class="align-center">{if $val.storemt_message_switch}{$Think.lang.ds_open}{else/}{$Think.lang.ds_close}{/if}</td>
  45. <td class="align-center">{if $val.storemt_short_switch}{$Think.lang.ds_open}{else/}{$Think.lang.ds_close}{/if}</td>
  46. <td class="align-center">{if $val.storemt_mail_switch}{$Think.lang.ds_open}{else/}{$Think.lang.ds_close}{/if}</td>
  47. <td class="align-center">{if $val.storemt_weixin_switch}{$Think.lang.ds_open}{else/}{$Think.lang.ds_close}{/if}</td>
  48. <td class="w60 align-center"><a href="{:url('Message/seller_tpl_edit',['code'=>$val.storemt_code])}" class="dsui-btn-edit"><i class="iconfont"></i>{$Think.lang.ds_edit}</a></td>
  49. </tr>
  50. {/foreach}
  51. {/notempty}
  52. </tbody>
  53. </table>
  54. </div>