2 Star 0 Fork 0

tianheng2017 / auction_uniapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 2.16 KB
一键复制 编辑 原始数据 按行查看 历史
we9f29fs 提交于 2022-03-17 20:18 . update
<script>
import {
mapMutations,
mapActions
} from 'vuex'
import {
inputInviteCode
} from '@/api/user'
import {
userShare,
getConfig
} from '@/api/app'
import Cache from '@/utils/cache'
import {
strToParams,
showModal,
setTabbar
} from '@/utils/tools'
import {
wxMnpLogin
} from '@/utils/login'
export default {
globalData: {
navHeight: ""
},
onLaunch: function(options) {
uni.hideTabBar({
animation: false
})
// 获取配置
this.getConfigFun()
this.getUser()
// 获取分享
this.getShareInfo()
//获取系统信息
this.getSystemInfo()
},
onShow: function(options) {
// 进入页面绑定邀请码
this.bindCode(options)
},
onHide: function() {
console.log('App Hide')
},
methods: {
...mapMutations(['SETCONFIG']),
...mapActions(['getUser']),
getSystemInfo() {
uni.getSystemInfo({
success: res => {
let {
statusBarHeight,
platform
} = res;
let navHeight;
if (platform == 'ios' || platform == 'devtools') {
navHeight = statusBarHeight + 44;
} else {
navHeight = statusBarHeight + 48;
}
this.globalData.navHeight = navHeight;
},
fail(err) {
console.log(err);
}
});
},
async getShareInfo() {
const {
code,
data
} = await userShare()
if (code == 1) {
Cache.set('shareInfo', data)
}
},
async getConfigFun() {
// try{
// const {
// code,
// data
// } = await getConfig()
// if (code == 1) {
// this.SETCONFIG(data)
// setTabbar()
// }
// }catch(e){
// uni.showTabBar()
// }
uni.showTabBar()
},
bindCode(options) {
let invite_code = options.query.invite_code || strToParams(decodeURIComponent(options.query.scene))
.invite_code
if (invite_code) {
inputInviteCode({
code: invite_code
}).then(res => {
if (res.code == -1) {
Cache.set("INVITE_CODE", invite_code)
}
})
}
}
}
}
</script>
<style lang='scss'>
@import 'styles/base.scss';
/*每个页面公共css */
@import "components/uview-ui/index.scss";
</style>
1
https://gitee.com/tianheng2017/auction_uniapp.git
git@gitee.com:tianheng2017/auction_uniapp.git
tianheng2017
auction_uniapp
auction_uniapp
master

搜索帮助