代码拉取完成,页面将自动刷新
同步操作将从 道法合一(qq:1126919503)/洗车服务-共享洗车 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。