template_info.html 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {extend name="default/base/base_seller" /}
  2. {block name="seller_main"}
  3. <div class="dssc-form-default">
  4. <dl>
  5. <dt><em class="pngFix"></em>{$Think.lang.voucher_template_title}{$Think.lang.ds_colon}</dt>
  6. <dd>{$t_info.vouchertemplate_title}</dd>
  7. </dl>
  8. <dl>
  9. <dt><em class="pngFix"></em>{$Think.lang.voucher_template_enddate}{$Think.lang.ds_colon}</dt>
  10. <dd>{if $t_info.vouchertemplate_enddate}{:date('Y-m-d',$t_info.vouchertemplate_enddate)}{/if}</dd>
  11. </dl>
  12. <dl>
  13. <dt>{$Think.lang.voucher_template_price}{$Think.lang.ds_colon}</dt>
  14. <dd>{$t_info.vouchertemplate_price}&nbsp;{$Think.lang.ds_yuan}</dd>
  15. </dl>
  16. <dl>
  17. <dt ><em class="pngFix"></em>{$Think.lang.voucher_template_total}{$Think.lang.ds_colon}</dt>
  18. <dd>{$t_info.vouchertemplate_total}&nbsp;{$Think.lang.ds_zhang}</dd>
  19. </dl>
  20. <dl>
  21. <dt ><em class="pngFix"></em>{$Think.lang.voucher_template_eachlimit}{$Think.lang.ds_colon}</dt>
  22. <dd>{$t_info.vouchertemplate_eachlimit}&nbsp;{$Think.lang.ds_zhang}</dd>
  23. </dl>
  24. <dl>
  25. <dt ><em class="pngFix"></em>{$Think.lang.voucher_template_orderpricelimit}{$Think.lang.ds_colon}</dt>
  26. <dd>{$t_info.vouchertemplate_limit}&nbsp;{$Think.lang.ds_yuan}</dd>
  27. </dl>
  28. <dl>
  29. <dt ><em class="pngFix"></em>{$Think.lang.voucher_template_describe}{$Think.lang.ds_colon}</dt>
  30. <dd>
  31. <textarea name="txt_template_describe" rows="3" class="w300" readonly>{$t_info.vouchertemplate_desc}</textarea>
  32. </dd>
  33. </dl>
  34. <dl>
  35. <dt ><em class="pngFix"></em>{$Think.lang.voucher_template_image}{$Think.lang.ds_colon}</dt>
  36. <dd>
  37. <div style="clear:both; padding-top:10px;">
  38. {if $t_info.vouchertemplate_customimg}
  39. <img onload="javascript:ResizeImage(this,220,95);" src="{:ds_get_pic(ATTACH_VOUCHER.session('store_id'),$t_info.vouchertemplate_customimg)}"/>
  40. {/if}
  41. </div>
  42. </dd>
  43. </dl>
  44. <dl>
  45. <dt ><em class="pngFix"></em>{$Think.lang.vouchertemplate_if_private}{$Think.lang.ds_colon}</dt>
  46. <dd>
  47. {if $t_info.vouchertemplate_if_private ==1}
  48. {$Think.lang.ds_yes}
  49. {else}
  50. {$Think.lang.ds_no}
  51. {/if}
  52. </dd>
  53. </dl>
  54. <dl>
  55. <dt><em class="pngFix"></em>{$Think.lang.ds_status}{$Think.lang.ds_colon}</dt>
  56. <dd>
  57. {foreach name="templatestate_arr" item="v"}
  58. {if $v.0 == $t_info.vouchertemplate_state}
  59. {$v.1}
  60. {/if}
  61. {/foreach}
  62. </dd>
  63. </dl>
  64. <dl>
  65. <dt><em class="pngFix"></em>{$Think.lang.voucher_template_giveoutnum}{$Think.lang.ds_colon}</dt>
  66. <dd>{$t_info.vouchertemplate_giveout}&nbsp;{$Think.lang.ds_zhang}</dd>
  67. </dl>
  68. <dl>
  69. <dt><em class="pngFix"></em>{$Think.lang.voucher_template_usednum}{$Think.lang.ds_colon}</dt>
  70. <dd>{$t_info.vouchertemplate_used}&nbsp;{$Think.lang.ds_zhang}</dd>
  71. </dl>
  72. <div class="bottom"> <a href="javascript:void(0);" class="submit" onclick="window.location = '{:url('Sellervoucher/templatelist')}'" > {$Think.lang.voucher_template_backlist}</a> </div>
  73. </div>
  74. {/block}