@10yun/cv-mobile-ui 0.5.47 → 0.5.49
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/uview-plus/components/u-list-item/style.css +2 -0
- package/uview-plus/components/u-navbar/u-navbar-wu.vue +1 -1
- package/uview-plus/components/u-pdf-reader/style.css +2 -0
- package/uview-plus/components/u-table2/style.css +90 -0
- package/uview-plus/components/u-view/style.css +2 -0
- package/uview-plus/components/u-virtual-list/style.css +16 -0
package/package.json
CHANGED
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
</template>
|
|
63
63
|
|
|
64
64
|
<script>
|
|
65
|
+
import { props } from './props';
|
|
65
66
|
import { mpMixin } from '../../libs/mixin/mpMixin';
|
|
66
67
|
import { mixin } from '../../libs/mixin/mixin';
|
|
67
|
-
import props from './props.js';
|
|
68
68
|
/**
|
|
69
69
|
* Navbar 自定义导航栏
|
|
70
70
|
* @description 此组件一般用于在特殊情况下,需要自定义导航栏的时候用到,自动状态栏高度、小程序胶囊预留位置等,一般建议使用uni-app带的导航栏。
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
.u-table2 {
|
|
2
|
+
width: auto;
|
|
3
|
+
overflow: auto;
|
|
4
|
+
white-space: nowrap;
|
|
5
|
+
position: relative;
|
|
6
|
+
}
|
|
7
|
+
.u-table2 .u-table-header {
|
|
8
|
+
min-width: 100% !important;
|
|
9
|
+
width: fit-content;
|
|
10
|
+
background-color: #f5f7fa;
|
|
11
|
+
}
|
|
12
|
+
.u-table2 .u-table-body {
|
|
13
|
+
min-width: 100% !important;
|
|
14
|
+
width: fit-content;
|
|
15
|
+
position: relative;
|
|
16
|
+
}
|
|
17
|
+
.u-table2 .u-table-sticky {
|
|
18
|
+
position: sticky;
|
|
19
|
+
top: 0;
|
|
20
|
+
z-index: 10;
|
|
21
|
+
}
|
|
22
|
+
.u-table2 .u-table-row {
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: row;
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
position: relative;
|
|
27
|
+
}
|
|
28
|
+
.u-table2.u-table-border {
|
|
29
|
+
border-top: 1px solid #ebeef5;
|
|
30
|
+
border-left: 1px solid #ebeef5;
|
|
31
|
+
border-right: 1px solid #ebeef5;
|
|
32
|
+
}
|
|
33
|
+
.u-table2.u-table-border .u-table-cell {
|
|
34
|
+
border-right: 1px solid #ebeef5;
|
|
35
|
+
}
|
|
36
|
+
.u-table2.u-table-border .u-table-cell:last-child {
|
|
37
|
+
border-right: none;
|
|
38
|
+
}
|
|
39
|
+
.u-table2 .u-table-cell {
|
|
40
|
+
flex: 1;
|
|
41
|
+
display: flex;
|
|
42
|
+
flex-direction: row;
|
|
43
|
+
align-items: center;
|
|
44
|
+
padding: 10px 1px;
|
|
45
|
+
font-size: 14px;
|
|
46
|
+
white-space: nowrap;
|
|
47
|
+
overflow: hidden;
|
|
48
|
+
text-overflow: ellipsis;
|
|
49
|
+
line-height: 1.1;
|
|
50
|
+
border-bottom: 1px solid #ebeef5;
|
|
51
|
+
}
|
|
52
|
+
.u-table2 .u-table-cell.u-text-left {
|
|
53
|
+
justify-content: flex-start;
|
|
54
|
+
text-align: left;
|
|
55
|
+
}
|
|
56
|
+
.u-table2 .u-table-cell.u-text-center {
|
|
57
|
+
justify-content: center;
|
|
58
|
+
text-align: center;
|
|
59
|
+
}
|
|
60
|
+
.u-table2 .u-table-cell.u-text-right {
|
|
61
|
+
justify-content: flex-end;
|
|
62
|
+
text-align: right;
|
|
63
|
+
}
|
|
64
|
+
.u-table2 .u-table-row-zebra {
|
|
65
|
+
background-color: #fafafa;
|
|
66
|
+
}
|
|
67
|
+
.u-table2 .u-table-row-highlight {
|
|
68
|
+
background-color: #f5f7fa;
|
|
69
|
+
}
|
|
70
|
+
.u-table2 .u-table-empty {
|
|
71
|
+
text-align: center;
|
|
72
|
+
padding: 20px;
|
|
73
|
+
color: #999;
|
|
74
|
+
}
|
|
75
|
+
.u-table-fixed-shadow {
|
|
76
|
+
position: absolute;
|
|
77
|
+
top: 0;
|
|
78
|
+
left: 0;
|
|
79
|
+
width: auto;
|
|
80
|
+
z-index: 20;
|
|
81
|
+
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.15);
|
|
82
|
+
overflow: hidden;
|
|
83
|
+
background-color: #ffffff;
|
|
84
|
+
}
|
|
85
|
+
.u-table-fixed-shadow .u-table-border .u-table-cell {
|
|
86
|
+
border-right: 1rpx solid #ebeef5;
|
|
87
|
+
}
|
|
88
|
+
.u-table-fixed-shadow .u-table-border .u-table-cell:last-child {
|
|
89
|
+
border-right: none;
|
|
90
|
+
}
|