作者 郭鑫
1 个管道 的构建 通过 耗费 1 秒

修改位置

... ... @@ -433,7 +433,9 @@
success:function(json){
var isGet = $('.enterplace').text();
if(isGet.length == 0){
$('.enterplace').val(json.result.address);
// $('.enterplace').val(json.result.address);
$('.enterplace').val("{$Request.param.addr}");
}
},
... ... @@ -443,10 +445,12 @@
});
});
// 调取腾讯接口
var txUrl = "https://3gimg.qq.com/lightmap/components/locationPicker2/index.html?callback=QQmap&type=0&backurl=http://yunzhi07.com&search=1&policy=1&mapdraggable=0&zoom=13&referer=myapp&key=HGLBZ-WD66X-2H74V-TJ6NI-NHNWZ-DNBJ5";
$('.enterplace').click(function () {
window.location.href = txUrl;
// window.location.href = txUrl;
// $('.enterplace').val(json.result.address);
})
</script>
... ...