info.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <form id="form" action="{:url('setting/info')}">
  2. <table class="formtable">
  3. <tr>
  4. <th>置顶(¥):</th>
  5. <td>
  6. <label>2天:</label><input class="input w60" datatype="*" type="text" name="today[0]" value="{if !empty($info)}{$info[0]['money']/100|intval}{/if}" />
  7. <label>7天:</label><input class="input w60" datatype="*" type="text" name="today[1]" value="{if !empty($info)}{$info[1]['money']/100|intval}{/if}" />
  8. <label>15天:</label><input class="input w60" datatype="*" type="text" name="today[2]" value="{if !empty($info)}{$info[2]['money']/100|intval}{/if}" />
  9. <label>30天:</label><input class="input w60" datatype="*" type="text" name="today[3]" value="{if !empty($info)}{$info[3]['money']/100|intval}{/if}" />
  10. </td>
  11. </tr>
  12. <tr>
  13. <th>置顶直推:</th>
  14. <td><input class="input" datatype="*" type="text" name="bring" value="{$config.bring}" /> % <span class="gray">会员直推奖励</span></div></td>
  15. </tr>
  16. <tr>
  17. <th>置顶间推:</th>
  18. <td><input class="input" datatype="*" type="text" name="reward" value="{$config.reward}" /> % <span class="gray">会员间推奖励</span></div></td>
  19. </tr>
  20. <tr>
  21. <th>手续费:</th>
  22. <td><input class="input" datatype="*" type="text" name="charge" value="{$config.charge}" /> % <span class="gray">用户下单手续的服务费</span></td>
  23. </tr>
  24. <tr><th></th>
  25. <td>
  26. <input type="submit" value="确定" class="button submit" />
  27. <input type="reset" value="重置" class="button button-blank" />
  28. </td>
  29. </tr>
  30. </table>
  31. </form>
  32. <script type="text/javascript">
  33. Do('base', 'layer', 'form', function () {
  34. $('#form').isForm();
  35. })
  36. </script>