pricelist.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_voucher_price_manage}</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.admin_voucher_price_tip1}</li>
  19. </ul>
  20. </div>
  21. <table class="ds-default-table">
  22. <thead>
  23. <tr class="thead">
  24. <th class="w24"></th>
  25. <th>{$Think.lang.admin_voucher_price_describe}</th>
  26. <th>{$Think.lang.admin_voucher_price_title}({$Think.lang.ds_yuan})</th>
  27. <th>{$Think.lang.admin_voucher_price_points}</th>
  28. <th class="align-center">{$Think.lang.ds_handle}</th>
  29. </tr>
  30. </thead>
  31. <tbody>
  32. {notempty name="voucherprice_list"}
  33. {foreach name="voucherprice_list" item="v"}
  34. <tr class="hover" id="ds_row_{$v.voucherprice_id}">
  35. <td><input type="checkbox" name='voucher_price_checkbox' value="{$v.voucherprice_id}" class="checkitem"></td>
  36. <td><span>{$v.voucherprice_describe}</span></td>
  37. <td><span>{$v.voucherprice}</span></td>
  38. <td><span>{$v.voucherprice_defaultpoints}</span></td>
  39. <td class="w120 align-center">
  40. <a href="javascript:dsLayerOpen('{:url('Voucher/priceedit',['priceid'=>$v.voucherprice_id])}','{$Think.lang.ds_edit}')" class="dsui-btn-edit"><i class="iconfont"></i>{$Think.lang.ds_edit}</a>
  41. <a href="javascript:dsLayerConfirm('{:url('Voucher/pricedrop',['voucher_price_id'=>$v.voucherprice_id])}','{$Think.lang.ds_ensure_del}',{$v.voucherprice_id})" class="dsui-btn-del"><i class="iconfont"></i>{$Think.lang.ds_del}</a>
  42. </td>
  43. {/foreach}
  44. {else /}
  45. <tr class="no_data">
  46. <td colspan="10">{$Think.lang.ds_no_record}</td>
  47. </tr>
  48. {/notempty}
  49. </tbody>
  50. {notempty name="voucherprice_list"}
  51. <tfoot>
  52. <tr class="tfoot">
  53. <td>{notempty name="voucherprice_list"}
  54. <input type="checkbox" class="checkall" id="checkall_1">
  55. {/notempty}
  56. <td colspan="16">
  57. <label for="checkallBottom">{$Think.lang.ds_select_all}</label>&nbsp;&nbsp;
  58. <a href="JavaScript:void(0);" class="btn btn-small" onclick="submit_delete_batch()"><span>{$Think.lang.ds_del}</span></a>
  59. </td>
  60. </tr>
  61. </tfoot>
  62. {/notempty}
  63. </table>
  64. {$show_page|raw}
  65. </div>