index.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {extend name="default/base/base_member" /}
  2. {block name="member_main"}
  3. <table class="dsm-default-table order">
  4. <thead>
  5. <tr>
  6. <th class="w30"></th>
  7. <th>{$Think.lang.store_consult_reply}</th>
  8. <th class="w30"></th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. {notempty name="list_consult"}
  13. {foreach name="list_consult" item="consult"}
  14. <tr>
  15. <td colspan="19" class="sep-row"></td>
  16. </tr>
  17. <tr>
  18. <th colspan="20"><span class="ml10"><a href="{:url('Goods/index',['goods_id'=>$consult.goods_id])}" target="_blank">{$consult.goods_name}</a></span><span class="ml20">{$Think.lang.store_consult_list_consult_time}{$Think.lang.ds_colon}<em class="goods-time">{$consult.consult_addtime|date="Y-m-d H:i:s"}</em></span></th>
  19. </tr>
  20. <tr>
  21. <td class="tl bdl"></td>
  22. <td class="tl"><strong>{$Think.lang.store_consult_list_consult_content}{$Think.lang.ds_colon}</strong><span class="gray">{:nl2br($consult.consult_content)}</span></td>
  23. <td class="bdr"></td>
  24. {notempty name="consult.consult_reply"}
  25. <tr>
  26. <td class="tl bdl"></td>
  27. <td class="tl"><strong>{$Think.lang.store_consult_list_reply_time}{$Think.lang.ds_colon}</strong><span class="gray">{:nl2br($consult.consult_reply)}</span><span class="ml10 goods-time">({$consult.consult_replytime|date="Y-m-d H:i:s"})</span></td>
  28. <td class="bdr"></td>
  29. </tr>
  30. {/notempty}
  31. {/foreach}
  32. {else /}
  33. <tr>
  34. <td colspan="20" class="norecord"><div class="warning-option"><i>&nbsp;</i><span>{$Think.lang.no_record}</span></div></td>
  35. </tr>
  36. {/notempty}
  37. </tbody>
  38. <tfoot>
  39. {notempty name="list_consult"}
  40. <tr>
  41. <td colspan="20"><div class="pagination"> {$show_page|raw} </div></td>
  42. </tr>
  43. {/notempty}
  44. </tfoot>
  45. </table>
  46. {/block}