File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,11 @@ Page({
87
87
88
88
## 微信版本要求
89
89
90
- 支持微信版本 >= 6.6.3。
90
+ 支持微信版本 >= 6.6.3,对应基础库版本 >= 1.9.91。
91
+
92
+ 调试的时候,需要在微信开发者工具中,将“详情”下的“调试基础库”设为 1.9.91 及以上版本。
93
+
94
+ 发布前,需要在 [ https://mp.weixin.qq.com ] ( https://mp.weixin.qq.com ) 的“设置”页面,将“基础库最低版本设置”设为 1.9.91。当用户微信版本过低的时候,会提示用户更新。
91
95
92
96
## 暂不支持的功能
93
97
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ Component({
20
20
ready : function ( ) {
21
21
const version = wx . version . version . split ( '.' ) . map ( n => parseInt ( n , 10 ) ) ;
22
22
const isValid = version [ 0 ] > 1 || ( version [ 0 ] === 1 && version [ 1 ] >= 9 )
23
- || ( version [ 0 ] === 1 && version [ 1 ] === 9 && version [ 2 ] >= 90 ) ;
23
+ || ( version [ 0 ] === 1 && version [ 1 ] === 9 && version [ 2 ] >= 91 ) ;
24
24
if ( ! isValid ) {
25
25
console . error ( 'This version of Wexin is not supported by ECharts. '
26
- + 'Please update Wexin with versions after 1.9.90 ' ) ;
26
+ + 'Please update Wexin with versions after 1.9.91 ' ) ;
27
27
return ;
28
28
}
29
29
You can’t perform that action at this time.
0 commit comments