You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
853 B
30 lines
853 B
App({
|
|
onLaunch: function() {
|
|
|
|
},
|
|
onShow: function() {},
|
|
onHide: function() {},
|
|
onError: function(e) {},
|
|
util: require("we7/resource/js/util.js"),
|
|
tabBar: {
|
|
color: "#123",
|
|
selectedColor: "#1ba9ba",
|
|
borderStyle: "#1ba9ba",
|
|
backgroundColor: "#fff",
|
|
list: [ {
|
|
pagePath: "/we7/pages/index/index",
|
|
iconPath: "/we7/resource/icon/home.png",
|
|
selectedIconPath: "/we7/resource/icon/homeselect.png",
|
|
text: "首页"
|
|
}, {
|
|
pagePath: "/we7/pages/user/index/index",
|
|
iconPath: "/we7/resource/icon/user.png",
|
|
selectedIconPath: "/we7/resource/icon/userselect.png",
|
|
text: "微擎我的"
|
|
} ]
|
|
},
|
|
globalData: {
|
|
userInfo: null
|
|
},
|
|
siteInfo: require("siteinfo.js")
|
|
});
|