Browse Source

修改app上菜单栏尺寸过小的问题

zyh
Gaoxs 4 years ago
parent
commit
15fc59f369
  1. 6
      pages.json
  2. 2
      utils/index.js

6
pages.json

@ -431,9 +431,9 @@
"borderStyle": "black",
"backgroundColor": "#ffffff",
"height": "50px",
"fontSize": "8px",
"iconWidth": "16px",
"spacing": "-3px",
"fontSize": "10px",
"iconWidth": "24px",
"spacing": "3px",
"list": [{
"pagePath": "pages/home/index",
"iconPath": "static/icon-home.png",

2
utils/index.js

@ -82,7 +82,7 @@ export function isType(arg, type) {
}
export function isWeixin() {
if (navigator && navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1) {
if (navigator && navigator.userAgent && navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1) {
return true
}
return false

Loading…
Cancel
Save