1 Star 1 Fork 4

Yooye/招聘uniapp2206

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
wuji 提交于 2023-05-05 18:25 . 岗位距离、登录流程、岗位报名
<script>
export default {
onLaunch: function() {
// 定位获取经纬度
uni.getLocation({
success: ({longitude,latitude}) => {
let url = `https://restapi.amap.com/v3/geocode/regeo?key=3cdf846aab977e514073cb7297e94f47&location=${longitude},${latitude}`
//请求高德地图服务接口,获取位置信息
uni.request({
url,
success: (res) => {
console.log(res);
let {city,province} = res.data.regeocode.addressComponent
let cityName = city.length?city:province
let lnglat = [longitude,latitude]
this.$store.commit('loc/initCity',{cityName,lnglat})
}
})
}
})
// 尝试提取本地存储用户信息
try {
const value = uni.getStorageSync('uni-2206-userInfo');
if (value) {
console.log('本地存储用户信息',value);
this.$store.commit('user/initInfoMut',value)
}
} catch (e) {
// error
console.log('用户信息提取失败');
}
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
},
}
</script>
<style lang="scss">
/*每个页面公共css */
@import url('./colorui/main.css');
@import url('./colorui/icon.css');
@import './tuniao-ui/index.scss';
@import './tuniao-ui/iconfont.css';
@import './static/font/iconfont.css';
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yooyeLearning/recruitment-uniapp2206.git
git@gitee.com:yooyeLearning/recruitment-uniapp2206.git
yooyeLearning
recruitment-uniapp2206
招聘uniapp2206
master

搜索帮助