mirror of
https://gitee.com/ulthon/layui-ul.git
synced 2026-07-01 10:32:49 +08:00
feat: 迁移表格输入
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
@import './descriptions/ul-easy-item/index';
|
||||
@import './element/ul-element-fixed-option/index';
|
||||
@import './element/ul-loading-pos/index';
|
||||
@import './form/ul-table-form/index';
|
||||
@import './group_panel/ul-group-list/index';
|
||||
@import './header/ul-header/index';
|
||||
@import './header/ul-header-a/index';
|
||||
|
||||
6
source/components/form/ul-table-form/_index.env
Normal file
6
source/components/form/ul-table-form/_index.env
Normal file
@@ -0,0 +1,6 @@
|
||||
title=表格输入(依赖layui)
|
||||
padding=0
|
||||
margin=0
|
||||
gray=0
|
||||
mobile=0
|
||||
inner_margin=0
|
||||
112
source/components/form/ul-table-form/_index.html
Normal file
112
source/components/form/ul-table-form/_index.html
Normal file
@@ -0,0 +1,112 @@
|
||||
<div class="ul-table-form">
|
||||
<div class="layui-form">
|
||||
<div class="layui-form-item">
|
||||
<table
|
||||
class="layui-table ul-input-table"
|
||||
lay-even
|
||||
>
|
||||
<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>
|
||||
0
source/components/form/ul-table-form/_index.md
Normal file
0
source/components/form/ul-table-form/_index.md
Normal file
5
source/components/form/ul-table-form/_index.php
Normal file
5
source/components/form/ul-table-form/_index.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
];
|
||||
3
source/components/form/ul-table-form/_index.scss
Normal file
3
source/components/form/ul-table-form/_index.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
.ul-table-form {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user