作者 anyv
1 个管道 的构建 通过 耗费 0 秒

联系我们

... ... @@ -132,6 +132,10 @@ class WeixinController extends WeChatBaseController{
//查询显示首页logo
$logo = Db::name('slide_item') -> where('slide_id',1) -> find();
$this -> assign('logo',$logo);
$data = Db::name('map') -> where('id',1) -> find();
$this -> assign('data',$data);
return $this -> fetch();
}
... ...
... ... @@ -71,7 +71,7 @@
function createMap() {
map = new BMap.Map("map");
map.centerAndZoom(new BMap.Point(114.180029, 22.336225), 15);
map.centerAndZoom(new BMap.Point("{$data.jingdu}", "{$data.weidu}"), 15);
}
function setMapEvent() {
... ... @@ -90,7 +90,7 @@
function addMapOverlay() {
var markers = [{
// content: "我的备注",
title: "<p class=“map_p1”>澳德綜合健康中心有限公司</p><p class=“map_p2”>地址 : 香港九龍灣臨澤街8號傲騰廣場<br>25樓</p>",
title: "<p class=“map_p1”>{$data.title}</p><p class=“map_p2”>{$data.address}</p>",
imageOffset: {
width: -46,
height: -21
... ...