加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
孙颖洲 提交于 2020-08-24 17:14 . 优化164
<script>
export default {
onLaunch: function() {
console.log('App Launch')
uni.onTabBarMidButtonTap(() => {
this.$goto('/pages/demand/release')
})
this.$store.commit('setToken');
this.$store.commit('userLogin');
this.$store.commit('getVer');
this.$store.commit('getCity');
this.checkIsFirst();
this.getLocation();
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
},
data() {
return {
address: ''
};
},
methods: {
checkIsFirst() {
let isFirst = uni.getStorageSync('isFirst') || ''
if (isFirst) {
} else {
this.$goto('/pages/activity/firstguide')
}
},
getLocation() {
uni.getLocation({
type: 'gcj02',
geocode: true,
success: res => {
this.address = res.address
this.$u.get('/city/choose', {
city: res.address.city
}).then(res => {
this.$store.commit('setCity', res.data.result.city)
})
},
fail: res => {
console.log(res)
}
});
}
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
@import "app.scss";
.u-cell {
align-items: center;
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化