...
|
...
|
@@ -9,6 +9,7 @@ |
|
|
<link rel="stylesheet" type="text/css" href="http://at.alicdn.com/t/font_647640_n3cow34ja3gzaor.css" />
|
|
|
<link rel="stylesheet" type="text/css" href="/themes/simplebootx/Portal/Template/css/myorder/paydetails.css" />
|
|
|
<script src="/themes/simplebootx/Portal/Template/js/base.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
|
|
|
<title>订单详情待取货</title>
|
|
|
</head>
|
|
|
|
...
|
...
|
@@ -80,7 +81,7 @@ |
|
|
</div>
|
|
|
<!--底部按钮-->
|
|
|
<div class="footer_take">
|
|
|
<span class="take" @click="navigation()">导航去取餐</span>
|
|
|
<span class="take" onclick="openLocation()">导航去取餐</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
...
|
...
|
@@ -100,6 +101,29 @@ |
|
|
wrap.style.display = 'none';
|
|
|
}
|
|
|
</script>
|
|
|
<script>
|
|
|
wx.config({
|
|
|
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
|
|
|
appId: '{$sdk.appId}', // 必填,公众号的唯一标识
|
|
|
timestamp: '{$sdk.timestamp}', // 必填,生成签名的时间戳
|
|
|
nonceStr: '{$sdk.nonceStr}', // 必填,生成签名的随机串
|
|
|
signature: '{$sdk.signature}',// 必填,签名
|
|
|
jsApiList: [
|
|
|
'openLocation'
|
|
|
] // 必填,需要使用的JS接口列表
|
|
|
});
|
|
|
|
|
|
function openLocation() {
|
|
|
wx.openLocation({
|
|
|
latitude: '{$spotInfo.lat}', // 纬度,浮点数,范围为90 ~ -90
|
|
|
longitude: '{$spotInfo.lng}', // 经度,浮点数,范围为180 ~ -180。
|
|
|
name: '{$spotInfo.spot_name}', // 位置名
|
|
|
address: '{$spotInfo.address}', // 地址详情说明
|
|
|
scale: 1, // 地图缩放级别,整形值,范围从1~28。默认为最大
|
|
|
infoUrl: '' // 在查看位置界面底部显示的超链接,可点击跳转
|
|
|
});
|
|
|
}
|
|
|
</script>
|
|
|
</body>
|
|
|
|
|
|
</html> |
|
|
\ No newline at end of file |
...
|
...
|
|