1 Star 0 Fork 33

飞沙(Feisha)/mall-coupons

forked from Silently9527/mall-coupons 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 887 Bytes
一键复制 编辑 原始数据 按行查看 历史
Wu Tian Qiang 提交于 2021-01-28 22:16 . Initial commit
<script>
/**
* vuex管理登陆状态,具体可以参考官方登陆模板示例
*/
import app from 'app.js'
import {mapMutations} from 'vuex'
export default {
onLaunch: function () {
app.initTitleNav();
app.initShareMenu();
this.$api.backend.getLoginUser().then(resp => {
if (resp.responseCode === 7002) {
this.logout();
} else {
this.storeUser(resp.data)
}
})
},
onShow: function (res) {
if (res.shareTicket) {
this.storeShareTicket(res.shareTicket)
}
},
onHide: function () {
},
methods: {
...mapMutations(['storeUser', 'logout', 'storeShareTicket'])
}
}
</script>
<style lang="scss">
@import "colorui/icon.css";
@import "colorui/main.css";
@import "style/app.scss";
.container {
background: $page-color-base;
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fsos/mall-coupons.git
git@gitee.com:fsos/mall-coupons.git
fsos
mall-coupons
mall-coupons
master

搜索帮助