unika-components 1.0.224 → 1.0.225
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.
|
@@ -1,4 +1,80 @@
|
|
|
1
1
|
|
|
2
|
+
h2.uni-text-component, p.uni-text-component {
|
|
3
|
+
margin-bottom: 0;
|
|
4
|
+
}
|
|
5
|
+
button.uni-text-component {
|
|
6
|
+
padding: 5px 10px;
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
}
|
|
9
|
+
.uni-text-component {
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
white-space: pre-wrap;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.uni-video-component {
|
|
15
|
+
position: relative;
|
|
16
|
+
text-align: center;
|
|
17
|
+
}
|
|
18
|
+
.play-pause-button {
|
|
19
|
+
position: absolute;
|
|
20
|
+
top: 50%;
|
|
21
|
+
left: 50%;
|
|
22
|
+
transform: translate(-50%, -50%);
|
|
23
|
+
cursor: pointer;
|
|
24
|
+
font-size: 2rem;
|
|
25
|
+
color: #fff;
|
|
26
|
+
background: rgba(0, 0, 0, 0.6);
|
|
27
|
+
border-radius: 50%;
|
|
28
|
+
padding: 10px;
|
|
29
|
+
transition: background 0.3s;
|
|
30
|
+
}
|
|
31
|
+
.play-pause-button:hover {
|
|
32
|
+
background: rgba(0, 0, 0, 0.8);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.uni-image-component {
|
|
36
|
+
max-width: 100%;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
.uni-calendar-component {
|
|
41
|
+
|
|
42
|
+
}
|
|
43
|
+
.slot-number {
|
|
44
|
+
position: absolute;
|
|
45
|
+
bottom: 2px;
|
|
46
|
+
left: 7px;
|
|
47
|
+
font-size: 12px;
|
|
48
|
+
color: #666
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.effect {
|
|
52
|
+
width: 100%;
|
|
53
|
+
height: 100%;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.like-button {
|
|
57
|
+
display: flex;
|
|
58
|
+
flex-direction: column;
|
|
59
|
+
align-items: center;
|
|
60
|
+
cursor: pointer;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.icon-heart {
|
|
64
|
+
font-size: 24px;
|
|
65
|
+
color: #e74c3c;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.liked {
|
|
69
|
+
color: #f00; /* 更改颜色以示已赞 */
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.like-count {
|
|
73
|
+
margin-top: 4px;
|
|
74
|
+
font-size: 16px;
|
|
75
|
+
color: #333;
|
|
76
|
+
}
|
|
77
|
+
|
|
2
78
|
.slide-guide {
|
|
3
79
|
position: absolute;
|
|
4
80
|
bottom: 90px;
|
|
@@ -71,77 +147,6 @@ body, html {
|
|
|
71
147
|
transform: translate3d(-50%, -50%, 0);
|
|
72
148
|
}
|
|
73
149
|
}
|
|
74
|
-
|
|
75
|
-
.uni-image-component {
|
|
76
|
-
max-width: 100%;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
h2.uni-text-component, p.uni-text-component {
|
|
80
|
-
margin-bottom: 0;
|
|
81
|
-
}
|
|
82
|
-
button.uni-text-component {
|
|
83
|
-
padding: 5px 10px;
|
|
84
|
-
cursor: pointer;
|
|
85
|
-
}
|
|
86
|
-
.uni-text-component {
|
|
87
|
-
box-sizing: border-box;
|
|
88
|
-
white-space: pre-wrap;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.uni-video-component {
|
|
92
|
-
position: relative;
|
|
93
|
-
text-align: center;
|
|
94
|
-
}
|
|
95
|
-
.play-pause-button {
|
|
96
|
-
position: absolute;
|
|
97
|
-
top: 50%;
|
|
98
|
-
left: 50%;
|
|
99
|
-
transform: translate(-50%, -50%);
|
|
100
|
-
cursor: pointer;
|
|
101
|
-
font-size: 2rem;
|
|
102
|
-
color: #fff;
|
|
103
|
-
background: rgba(0, 0, 0, 0.6);
|
|
104
|
-
border-radius: 50%;
|
|
105
|
-
padding: 10px;
|
|
106
|
-
transition: background 0.3s;
|
|
107
|
-
}
|
|
108
|
-
.play-pause-button:hover {
|
|
109
|
-
background: rgba(0, 0, 0, 0.8);
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
.uni-calendar-component {
|
|
114
|
-
|
|
115
|
-
}
|
|
116
|
-
.slot-number {
|
|
117
|
-
position: absolute;
|
|
118
|
-
bottom: 2px;
|
|
119
|
-
left: 7px;
|
|
120
|
-
font-size: 12px;
|
|
121
|
-
color: #666
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
.like-button {
|
|
125
|
-
display: flex;
|
|
126
|
-
flex-direction: column;
|
|
127
|
-
align-items: center;
|
|
128
|
-
cursor: pointer;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.icon-heart {
|
|
132
|
-
font-size: 24px;
|
|
133
|
-
color: #e74c3c;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
.liked {
|
|
137
|
-
color: #f00; /* 更改颜色以示已赞 */
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.like-count {
|
|
141
|
-
margin-top: 4px;
|
|
142
|
-
font-size: 16px;
|
|
143
|
-
color: #333;
|
|
144
|
-
}
|
|
145
150
|
|
|
146
151
|
.ant-input-number {
|
|
147
152
|
box-sizing: border-box;
|
|
@@ -178,6 +183,13 @@ button.uni-text-component {
|
|
|
178
183
|
vertical-align: top;
|
|
179
184
|
}
|
|
180
185
|
|
|
186
|
+
.uni-build-up-component {
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.uni-svg-component {
|
|
190
|
+
display: inline-block;
|
|
191
|
+
}
|
|
192
|
+
|
|
181
193
|
.swiper-warp {
|
|
182
194
|
width: 100%;
|
|
183
195
|
height: 100%;
|
|
@@ -191,18 +203,6 @@ button.uni-text-component {
|
|
|
191
203
|
max-width: 100%;
|
|
192
204
|
max-height: 100%;
|
|
193
205
|
}
|
|
194
|
-
|
|
195
|
-
.uni-build-up-component {
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
.effect {
|
|
199
|
-
width: 100%;
|
|
200
|
-
height: 100%;
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
.uni-svg-component {
|
|
204
|
-
display: inline-block;
|
|
205
|
-
}
|
|
206
206
|
/**
|
|
207
207
|
* Swiper 6.8.4
|
|
208
208
|
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
@@ -22474,13 +22474,9 @@ function render$b(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
22474
22474
|
return (openBlock(), createElementBlock("div", {
|
|
22475
22475
|
onClick: _cache[0] || (_cache[0] = withModifiers((...args) => (_ctx.handleClick && _ctx.handleClick(...args)), ["prevent"])),
|
|
22476
22476
|
style: normalizeStyle$1(_ctx.styleProps),
|
|
22477
|
-
class: "uni-map-component inner-component"
|
|
22478
|
-
|
|
22479
|
-
|
|
22480
|
-
innerHTML: _ctx.iframeHtml,
|
|
22481
|
-
style: {"width":"100%","height":"100%"}
|
|
22482
|
-
}, null, 8 /* PROPS */, _hoisted_1$5)
|
|
22483
|
-
], 4 /* STYLE */))
|
|
22477
|
+
class: "uni-map-component inner-component",
|
|
22478
|
+
innerHTML: _ctx.iframeHtml
|
|
22479
|
+
}, null, 12 /* STYLE, PROPS */, _hoisted_1$5))
|
|
22484
22480
|
}
|
|
22485
22481
|
|
|
22486
22482
|
script$a.render = render$b;
|
|
@@ -22481,13 +22481,9 @@
|
|
|
22481
22481
|
return (vue.openBlock(), vue.createElementBlock("div", {
|
|
22482
22482
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers((...args) => (_ctx.handleClick && _ctx.handleClick(...args)), ["prevent"])),
|
|
22483
22483
|
style: vue.normalizeStyle(_ctx.styleProps),
|
|
22484
|
-
class: "uni-map-component inner-component"
|
|
22485
|
-
|
|
22486
|
-
|
|
22487
|
-
innerHTML: _ctx.iframeHtml,
|
|
22488
|
-
style: {"width":"100%","height":"100%"}
|
|
22489
|
-
}, null, 8 /* PROPS */, _hoisted_1$5)
|
|
22490
|
-
], 4 /* STYLE */))
|
|
22484
|
+
class: "uni-map-component inner-component",
|
|
22485
|
+
innerHTML: _ctx.iframeHtml
|
|
22486
|
+
}, null, 12 /* STYLE, PROPS */, _hoisted_1$5))
|
|
22491
22487
|
}
|
|
22492
22488
|
|
|
22493
22489
|
script$a.render = render$b;
|