@hlw-uni/mp-vue 2.1.97 → 2.1.98
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
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
<view :class="[theme, fontSizeClass, fontFamilyClass]">
|
|
3
3
|
<hlw-nav-bar v-if="props.isBar" :is-back="props.isBack" :title="title" :is-bar="props.isBar"></hlw-nav-bar>
|
|
4
4
|
<slot></slot>
|
|
5
|
+
<view class="h-[50rpx]"></view>
|
|
5
6
|
</view>
|
|
6
7
|
</template>
|
|
7
8
|
|
|
@@ -95,46 +96,46 @@ const title = ref(props.title);
|
|
|
95
96
|
Roboto,
|
|
96
97
|
Helvetica,
|
|
97
98
|
Arial,
|
|
98
|
-
sans-serif
|
|
99
|
+
sans-serif;
|
|
99
100
|
view,
|
|
100
101
|
text,
|
|
101
102
|
button,
|
|
102
103
|
input,
|
|
103
104
|
textarea {
|
|
104
|
-
font-family: inherit
|
|
105
|
+
font-family: inherit;
|
|
105
106
|
}
|
|
106
107
|
}
|
|
107
108
|
|
|
108
109
|
.font-family-sans {
|
|
109
|
-
font-family: "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif
|
|
110
|
+
font-family: "PingFang SC", "Helvetica Neue", "Microsoft YaHei", sans-serif;
|
|
110
111
|
view,
|
|
111
112
|
text,
|
|
112
113
|
button,
|
|
113
114
|
input,
|
|
114
115
|
textarea {
|
|
115
|
-
font-family: inherit
|
|
116
|
+
font-family: inherit;
|
|
116
117
|
}
|
|
117
118
|
}
|
|
118
119
|
|
|
119
120
|
.font-family-serif {
|
|
120
|
-
font-family: "Songti SC", "STSong", "SimSun", "Georgia", serif
|
|
121
|
+
font-family: "Songti SC", "STSong", "SimSun", "Georgia", serif;
|
|
121
122
|
view,
|
|
122
123
|
text,
|
|
123
124
|
button,
|
|
124
125
|
input,
|
|
125
126
|
textarea {
|
|
126
|
-
font-family: inherit
|
|
127
|
+
font-family: inherit;
|
|
127
128
|
}
|
|
128
129
|
}
|
|
129
130
|
|
|
130
131
|
.font-family-kaiti {
|
|
131
|
-
font-family: "Kaiti SC", "STKaiti", "KaiTi", "SimKai", serif
|
|
132
|
+
font-family: "Kaiti SC", "STKaiti", "KaiTi", "SimKai", serif;
|
|
132
133
|
view,
|
|
133
134
|
text,
|
|
134
135
|
button,
|
|
135
136
|
input,
|
|
136
137
|
textarea {
|
|
137
|
-
font-family: inherit
|
|
138
|
+
font-family: inherit;
|
|
138
139
|
}
|
|
139
140
|
}
|
|
140
141
|
</style>
|