|
@@ -352,7 +352,7 @@ border: 1px solid #EFA34E;color: #EFA34E;"><span>企业人才</span><span>服务
|
|
|
el: '#ggyq',
|
|
|
data: function () {
|
|
|
return {
|
|
|
- reqPtah: 'http://183.64.61.180:8082',
|
|
|
+ reqPtah: 'http://8.137.113.116:8082',
|
|
|
pageSize: 20,
|
|
|
jbqk: {},
|
|
|
qwysList: [],
|
|
@@ -400,7 +400,7 @@ border: 1px solid #EFA34E;color: #EFA34E;"><span>企业人才</span><span>服务
|
|
|
getJBQK(id) {
|
|
|
let that = this;
|
|
|
$.ajax({
|
|
|
- url: that.reqPtah + "/parkData/" + id,
|
|
|
+ url: "parkData/" + id,
|
|
|
type: "get",
|
|
|
dataType: "json",
|
|
|
success: function (data) {
|
|
@@ -427,17 +427,19 @@ border: 1px solid #EFA34E;color: #EFA34E;"><span>企业人才</span><span>服务
|
|
|
const id = addr.searchParams.get('id');
|
|
|
// 设定中心点和地图级别
|
|
|
if (id == 1) {
|
|
|
- map.centerAndZoom(new BMap.Point(106.651444, 29.48682), 16);
|
|
|
+ map.centerAndZoom(new BMap.Point(106.651444, 29.48682), 14);
|
|
|
+ var marker = new BMap.Marker(new BMap.Point(106.651444, 29.48682)); // 创建标注
|
|
|
+ map.addOverlay(marker);
|
|
|
} else if (id == 2) {
|
|
|
- map.centerAndZoom(new BMap.Point(106.76723874457288, 29.583376880811712), 16);
|
|
|
+ map.centerAndZoom(new BMap.Point(106.76723874457288, 29.583376880811712), 14);
|
|
|
} else if (id == 3) {
|
|
|
- map.centerAndZoom(new BMap.Point(106.69517131217539, 29.52577313312822), 16);
|
|
|
+ map.centerAndZoom(new BMap.Point(106.69517131217539, 29.52577313312822), 14);
|
|
|
} else if (id == 4) {
|
|
|
- map.centerAndZoom(new BMap.Point(106.559829995157, 29.511581648208534), 16);
|
|
|
+ map.centerAndZoom(new BMap.Point(106.559829995157, 29.511581648208534), 14);
|
|
|
} else if (id == 5) {
|
|
|
- map.centerAndZoom(new BMap.Point(106.72294027111843, 29.505690776940248), 16);
|
|
|
+ map.centerAndZoom(new BMap.Point(106.72294027111843, 29.505690776940248), 14);
|
|
|
} else {
|
|
|
- map.centerAndZoom(new BMap.Point(106.651444, 29.48682), 16);
|
|
|
+ map.centerAndZoom(new BMap.Point(106.651444, 29.48682), 14);
|
|
|
}
|
|
|
if (!points) return;
|
|
|
let pointList = points.split('@');
|
|
@@ -510,7 +512,7 @@ border: 1px solid #EFA34E;color: #EFA34E;"><span>企业人才</span><span>服务
|
|
|
getDetail(id) {
|
|
|
let that = this;
|
|
|
$.ajax({
|
|
|
- url: that.reqPtah + "/parkData/details/" + id,
|
|
|
+ url: "parkData/details/" + id,
|
|
|
type: "get",
|
|
|
dataType: "json",
|
|
|
success: function (data) {
|
|
@@ -535,7 +537,7 @@ border: 1px solid #EFA34E;color: #EFA34E;"><span>企业人才</span><span>服务
|
|
|
getSellBuild(id) {
|
|
|
let that = this;
|
|
|
$.ajax({
|
|
|
- url: that.reqPtah + "/sellBuild",
|
|
|
+ url: "sellBuild",
|
|
|
type: "post",
|
|
|
contentType: 'application/json',
|
|
|
data: JSON.stringify({
|
|
@@ -556,7 +558,7 @@ border: 1px solid #EFA34E;color: #EFA34E;"><span>企业人才</span><span>服务
|
|
|
getSellLand(id) {
|
|
|
let that = this;
|
|
|
$.ajax({
|
|
|
- url: that.reqPtah + "/sellLand",
|
|
|
+ url: "sellLand",
|
|
|
type: "post",
|
|
|
contentType: 'application/json',
|
|
|
data: JSON.stringify({
|
|
@@ -574,7 +576,7 @@ border: 1px solid #EFA34E;color: #EFA34E;"><span>企业人才</span><span>服务
|
|
|
getParkActivity(id) {
|
|
|
let that = this;
|
|
|
$.ajax({
|
|
|
- url: that.reqPtah + "/parkActivity",
|
|
|
+ url: "parkActivity",
|
|
|
type: "post",
|
|
|
contentType: 'application/json',
|
|
|
data: JSON.stringify({
|