mirror of
https://gitee.com/ulthon/layui-ul.git
synced 2026-07-01 10:32:49 +08:00
增加行属性组件
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
@import './card/ul-card-qrcode/index';
|
||||
@import './card/ul-easy-image/index';
|
||||
@import './descriptions/ul-descriptions-info/index';
|
||||
@import './descriptions/ul-descriptions-row/index';
|
||||
@import './descriptions/ul-easy-item/index';
|
||||
@import './element/ul-element-fixed-option/index';
|
||||
@import './element/ul-loading-pos/index';
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
title=行属性
|
||||
padding=0
|
||||
margin=0
|
||||
gray=0
|
||||
mobile=0
|
||||
inner_margin=0
|
||||
@@ -0,0 +1,29 @@
|
||||
<div class="ul-descriptions-row">
|
||||
<div class="item label">
|
||||
当日价格
|
||||
</div>
|
||||
<div class="item value">
|
||||
当日均价: <span class="primary">11.66</span>元/斤
|
||||
</div>
|
||||
<div class="item value">
|
||||
相对比前日:价格平稳
|
||||
</div>
|
||||
<div class="item label">
|
||||
近7日价格
|
||||
</div>
|
||||
<div class="item value">
|
||||
近7日最高价:<span class="primary">11.66</span>元/斤
|
||||
</div>
|
||||
<div class="item value">
|
||||
近7日最低价:<span class="primary">11.66</span>元/斤
|
||||
</div>
|
||||
<div class="item label">
|
||||
联系方式
|
||||
</div>
|
||||
<div class="item value">
|
||||
电话:15376477393
|
||||
</div>
|
||||
<div class="item value">
|
||||
邮箱:service@ulthon.com
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
];
|
||||
@@ -0,0 +1,16 @@
|
||||
.ul-descriptions-row {
|
||||
border: 1px solid #F2F2F2;
|
||||
color: #333333;
|
||||
|
||||
.label {
|
||||
background-color: #FAFAFA;
|
||||
}
|
||||
|
||||
.item {
|
||||
padding: 6px 12px;
|
||||
|
||||
&:not(:last-child) {
|
||||
border-bottom: 1px solid #F2F2F2;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user