lw-cdp-ui 1.4.76 → 1.4.78
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/dist/components/lwFormMini/FormItem.vue +0 -1
- package/dist/components/lwLayout/index.vue +4 -1
- package/dist/components/lwTable/index.js +1 -0
- package/dist/components/lwTable/index.vue +7 -1
- package/dist/lw-cdp-ui.esm.js +1551 -1549
- package/dist/lw-cdp-ui.umd.js +10 -10
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -56,7 +56,10 @@
|
|
|
56
56
|
</template>
|
|
57
57
|
</userbar>
|
|
58
58
|
</div>
|
|
59
|
-
<
|
|
59
|
+
<div v-show="!ismobile && layoutTags" class="adminui-side-split-right">
|
|
60
|
+
<Tags :tagShowID="tagShowID"></Tags>
|
|
61
|
+
</div>
|
|
62
|
+
|
|
60
63
|
<div class="adminui-main">
|
|
61
64
|
<slot name="routerView">
|
|
62
65
|
<router-view v-slot="{ Component }">
|
|
@@ -21,6 +21,7 @@ export default {
|
|
|
21
21
|
hoverable: { type: Boolean, default: true }, // 是否启用鼠标悬停效果
|
|
22
22
|
maxHeight: { type: String, default: '' }, // 表格最大高度
|
|
23
23
|
height: { type: String, default: '' }, // 表格高度
|
|
24
|
+
cardCol: { type: Object, default: { sm: 12, md: 8, lg: 6, xl: 3 } }, // 卡片分隔
|
|
24
25
|
|
|
25
26
|
// 选择功能配置
|
|
26
27
|
rowSelection: { type: Boolean, default: false }, // 是否可选择行
|
|
@@ -43,7 +43,13 @@
|
|
|
43
43
|
:keyContainer="window"
|
|
44
44
|
:hitRate="50"
|
|
45
45
|
@select="onSelect" />
|
|
46
|
-
<el-col
|
|
46
|
+
<el-col
|
|
47
|
+
:sm="cardCol.sm"
|
|
48
|
+
:md="cardCol.md"
|
|
49
|
+
:lg="cardCol.lg"
|
|
50
|
+
:xl="cardCol.xl"
|
|
51
|
+
v-for="(item, index) in tableData"
|
|
52
|
+
:key="index">
|
|
47
53
|
<div class="table-card-item" :data-item="JSON.stringify(item)">
|
|
48
54
|
<slot name="cardItem" :item="item"></slot>
|
|
49
55
|
</div>
|