diff --git a/src/api/system/dept.js b/src/api/system/dept.js index c8ccce6..a0f3bce 100644 --- a/src/api/system/dept.js +++ b/src/api/system/dept.js @@ -43,6 +43,15 @@ export function addDept(data) { }) } +// 快速生成 +export function fastAddDept(data) { + return request({ + url: '/system/dept/fastCreate', + method: 'post', + data: data + }) +} + // 修改部门 export function updateDept(data) { return request({ diff --git a/src/components/Map/location/LocationMaps.vue b/src/components/Map/location/LocationMaps.vue index 2dcecbd..2f104a0 100644 --- a/src/components/Map/location/LocationMaps.vue +++ b/src/components/Map/location/LocationMaps.vue @@ -117,9 +117,10 @@ export default { // this.doPlaceSearch(city + '人民政府'); // } // }, - + async getAreas(areaId) { - getArea(this.areaId).then(response => { + if(areaId !=null){ + getArea(this.areaId).then(response => { console.log(response,'responseresponse'); this.area = response.data; @@ -140,7 +141,8 @@ export default { this.initAMap(); }); - }); + }); + } }, initAMap() { AMapLoader.load({ @@ -183,7 +185,7 @@ export default { // setTimeout(() => { // this.trajectory() // }, 500); - + }).catch((e) => { console.log("地图加载失败!!!"); @@ -207,7 +209,7 @@ export default { let longitude = parseFloat(abb[0][0]); let latitude1 = parseFloat(abb[abb.length - 1][1]); let longitude1 = parseFloat( abb[abb.length - 1][0]); - + this.marker = new AMap.Marker({ map: this.map, position: [longitude, latitude], @@ -600,7 +602,7 @@ export default { // 每一段的时长 duration: 200,//可根据实际采集时间间隔设置 }); - + }, pauseAnimation() { this.marker.pauseMove(); diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue index e85efee..283f4d3 100644 --- a/src/views/system/dept/index.vue +++ b/src/views/system/dept/index.vue @@ -61,6 +61,16 @@ @click="toggleExpandAll" >展开/折叠 + + 快速生成 + @@ -216,7 +226,7 @@ - + @@ -312,6 +322,69 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -336,7 +409,6 @@ -