uview-plus 3.3.15 → 3.3.16
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/changelog.md
CHANGED
|
@@ -1,16 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<view class="u-navbar-mini" :class="[customClass]">
|
|
3
|
-
<view
|
|
4
|
-
class="u-navbar-mini__placeholder"
|
|
5
|
-
v-if="fixed"
|
|
6
|
-
:style="{
|
|
7
|
-
height: addUnit(getPx(height) + sys().statusBarHeight,'px'),
|
|
8
|
-
}"
|
|
9
|
-
></view>
|
|
10
3
|
<view class="u-navbar-mini__inner" :class="[fixed && 'u-navbar-mini--fixed']">
|
|
11
4
|
<u-status-bar
|
|
12
5
|
v-if="safeAreaInsetTop"
|
|
13
|
-
:bgColor="bgColor"
|
|
14
6
|
></u-status-bar>
|
|
15
7
|
<view
|
|
16
8
|
class="u-navbar-mini__content"
|
|
@@ -112,7 +104,6 @@
|
|
|
112
104
|
|
|
113
105
|
&__inner {
|
|
114
106
|
width: 180rpx;
|
|
115
|
-
border-radius: 20px;
|
|
116
107
|
overflow: hidden;
|
|
117
108
|
}
|
|
118
109
|
|
|
@@ -127,8 +118,9 @@
|
|
|
127
118
|
&__content {
|
|
128
119
|
@include flex(row);
|
|
129
120
|
padding: 0 15px;
|
|
121
|
+
border-radius: 20px;
|
|
130
122
|
align-items: center;
|
|
131
|
-
height:
|
|
123
|
+
height: 36px;
|
|
132
124
|
background-color: #9acafc;
|
|
133
125
|
position: relative;
|
|
134
126
|
justify-content: space-between;
|
|
@@ -68,10 +68,9 @@
|
|
|
68
68
|
controls
|
|
69
69
|
@tap="clickHandler(index)"
|
|
70
70
|
></video>
|
|
71
|
-
<
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
>{{ item.title }}</text>
|
|
71
|
+
<view v-if="showTitle && testObject(item) && item.title && testImage(getSource(item))" class="u-swiper__wrapper__item__wrapper__title">
|
|
72
|
+
<text class="u-line-1">{{ item.title }}</text>
|
|
73
|
+
</view>
|
|
75
74
|
</view>
|
|
76
75
|
</swiper-item>
|
|
77
76
|
</swiper>
|