You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.5 KiB
41 lines
1.5 KiB
<template>
|
|
<map-Point @commitCheck="commitCheck" :mapKey='mapKey' :Radius='Radius' :showResetting='showResetting' :listIco='listIco' :orientationIco='orientationIco' :resettingIco='resettingIco' :configData='configData'></map-Point>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
mapKey:'99e0c683598315f86d872c5ea3cf0a7b',
|
|
address: '',
|
|
latitude: '',
|
|
longitude: '',
|
|
listIco:'/uni_modules/map-Point/static/item-inx.png',
|
|
orientationIco:'/uni_modules/map-Point/static/map-inx.png',
|
|
resettingIco:"/uni_modules/map-Point/static/position.png",
|
|
showResetting:true,
|
|
Radius:'',
|
|
// 微信公众号jsSdk配置
|
|
configData:{
|
|
debug:false,// 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
|
|
appId:'',// 必填,公众号的唯一标识
|
|
timestamp: '', // 必填,生成签名的时间戳
|
|
nonceStr: '', // 必填,生成签名的随机串
|
|
signature: '', // 必填,签名
|
|
}
|
|
};
|
|
},
|
|
methods: {
|
|
commitCheck(e) {
|
|
console.log(e, 565);
|
|
uni.$emit('commitCheck', e);
|
|
uni.navigateBack({
|
|
delta: 1
|
|
});
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|