@lambo-design/detail-table 1.0.0-beta.1 → 1.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/detail-table.vue +10 -10
- package/src/styles/css/index.less +0 -3
package/package.json
CHANGED
package/src/detail-table.vue
CHANGED
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
<div :class="[`${prefixCls}-view`]">
|
|
13
13
|
<table>
|
|
14
14
|
<tbody>
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
15
|
+
<Row
|
|
16
|
+
v-for="(item, index) in childrenArray"
|
|
17
|
+
:children="item"
|
|
18
|
+
:key="index"
|
|
19
|
+
:index="index"
|
|
20
|
+
:prefixCls="prefixCls"
|
|
21
|
+
:bordered="bordered"
|
|
22
|
+
:layout="layout"
|
|
23
|
+
:colon="colon"
|
|
24
|
+
></Row>
|
|
25
25
|
</tbody>
|
|
26
26
|
</table>
|
|
27
27
|
</div>
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
.lambo-detail-table-style(){
|
|
2
1
|
@descriptions-prefix-cls: lambo-detail-table;
|
|
3
|
-
|
|
4
2
|
@descriptions-default-padding: 16px 24px;
|
|
5
3
|
@descriptions-middle-padding: 12px 24px;
|
|
6
4
|
@descriptions-small-padding: 8px 16px;
|
|
@@ -141,5 +139,4 @@
|
|
|
141
139
|
}
|
|
142
140
|
}
|
|
143
141
|
}
|
|
144
|
-
}
|
|
145
142
|
|