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