1 Star 0 Fork 0

HTML5大前端项目站/锋选菁英移动端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 3.06 KB
一键复制 编辑 原始数据 按行查看 历史
Yooye 提交于 2021-04-20 18:04 . 锋选菁英移动端
<script>
import Vue from 'vue'
import {mapActions,mapMutations} from 'vuex'
// #ifndef H5
import Cloud from 'utils/av-min.js'
// #endif
// #ifndef MP-WEIXIN
// import Cloud from 'utils/av-weapp-min.js'
// #endif
import {Id,Key,baseURL} from 'config/index.js'
export default {
onLaunch: function() {
console.log('App启动了');
this.getLoc() //触发异步action,获取地理位置信息
// this.getLocalUserInfo()
this.initLeanCloud()
uni.getSystemInfo({
success: function(e) {
// #ifndef MP
Vue.prototype.StatusBar = e.statusBarHeight;
if (e.platform == 'android') {
Vue.prototype.CustomBar = e.statusBarHeight + 50;
} else {
Vue.prototype.CustomBar = e.statusBarHeight + 45;
};
// #endif
// #ifdef MP-WEIXIN
Vue.prototype.StatusBar = e.statusBarHeight;
let custom = wx.getMenuButtonBoundingClientRect();
Vue.prototype.Custom = custom;
Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
// #endif
// #ifdef MP-ALIPAY
Vue.prototype.StatusBar = e.statusBarHeight;
Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
// #endif
}
})
Vue.prototype.ColorList = [{
title: '嫣红',
name: 'red',
color: '#e54d42'
},
{
title: '桔橙',
name: 'orange',
color: '#f37b1d'
},
{
title: '明黄',
name: 'yellow',
color: '#fbbd08'
},
{
title: '橄榄',
name: 'olive',
color: '#8dc63f'
},
{
title: '森绿',
name: 'green',
color: '#39b54a'
},
{
title: '天青',
name: 'cyan',
color: '#1cbbb4'
},
{
title: '海蓝',
name: 'blue',
color: '#0081ff'
},
{
title: '姹紫',
name: 'purple',
color: '#6739b6'
},
{
title: '木槿',
name: 'mauve',
color: '#9c26b0'
},
{
title: '桃粉',
name: 'pink',
color: '#e03997'
},
{
title: '棕褐',
name: 'brown',
color: '#a5673f'
},
{
title: '玄灰',
name: 'grey',
color: '#8799a3'
},
{
title: '草灰',
name: 'gray',
color: '#aaaaaa'
},
{
title: '墨黑',
name: 'black',
color: '#333333'
},
{
title: '雅白',
name: 'white',
color: '#ffffff'
},
]
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
},
methods: {
...mapActions({
getLoc:'loc/getLoc'
}),
...mapMutations({
initInfoMut:'user/initInfoMut'
}),
// getLocalUserInfo(){ //尝试提取本地用户信息
// try {
// const value = uni.getStorageSync('userInfo');
// if (value) {
// console.log(typeof value);
// this.initInfoMut(value)
// }
// } catch (e) {
// // error
// }
// },
initLeanCloud(){
Cloud.init({
appId: Id,
appKey: Key,
serverURL:baseURL
});
}
},
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
/*每个页面公共css */
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qianfeng-html5-front-end/frontrunner-mobile-terminal.git
git@gitee.com:qianfeng-html5-front-end/frontrunner-mobile-terminal.git
qianfeng-html5-front-end
frontrunner-mobile-terminal
锋选菁英移动端
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385