增加了字典表编辑的下拉框
This commit is contained in:
parent
539528fdcb
commit
77f469cf7c
|
@ -44,4 +44,6 @@
|
|||
maxlength: 50
|
||||
}
|
||||
});
|
||||
// select
|
||||
$('select').selectpicker();
|
||||
});
|
|
@ -63,9 +63,13 @@
|
|||
<label class="control-label" for="dictCode">字典代码</label>
|
||||
<input type="text" class="form-control" id="dictCode" name="dictCode" maxlength="50" />
|
||||
</div>
|
||||
<div class="form-group col-lg-2">
|
||||
<div class="form-group col-lg-6">
|
||||
<label class="control-label" for="dictDefine">字典类别</label>
|
||||
<input type="text" class="form-control" id="dictDefine" name="dictDefine" maxlength="50" />
|
||||
<select class="selectpicker form-control" data-width="auto" id="dictDefine">
|
||||
<option value="">全部</option>
|
||||
<option value="1">自定义</option>
|
||||
<option value="0">系统使用</option>
|
||||
</select>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue