mirror of
https://gitee.com/ulthon/layui-ul.git
synced 2026-07-09 05:32:49 +08:00
新增表格输入
This commit is contained in:
@@ -38,7 +38,9 @@ class Post extends Common
|
|||||||
$list = ModelPost::with(['categorys.category', 'tags.tag'])
|
$list = ModelPost::with(['categorys.category', 'tags.tag'])
|
||||||
->where('type', $this->request->param('type', 1))
|
->where('type', $this->request->param('type', 1))
|
||||||
->order('id desc')
|
->order('id desc')
|
||||||
->paginate();
|
->paginate([
|
||||||
|
'query' => $this->request->get()
|
||||||
|
]);
|
||||||
|
|
||||||
View::assign('list', $list);
|
View::assign('list', $list);
|
||||||
|
|
||||||
|
|||||||
57
demo/form.html
Normal file
57
demo/form.html
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
<fieldset class="layui-elem-field layui-field-title">
|
||||||
|
<legend>表格输入</legend>
|
||||||
|
<div class="layui-field-box">
|
||||||
|
<div class="layui-form">
|
||||||
|
<div class="layui-form-item">
|
||||||
|
<table class="layui-table ul-input-table">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>输入</td>
|
||||||
|
<td>
|
||||||
|
<input type="text" name="input-1" placeholder="请输入" class="layui-input" id="">
|
||||||
|
</td>
|
||||||
|
|
||||||
|
<td>选择框</td>
|
||||||
|
<td>
|
||||||
|
<select name="city" lay-verify="required">
|
||||||
|
<option value=""></option>
|
||||||
|
<option value="0">北京</option>
|
||||||
|
<option value="1">上海</option>
|
||||||
|
<option value="2">广州</option>
|
||||||
|
<option value="3">深圳</option>
|
||||||
|
<option value="4">杭州</option>
|
||||||
|
</select>
|
||||||
|
</td>
|
||||||
|
<td>复选框</td>
|
||||||
|
<td>
|
||||||
|
<input type="checkbox" name="like[write]" lay-skin="primary" title="写作">
|
||||||
|
<input type="checkbox" name="like[read]" lay-skin="primary" title="阅读" checked>
|
||||||
|
<input type="checkbox" name="like[dai]" lay-skin="primary" title="发呆">
|
||||||
|
</td>
|
||||||
|
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>单选框</td>
|
||||||
|
<td colspan="5">
|
||||||
|
<input type="radio" name="sex" value="男" title="国产">
|
||||||
|
<input type="radio" name="sex" value="男" title="日韩">
|
||||||
|
<input type="radio" name="sex" value="男" title="欧洲">
|
||||||
|
<input type="radio" name="sex" value="男" title="美国">
|
||||||
|
<input type="radio" name="sex" value="女" title="俄罗斯" checked>
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>文本域</td>
|
||||||
|
<td colspan="5">
|
||||||
|
<textarea name="" class="layui-textarea" rows="3"></textarea>
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
@@ -564,7 +564,7 @@
|
|||||||
|
|
||||||
.ul-note-item.current,
|
.ul-note-item.current,
|
||||||
.ul-note-item:hover {
|
.ul-note-item:hover {
|
||||||
background-color: #eee;
|
background-color: #dedede;
|
||||||
}
|
}
|
||||||
|
|
||||||
.ul-note-item .ul-note-item-icon {
|
.ul-note-item .ul-note-item-icon {
|
||||||
@@ -573,8 +573,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ul-note-item .ul-note-item-desc {
|
.ul-note-item .ul-note-item-desc {
|
||||||
color : #999;
|
color : #999;
|
||||||
font-size: 12px;
|
font-size : 12px;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -589,3 +589,17 @@
|
|||||||
color : #bbb;
|
color : #bbb;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.ul-input-table {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ul-input-table td,
|
||||||
|
.ul-input-table th {
|
||||||
|
padding: 2px 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ul-input-table .layui-form-checkbox[lay-skin="primary"] {
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user