57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
|
|
/**
|
|
* Web唐明明
|
|
* 匆匆数载恍如梦,岁月迢迢华发增。
|
|
* 碌碌无为枉半生,一朝惊醒万事空。
|
|
*/
|
|
|
|
import apis from "./apis/index"
|
|
|
|
const QQMapWX = require("./lib/qqmap-wx-jssdk.min.js");
|
|
|
|
App({
|
|
onLaunch() {
|
|
// 挂载腾讯地图
|
|
wx.$qqMap = new QQMapWX({
|
|
key: "3TBBZ-O42LU-HXCVQ-2M66A-NCFTT-LMBHU"
|
|
})
|
|
|
|
//挂载api方法
|
|
wx.$api = apis
|
|
|
|
//获取模版信息
|
|
apis.publics.storeConfig({
|
|
company_id: "17"
|
|
}).then(res=>{
|
|
console.log(res)
|
|
})
|
|
},
|
|
globalData: {
|
|
navAppInfo : {
|
|
appId : "wxd931d03dfe955254",
|
|
envVersion : "trial",
|
|
goodUrl : "/pages/goods/show?goodsId=",
|
|
cardUrl : "/pages/card/index?cardid="
|
|
},
|
|
storeModule: {
|
|
selected : 0,
|
|
color : "#4e4f51",
|
|
selectedColor: "#0b0041",
|
|
list : [
|
|
{
|
|
"pagePath": "/pages/mall/index",
|
|
"text": "商城",
|
|
"iconPath": "/static/tabbar/tabbar_icon_01.png",
|
|
"selectedIconPath": "/static/tabbar/tabbar_icon_show_01.png"
|
|
},
|
|
{
|
|
"pagePath": "/pages/user/index",
|
|
"text": "我的",
|
|
"iconPath": "/static/tabbar/tabbar_icon_03.png",
|
|
"selectedIconPath": "/static/tabbar/tabbar_icon_show_03.png"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
})
|