index.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {extend name="layout/content" /}
  2. {block name="title"}<title>常见问题_祈盟文化客服中心</title>{/block}
  3. {block name="header"}
  4. <link rel="stylesheet" href="__STATIC__/css/kfzx.css">
  5. <script src="https://ssl.captcha.qq.com/TCaptcha.js"></script>
  6. {/block}
  7. {block name="content"}
  8. <img src="__STATIC__/images/icon/banner.png">
  9. <div class="warp_kfzx">
  10. <div class="container">
  11. <div class="tab_title">
  12. <a href="{:getServiceUrl('1')}" class="active">
  13. <img src="__STATIC__/images/icon/czwt.png">
  14. 常见问题
  15. </a>
  16. <a href="{:getServiceUrl('2')}">
  17. <img src="__STATIC__/images/icon/zhss.png">
  18. 账号申诉
  19. </a>
  20. <a href="{:getServiceUrl('3')}" >
  21. <img src="__STATIC__/images/icon/sscx.png">
  22. 申诉查询
  23. </a>
  24. <!-- <a href="{:getServiceUrl('4')}" >
  25. <img src="__STATIC__/images/icon/wxss.png">
  26. 微信申诉
  27. </a> -->
  28. </div>
  29. <div class="warp_problem">
  30. {empty name="list"}
  31. <!-- 暂无常见问题 -->
  32. <div class="no_content">
  33. <img src="__STATIC__/images/no-content.png">
  34. <p>暂无常见问题</p>
  35. </div>
  36. {else /}
  37. <div class="warp_tab">
  38. <div class="tab_problem">
  39. {foreach name="typeList" item="vo" key="k" }
  40. <a href="{:getServiceUrl('1')}{$k}" class=" {if condition='$type == $k'} current_page {/if} ">{$vo}</a>
  41. {/foreach}
  42. </div>
  43. </div>
  44. <div class="warp_problem_cont">
  45. {volist name="list" id='item' key="k"}
  46. <div class="problem_cont">
  47. <h4>{$current_num + $k}、{$item.title}</h4>
  48. {$item.answer}
  49. </div>
  50. {/volist}
  51. </div>
  52. {/empty}
  53. <!-- 分页 -->
  54. {$page}
  55. <!-- /分页 -->
  56. </div>
  57. </div>
  58. </div>
  59. {/block}
  60. {block name="detail_js"}
  61. {/block}