meixioacomponent 0.2.72 → 0.2.73
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/lib/meixioacomponent.common.js +109 -102
- package/lib/meixioacomponent.umd.js +109 -102
- package/lib/meixioacomponent.umd.min.js +15 -15
- package/package.json +1 -1
- package/packages/components/proPageTable/oa_pro_table.vue +2 -1
- package/packages/components/proPageTable/oa_pro_table_skeleton.vue +12 -2
package/package.json
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div
|
|
2
|
+
<div
|
|
3
|
+
class="table-skeleton-wrap"
|
|
4
|
+
:style="{ height: `calc(${height} - 50px)` }"
|
|
5
|
+
>
|
|
3
6
|
<baseSkeletonVue
|
|
7
|
+
:key="index"
|
|
4
8
|
:shape="`rect`"
|
|
5
|
-
|
|
9
|
+
v-for="index in row"
|
|
10
|
+
:lines="[3.3, 10, 10, 10, 10, 10, 10, 10, 10, 10, 6.6]"
|
|
6
11
|
></baseSkeletonVue>
|
|
7
12
|
</div>
|
|
8
13
|
</template>
|
|
@@ -14,6 +19,7 @@ export default {
|
|
|
14
19
|
return {};
|
|
15
20
|
},
|
|
16
21
|
props: {
|
|
22
|
+
row: {},
|
|
17
23
|
height: {
|
|
18
24
|
require: true,
|
|
19
25
|
},
|
|
@@ -29,5 +35,9 @@ export default {
|
|
|
29
35
|
.table-skeleton-wrap {
|
|
30
36
|
width: 100%;
|
|
31
37
|
height: auto;
|
|
38
|
+
display: flex;
|
|
39
|
+
flex-flow: row nowrap;
|
|
40
|
+
align-items: flex-start;
|
|
41
|
+
justify-content: space-between;
|
|
32
42
|
}
|
|
33
43
|
</style>
|