1 Star 2 Fork 2

ling/商城模板

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.53 KB
一键复制 编辑 原始数据 按行查看 历史
ling 提交于 2021-02-25 17:14 . 初次提交
<script>
import Vue from "vue"
import pageAnimation from '@/components/page-animation'
export default {
mixins: [pageAnimation],
onLaunch: function() {
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
}
})
let _this = this
uni.getStorage({
key:"userInfo",
success:function(data){
_this.$store.commit("user/setUserInfo",data.data)
},
fail:function(){
_this.$store.commit("user/setUserInfo",null)
}
})
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
@import url("//at.alicdn.com/t/font_2139421_ac288g3kl2v.css");
</style>
<style lang="scss">
@import "uview-ui/index.scss";
@import "./components/custom/main.css";
*{
margin: 0;
padding: 0;
}
view,text{
font-size: 24rpx;
line-height: 1.5;
}
image{
width: 100%;
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ling1996/shopTemplate.git
git@gitee.com:ling1996/shopTemplate.git
ling1996
shopTemplate
商城模板
master

搜索帮助