edit.html 1.1 KB

12345678910111213141516171819202122232425
  1. <form id="add-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
  2. <input type="hidden" name="row[ids]" value="{$ids|htmlentities}">
  3. <div style="padding-left: 20px">
  4. <select class="" style="height: 30px;" name="row[type]" id="type">
  5. <option value="" >请选择</option>
  6. <option value="1" >大件重量</option>
  7. <option value="2" >大件数量</option>
  8. </select>
  9. <div style="display: inline-block">
  10. <div>
  11. <input id="numn" style="width: 200px; margin-bottom: 2px;" disabled data-rule="required" name="row[numn]" type="text" value="">
  12. <br><span id="msg" style="color: red"></span>
  13. </div>
  14. </div>
  15. </div>
  16. <div class="form-group layer-footer">
  17. <div style="text-align: center">
  18. <button type="submit" id="btn" class="btn btn-primary btn-embossed">{:__('OK')}</button>
  19. <button type="reset" class="btn btn-default btn-embossed">{:__('Reset')}</button>
  20. </div>
  21. </div>
  22. </form>