1 Star 0 Fork 930

高杨/likeshop单商户商城系统_B2C_H5_APP_小程序_微信_支付宝_分销系统_免费商用_口碑之选

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
mofung1 提交于 2021-12-31 16:19 +08:00 . 更新为2.5.7版本
<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()
}
},
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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/ugao/likeshop.git
git@gitee.com:ugao/likeshop.git
ugao
likeshop
likeshop单商户商城系统_B2C_H5_APP_小程序_微信_支付宝_分销系统_免费商用_口碑之选
master

搜索帮助

371d5123 14472233 46e8bd33 14472233