Skip to content

Commit 91c82a6

Browse files
committed
publish v3.2.11
1 parent 4fbbd3a commit 91c82a6

17 files changed

+63
-8
lines changed

Diff for: App.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@
7979
<style>
8080
/* #ifndef APP-PLUS-NVUE */
8181
/* uni.css - 通用组件、模板样式库,可以当作一套ui库应用 */
82-
@import './common/uni.css';
83-
82+
@import './common/uni.css';
83+
@import '@/static/customicons.css';
8484
/* H5 兼容 pc 所需 */
8585
/* #ifdef H5 */
8686
@media screen and (min-width: 768px) {
@@ -116,7 +116,7 @@
116116
background-color: #efeff4;
117117
height: 100%;
118118
font-size: 28rpx;
119-
line-height: 1.8;
119+
/* line-height: 1.8; */
120120
}
121121
122122
.fix-pc-padding {

Diff for: changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.2.11(2021-12-07)
2+
- 修复 uni-ui 在 hello-uniapp 中丢失图标、ui 受到公共样式影响等问题
3+
- 修复 微信登录取值报错的问题
14
## 3.2.10(2021-11-30)
25
- 修复 map 组件示例不显示的 bug
36
## 3.2.9(2021-11-19)

Diff for: common/uni.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ radio-group label, checkbox-group label{
366366
transform: scaleY(.5);
367367
background-color: #c8c7cc;
368368
}
369-
.uni-list::before {
369+
/* .uni-list::before {
370370
position: absolute;
371371
z-index: 10;
372372
right: 0;
@@ -377,7 +377,7 @@ radio-group label, checkbox-group label{
377377
-webkit-transform: scaleY(.5);
378378
transform: scaleY(.5);
379379
background-color: #c8c7cc;
380-
}
380+
} */
381381
.uni-list-cell {
382382
position: relative;
383383
display: flex;

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "hello-uniapp",
33
"name": "hello-uniapp",
44
"displayName": "hello-uniapp 示例工程",
5-
"version": "3.2.10",
5+
"version": "3.2.11",
66
"description": "uni-app 框架示例,一套代码,同时发行到iOS、Android、H5、小程序等多个平台,请使用手机扫码快速体验 uni-app 的强大功能",
77
"scripts": {
88
"test": "echo \"Error: no test specified\" && exit 1"

Diff for: pages/API/login/login.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
success(res) {
163163
console.log(res);
164164
if (res.data.code !== 0) {
165-
console.log('获取openid失败:', res.result.msg);
165+
console.log('获取openid失败:', res.data.errMsg);
166166
return
167167
}
168168
uni.setStorageSync('openid', res.data.openid)
File renamed without changes.

Diff for: pages/extUI/fav/fav.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</uni-section>
2222

2323
<uni-section title="在自定义导航栏使用" type="line">
24-
<uni-nav-bar style="width: 100%;" :fixed="false" left-icon="arrowleft" title="标题" color="#333333" background-color="#FFFFFF">
24+
<uni-nav-bar style="width: 100%;" :fixed="false" left-icon="left" title="标题" color="#333333" background-color="#FFFFFF">
2525
<template v-slot:right>
2626
<uni-fav :checked="checkList[5]" :circle="true" @click="favClick(5)" />
2727
</template>

Diff for: static/customicons.css

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
@font-face {
2+
font-family: "customicons"; /* Project id 2878519 */
3+
src:url('/static/customicons.ttf') format('truetype');
4+
}
5+
6+
.customicons {
7+
font-family: "customicons" !important;
8+
}
9+
10+
.youxi:before {
11+
content: "\e60e";
12+
}
13+
14+
.wenjian:before {
15+
content: "\e60f";
16+
}
17+
18+
.zhuanfa:before {
19+
content: "\e610";
20+
}

Diff for: static/customicons.ttf

2.36 KB
Binary file not shown.

Diff for: static/home-active.png

577 Bytes
Loading

Diff for: static/home.png

554 Bytes
Loading

Diff for: static/iconfont.css

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
@font-face {
2+
font-family: "iconfont"; /* Project id */
3+
src: url('@/static/iconfont.ttf') format('truetype');
4+
}
5+
6+
.iconfont {
7+
font-family: "iconfont" !important;
8+
font-size: 16px;
9+
font-style: normal;
10+
-webkit-font-smoothing: antialiased;
11+
-moz-osx-font-smoothing: grayscale;
12+
}
13+
14+
.icon-link:before {
15+
content: "\e772";
16+
}
17+
18+
.icon-poweroff:before {
19+
content: "\e774";
20+
}
21+
22+
.icon-safety-certificate:before {
23+
content: "\e776";
24+
}
25+
26+
.icon-chart-pie-alt:before {
27+
content: "\e78c";
28+
}
29+
30+
.icon-kongxincai:before {
31+
content: "\e642";
32+
}

Diff for: static/iconfont.ttf

4.18 KB
Binary file not shown.

Diff for: static/image-active.png

557 Bytes
Loading

Diff for: static/image.png

524 Bytes
Loading

Diff for: static/star-active.png

907 Bytes
Loading

Diff for: static/star.png

839 Bytes
Loading

0 commit comments

Comments
 (0)