1 Star 0 Fork 3

yang1984/洗车服务-共享洗车

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
道法合一(qq:1126919503) 提交于 2022-07-12 11:17 . tijiao
<script>
import store from './store/index';
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
},
methods: {
getlocation() {
uni.getLocation({
type: 'gcj02',
success: (res) => {
var {
latitude,
longitude
} = res;
var location = {
lat: latitude,
lng: longitude,
};
uni.setStorageSync("location", location)
store.commit("addlocation")
},
fail(res) {
console.log(res)
uni.showModal({
content: '检测到您没打开此小程序的定位权限,是否去设置打开?',
confirmText: "确认",
cancelText: "取消",
success: function(res) {
//点击“确认”时打开设置页面
if (res.confirm) {
uni.openSetting({
success: (res) => {
}
})
} else {
console.log('用户点击取消')
}
}
})
},
})
}
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
.cell-hover-class {
background-color: rgb(235, 237, 238);
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yang1984/share-car-wash.git
[email protected]:yang1984/share-car-wash.git
yang1984
share-car-wash
洗车服务-共享洗车
master

搜索帮助