电子围栏前台
parent
0edb6bd546
commit
ec2a485106
|
@ -36,6 +36,7 @@
|
||||||
"url": "https://gitee.com/y_project/MuYu-Cloud.git"
|
"url": "https://gitee.com/y_project/MuYu-Cloud.git"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@amap/amap-jsapi-loader": "^1.0.1",
|
||||||
"@riophae/vue-treeselect": "0.4.0",
|
"@riophae/vue-treeselect": "0.4.0",
|
||||||
"axios": "0.24.0",
|
"axios": "0.24.0",
|
||||||
"clipboard": "2.0.8",
|
"clipboard": "2.0.8",
|
||||||
|
@ -48,6 +49,8 @@
|
||||||
"js-beautify": "1.13.0",
|
"js-beautify": "1.13.0",
|
||||||
"js-cookie": "3.0.1",
|
"js-cookie": "3.0.1",
|
||||||
"jsencrypt": "3.0.0-rc.1",
|
"jsencrypt": "3.0.0-rc.1",
|
||||||
|
"less-loader": "^12.2.0",
|
||||||
|
"maptalks": "^1.0.0-rc.33",
|
||||||
"nprogress": "0.2.0",
|
"nprogress": "0.2.0",
|
||||||
"quill": "1.3.7",
|
"quill": "1.3.7",
|
||||||
"screenfull": "5.0.2",
|
"screenfull": "5.0.2",
|
||||||
|
@ -69,7 +72,7 @@
|
||||||
"chalk": "4.1.0",
|
"chalk": "4.1.0",
|
||||||
"compression-webpack-plugin": "5.0.2",
|
"compression-webpack-plugin": "5.0.2",
|
||||||
"connect": "3.6.6",
|
"connect": "3.6.6",
|
||||||
"eslint": "7.15.0",
|
"eslint": "^7.15.0",
|
||||||
"eslint-plugin-vue": "7.2.0",
|
"eslint-plugin-vue": "7.2.0",
|
||||||
"lint-staged": "10.5.3",
|
"lint-staged": "10.5.3",
|
||||||
"runjs": "4.4.2",
|
"runjs": "4.4.2",
|
||||||
|
@ -77,6 +80,7 @@
|
||||||
"sass-loader": "10.1.1",
|
"sass-loader": "10.1.1",
|
||||||
"script-ext-html-webpack-plugin": "2.1.5",
|
"script-ext-html-webpack-plugin": "2.1.5",
|
||||||
"svg-sprite-loader": "5.1.1",
|
"svg-sprite-loader": "5.1.1",
|
||||||
|
"vue-amap": "^0.5.10",
|
||||||
"vue-template-compiler": "2.6.12"
|
"vue-template-compiler": "2.6.12"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
|
@ -1,6 +1,15 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<!-- <script type="text/javascript">-->
|
||||||
|
<!-- window._AMapSecurityConfig = {-->
|
||||||
|
<!-- securityJsCode: "e4ec82d19a5e0c7a7298911f1e2cd2f1",-->
|
||||||
|
<!-- }-->
|
||||||
|
<!-- </script>-->
|
||||||
|
<!-- <script src="https://webapi.amap.com/loader.js"></script>-->
|
||||||
|
<!-- <script type="text/javascript"-->
|
||||||
|
<!-- src="https://webapi.amap.com/maps?v=2.0&key=1666544c7b614ba063b4c58d5c148248">-->
|
||||||
|
<!-- </script>-->
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
|
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
|
||||||
<meta content="webkit" name="renderer">
|
<meta content="webkit" name="renderer">
|
||||||
|
|
|
@ -0,0 +1,63 @@
|
||||||
|
import request from "@/utils/request";
|
||||||
|
import fence from "@/views/system/fence/index.vue";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 围栏列表
|
||||||
|
* @param data
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
export function fenceList(data){
|
||||||
|
return request({
|
||||||
|
url:'/fence/fence/list',
|
||||||
|
method:"post",
|
||||||
|
data:data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增围栏
|
||||||
|
* @param data
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
export function fenceAdd(data) {
|
||||||
|
return request({
|
||||||
|
url: '/fence/fence/fenceAdd',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除围栏
|
||||||
|
* @param fenceId
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
export function fenceDelete(fenceId) {
|
||||||
|
return request({
|
||||||
|
url: '/fence/fence/fenceDelete/'+fenceId,
|
||||||
|
method: 'post'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改围栏
|
||||||
|
* @param data
|
||||||
|
* @returns {*}
|
||||||
|
*/
|
||||||
|
export function fenceUpdate(data) {
|
||||||
|
return request({
|
||||||
|
url: '/fence/fence/fenceUpdate',
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
export function saveFence(data) {
|
||||||
|
return request({
|
||||||
|
url: '/fence/fence/saveFence',
|
||||||
|
method: 'post',
|
||||||
|
data:JSON.stringify(data),
|
||||||
|
})
|
||||||
|
}
|
|
@ -38,7 +38,6 @@ import VueMeta from 'vue-meta'
|
||||||
// 字典数据组件
|
// 字典数据组件
|
||||||
import DictData from '@/components/DictData'
|
import DictData from '@/components/DictData'
|
||||||
|
|
||||||
// 全局方法挂载
|
|
||||||
Vue.prototype.getDicts = getDicts
|
Vue.prototype.getDicts = getDicts
|
||||||
Vue.prototype.getConfigKey = getConfigKey
|
Vue.prototype.getConfigKey = getConfigKey
|
||||||
Vue.prototype.parseTime = parseTime
|
Vue.prototype.parseTime = parseTime
|
||||||
|
|
|
@ -73,6 +73,20 @@ export const constantRoutes = [
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
component: Layout,
|
||||||
|
redirect: 'index',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: '/fence',
|
||||||
|
component: () => import('@/views/system/fence/index'),
|
||||||
|
name: 'Index',
|
||||||
|
meta: {title: '电子围栏', icon: 'fence'}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
path: '/user',
|
path: '/user',
|
||||||
component: Layout,
|
component: Layout,
|
||||||
|
|
|
@ -0,0 +1,477 @@
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<div v-if="showMapp">
|
||||||
|
<el-form :inline="true" :model="fence" class="demo-form-inline">
|
||||||
|
|
||||||
|
<el-form-item label="围栏名称">
|
||||||
|
<el-input v-model="fence.fenceName" placeholder="模糊查询围栏名称"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
|
||||||
|
<el-form-item label="围栏类型">
|
||||||
|
<el-select v-model="fence.fenceTypeId" placeholder="请选择围栏类型">
|
||||||
|
<el-option label="驶出" value="1">驶出</el-option>
|
||||||
|
<el-option label="驶入" value="2">驶入</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="围栏状态">
|
||||||
|
<el-select v-model="fence.fenceState" placeholder="请选择围栏状态">
|
||||||
|
<el-option label="正常" value="1">正常</el-option>
|
||||||
|
<el-option label="停用" value="2">停用</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" @click="onSubmit" icon="el-icon-search">搜索</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<el-button type="primary" plain icon="el-icon-plus" @click="fencadd">新增</el-button>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<el-table :data="tableData" style="width: 100%" ref="multipleTable" @selection-change="handleSelectionChange">
|
||||||
|
|
||||||
|
|
||||||
|
<el-table-column
|
||||||
|
type="selection"
|
||||||
|
width="55">
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column
|
||||||
|
label="围栏ID"
|
||||||
|
width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span style="margin-left: 10px">{{ scope.row.fenceId }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column
|
||||||
|
label="围栏名称"
|
||||||
|
width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span style="margin-left: 10px">{{ scope.row.fenceName }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column
|
||||||
|
label="围栏类型"
|
||||||
|
width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span style="margin-left: 10px" v-if="scope.row.fenceTypeId==1">驶出</span>
|
||||||
|
<span style="margin-left: 10px" v-if="scope.row.fenceTypeId==2">驶入</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column
|
||||||
|
label="围栏状态"
|
||||||
|
width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span style="margin-left: 10px" v-if="scope.row.fenceState==1"><el-tag>正常</el-tag></span>
|
||||||
|
<span style="margin-left: 10px" v-if="scope.row.fenceState==2"><el-tag>停用</el-tag></span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
<el-table-column
|
||||||
|
label="经纬度信息"
|
||||||
|
width="180">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span style="margin-left: 10px">{{ scope.row.fenceMessage }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
|
||||||
|
|
||||||
|
<el-table-column label="操作">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-link type="primary" icon="el-icon-map-location" @click="handleWdit(scope.row)">编辑围栏</el-link>
|
||||||
|
|
||||||
|
<el-link type="primary" icon="el-icon-edit" @click="handleEdit(scope.row)">编辑</el-link>
|
||||||
|
|
||||||
|
<el-link type="primary" icon="el-icon-delete" @click="handleDelete(scope.row.fenceId)">删除</el-link>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<el-pagination
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
@current-change="handleCurrentChange"
|
||||||
|
:current-page="fence.pageNum"
|
||||||
|
:page-sizes="[1, 3, 5, 10]"
|
||||||
|
:page-size="fence.pageSize"
|
||||||
|
layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
:total="total">
|
||||||
|
</el-pagination>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 围栏添加-->
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogFormVisible">
|
||||||
|
|
||||||
|
<el-form :model="fences">
|
||||||
|
|
||||||
|
<el-form-item label="围栏名称" :label-width="formLabelWidth">
|
||||||
|
<el-input v-model="fences.fenceName" autocomplete="off"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
|
||||||
|
<el-form-item label="围栏类型" :label-width="formLabelWidth">
|
||||||
|
<el-select v-model="fences.fenceTypeId" placeholder="请选择活动区域">
|
||||||
|
<el-option label="驶出" value="1">驶出</el-option>
|
||||||
|
<el-option label="驶入" value="2">驶入</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="围栏状态" :label-width="formLabelWidth">
|
||||||
|
<template>
|
||||||
|
<el-radio v-model="fences.fenceState" label="1">正常</el-radio>
|
||||||
|
<el-radio v-model="fences.fenceState" label="2">停用</el-radio>
|
||||||
|
</template>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="dialogFormVisible = false">取 消</el-button>
|
||||||
|
<el-button type="primary" @click="addAll">新增</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 修改电子围栏-->
|
||||||
|
<el-dialog :title="title" :visible.sync="dialogFormVisible1">
|
||||||
|
|
||||||
|
<el-form :model="fences">
|
||||||
|
|
||||||
|
<el-form-item label="围栏ID" :label-width="formLabelWidth1">
|
||||||
|
<el-input v-model="fences.fenceId" autocomplete="off"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
<el-form-item label="围栏名称" :label-width="formLabelWidth1">
|
||||||
|
<el-input v-model="fences.fenceName" autocomplete="off"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
|
||||||
|
<el-form-item label="围栏类型" :label-width="formLabelWidth1">
|
||||||
|
<el-select v-model="fences.fenceTypeId" placeholder="请选择活动区域">
|
||||||
|
<el-option label="驶出" value="1">驶出</el-option>
|
||||||
|
<el-option label="驶入" value="2">驶入</el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
|
||||||
|
<el-form-item label="围栏状态">
|
||||||
|
<el-radio-group v-model="fences.fenceState" :label-width="formLabelWidth1">
|
||||||
|
<el-radio :label="1">正常</el-radio>
|
||||||
|
<el-radio :label="2">停用</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="dialogFormVisible = false">取 消</el-button>
|
||||||
|
<el-button type="primary" @click="updateAll">修 改</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<el-button @click="drawPolygon">绘制围栏</el-button>
|
||||||
|
<el-button @click="saveFenceData">保存围栏</el-button>
|
||||||
|
<el-button @click="cleanFence">清除围栏</el-button>
|
||||||
|
|
||||||
|
<div id="container" v-if="showMap"></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import AMapLoader from '@amap/amap-jsapi-loader';
|
||||||
|
//这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等),
|
||||||
|
//例如:import 《组件名称》 from '《组件路径》,
|
||||||
|
import {fenceAdd, fenceDelete, fenceList, fenceUpdate, saveFence} from "@/api/system/fence";
|
||||||
|
import mouseTool from "quill";
|
||||||
|
export default {
|
||||||
|
name: "map-view",
|
||||||
|
//生命周期 - 挂载完成(可以访问DOM元素)",
|
||||||
|
mounted() {
|
||||||
|
this.initAMap();
|
||||||
|
},
|
||||||
|
//import引入的组件需要注入到对象中才能使用"
|
||||||
|
components: {},
|
||||||
|
props: {},
|
||||||
|
data() {
|
||||||
|
//这里存放数据"
|
||||||
|
|
||||||
|
return {
|
||||||
|
tableData:[],
|
||||||
|
fence:{
|
||||||
|
pageNum:1,
|
||||||
|
pageSize:3,
|
||||||
|
fenceName:'',
|
||||||
|
},
|
||||||
|
total:0,
|
||||||
|
dialogFormVisible:false,
|
||||||
|
formLabelWidth:'120px',
|
||||||
|
fences:{
|
||||||
|
fenceId:0,
|
||||||
|
fenceName:'',
|
||||||
|
fenceTypeId:0,
|
||||||
|
fenceState:0
|
||||||
|
},
|
||||||
|
title:'',
|
||||||
|
dialogFormVisible1:false,
|
||||||
|
formLabelWidth1:'120px',
|
||||||
|
dj:false,
|
||||||
|
mouseTool:null,
|
||||||
|
map:null,
|
||||||
|
Amap:null,
|
||||||
|
|
||||||
|
//跳转地图页面
|
||||||
|
showMap:false,
|
||||||
|
showMapp:true,
|
||||||
|
|
||||||
|
|
||||||
|
//保存围栏
|
||||||
|
mapRequest:{
|
||||||
|
fenceId:0,
|
||||||
|
jwd:[]
|
||||||
|
}
|
||||||
|
|
||||||
|
};
|
||||||
|
},
|
||||||
|
//计算属性 类似于data概念",
|
||||||
|
computed: {},
|
||||||
|
//监控data中的数据变化",
|
||||||
|
watch: {},
|
||||||
|
//方法集合",
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
//围栏列表
|
||||||
|
list() {
|
||||||
|
fenceList(this.fence).then(
|
||||||
|
res => {
|
||||||
|
this.tableData = res.data.list
|
||||||
|
this.total = res.data.total
|
||||||
|
console.log(this.tableData);
|
||||||
|
console.log(res)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
},
|
||||||
|
|
||||||
|
// //复选框
|
||||||
|
handleSelectionChange(val) {
|
||||||
|
this.multipleSelection = val;
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
// 搜索框
|
||||||
|
onSubmit() {
|
||||||
|
this.list()
|
||||||
|
},
|
||||||
|
|
||||||
|
//分页查询
|
||||||
|
handleSizeChange(val) {
|
||||||
|
this.fence.pageSize = val
|
||||||
|
this.list()
|
||||||
|
},
|
||||||
|
|
||||||
|
//分页查询
|
||||||
|
handleCurrentChange(val) {
|
||||||
|
this.fence.pageNum = val
|
||||||
|
this.list()
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
//新增
|
||||||
|
fencadd() {
|
||||||
|
this.fences = {}
|
||||||
|
this.dialogFormVisible = true
|
||||||
|
this.title = '新增页面'
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
addAll() {
|
||||||
|
fenceAdd(this.fences.data).then(
|
||||||
|
res => {
|
||||||
|
this.$message.success(res.msg)
|
||||||
|
this.list()
|
||||||
|
}
|
||||||
|
)
|
||||||
|
this.dialogFormVisible = false
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
//删除电子围栏
|
||||||
|
handleDelete(fenceId){
|
||||||
|
fenceDelete(fenceId,'deleted').then(
|
||||||
|
res=>{
|
||||||
|
this.$message.success(res.msg)
|
||||||
|
this.list()
|
||||||
|
}
|
||||||
|
).catch(error=>{
|
||||||
|
console.error("逻辑删除失败",error);
|
||||||
|
this.$message.success("逻辑删除失败,请重试")
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
//修改电子围栏
|
||||||
|
handleEdit(obj) {
|
||||||
|
this.dialogFormVisible1 = true
|
||||||
|
this.fences = obj
|
||||||
|
this.title = '修改电子围栏'
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
updateAll() {
|
||||||
|
fenceUpdate(this.fences).then(
|
||||||
|
res => {
|
||||||
|
this.$message.success(res.msg)
|
||||||
|
this.list()
|
||||||
|
}
|
||||||
|
)
|
||||||
|
this.dialogFormVisible1=false;
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//编辑围栏
|
||||||
|
handleWdit() {
|
||||||
|
this.showMap=true
|
||||||
|
this.showMapp=false
|
||||||
|
this.initAMap()
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//初始化地图
|
||||||
|
initAMap(){
|
||||||
|
|
||||||
|
AMapLoader.load({
|
||||||
|
key:"fcd296bbfa904e3bf49d7316882a11bf",
|
||||||
|
version:"2.0",
|
||||||
|
plugins:["AMap.Scale","AMap.MouseTool"],
|
||||||
|
})
|
||||||
|
.then((AMap)=>{
|
||||||
|
this._Amap=AMap;
|
||||||
|
this.map=new AMap.Map("container",{
|
||||||
|
//设置地图容器ID
|
||||||
|
viewMode:"3D",
|
||||||
|
zoom:11,
|
||||||
|
center: [116.397428, 39.90923],
|
||||||
|
});
|
||||||
|
|
||||||
|
this.mouseTool=new AMap.MouseTool(this.map);
|
||||||
|
this.mouseTool.on('draw', this.drawReady)
|
||||||
|
})
|
||||||
|
.catch((e)=>{
|
||||||
|
console.log(e);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
drawPolygon () {
|
||||||
|
this.mouseTool.polygon({
|
||||||
|
strokeColor: "#FF33FF",
|
||||||
|
strokeOpacity: 1,
|
||||||
|
strokeWeight: 6,
|
||||||
|
strokeOpacity: 0.2,
|
||||||
|
fillColor: '#1791fc',
|
||||||
|
fillOpacity: 0.4,
|
||||||
|
// 线样式还支持 'dashed'
|
||||||
|
strokeStyle: "solid",
|
||||||
|
// strokeStyle是dashed时有效
|
||||||
|
strokeDasharray: [30,10],
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 在 drawReady 方法中获取绘制的围栏的经纬度信息
|
||||||
|
drawReady(event){
|
||||||
|
console.log(event)
|
||||||
|
console.log(event.obj.getPath())
|
||||||
|
console.info('覆盖物对象绘制完成')
|
||||||
|
|
||||||
|
// 获取绘制的围栏经纬度信息
|
||||||
|
const path =event.obj.getPath()
|
||||||
|
// 将经纬度信息保存到 scope.row.fenceMessage 中
|
||||||
|
this.tableData.forEach(item=>{
|
||||||
|
if(item.fenceId === event.obj.fenceId){ // 假设 fenceId 是围栏的唯一标识符
|
||||||
|
item.fenceMessage = path.toString(); // 这里使用 toString() 方法将路径转换为字符串形式
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
//清除围栏
|
||||||
|
cleanFence(){
|
||||||
|
this.mouseTool.close(true)
|
||||||
|
},
|
||||||
|
|
||||||
|
//保存围栏
|
||||||
|
saveFenceData(){
|
||||||
|
console.log(this.mapRequest.jwd)
|
||||||
|
saveFence(this.mapRequest).then(response=>{
|
||||||
|
// this.$modal.msgSuccess("保存成功")
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
//生命周期 - 创建完成(可以访问当前this实例)",
|
||||||
|
created() {
|
||||||
|
this.list()
|
||||||
|
// this.mapRequest.fenceId=this.$router.query.fenceId
|
||||||
|
},
|
||||||
|
beforeCreate() {
|
||||||
|
}, //生命周期 - 创建之前",
|
||||||
|
beforeMount() {
|
||||||
|
}, //生命周期 - 挂载之前",
|
||||||
|
beforeUpdate() {
|
||||||
|
}, //生命周期 - 更新之前",
|
||||||
|
updated() {
|
||||||
|
}, //生命周期 - 更新之后",
|
||||||
|
beforeDestroy() {
|
||||||
|
}, //生命周期 - 销毁之前",
|
||||||
|
destroyed() {
|
||||||
|
}, //生命周期 - 销毁完成",
|
||||||
|
activated() {
|
||||||
|
} //如果页面有keep-alive缓存功能,这个函数会触发",
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.dashboard{
|
||||||
|
&-container{
|
||||||
|
margin: 30px;
|
||||||
|
}
|
||||||
|
&-text{
|
||||||
|
font-size:30px;
|
||||||
|
line-height:46px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#container{
|
||||||
|
|
||||||
|
padding:0px;
|
||||||
|
margin:0px;
|
||||||
|
width:100%;
|
||||||
|
height:800px;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue