|
@@ -0,0 +1,382 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="app-container">
|
|
3
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px" @submit.native.prevent>
|
|
4
|
+ <el-form-item label="停车场名称" prop="parkingName">
|
|
5
|
+ <el-input
|
|
6
|
+ v-model="queryParams.parkingName"
|
|
7
|
+ placeholder="请输入停车场名称"
|
|
8
|
+ clearable
|
|
9
|
+ size="small"
|
|
10
|
+ @keyup.enter.native="handleQuery"
|
|
11
|
+ />
|
|
12
|
+ </el-form-item>
|
|
13
|
+ <el-form-item>
|
|
14
|
+ <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
15
|
+ <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
16
|
+ </el-form-item>
|
|
17
|
+ </el-form>
|
|
18
|
+
|
|
19
|
+ <el-row :gutter="10" class="mb8">
|
|
20
|
+ <el-col :span="1.5">
|
|
21
|
+ <el-button
|
|
22
|
+ type="primary"
|
|
23
|
+ plain
|
|
24
|
+ icon="el-icon-plus"
|
|
25
|
+ size="mini"
|
|
26
|
+ @click="handleAdd"
|
|
27
|
+ v-hasPermi="['info:parkingLot:add']"
|
|
28
|
+ >新增</el-button>
|
|
29
|
+ </el-col>
|
|
30
|
+ <el-col :span="1.5">
|
|
31
|
+ <el-button
|
|
32
|
+ type="success"
|
|
33
|
+ plain
|
|
34
|
+ icon="el-icon-edit"
|
|
35
|
+ size="mini"
|
|
36
|
+ :disabled="single"
|
|
37
|
+ @click="handleUpdate"
|
|
38
|
+ v-hasPermi="['info:parkingLot:edit']"
|
|
39
|
+ >修改</el-button>
|
|
40
|
+ </el-col>
|
|
41
|
+ <el-col :span="1.5">
|
|
42
|
+ <el-button
|
|
43
|
+ type="danger"
|
|
44
|
+ plain
|
|
45
|
+ icon="el-icon-delete"
|
|
46
|
+ size="mini"
|
|
47
|
+ :disabled="multiple"
|
|
48
|
+ @click="handleDelete"
|
|
49
|
+ v-hasPermi="['info:parkingLot:remove']"
|
|
50
|
+ >删除</el-button>
|
|
51
|
+ </el-col>
|
|
52
|
+ <el-col :span="1.5">
|
|
53
|
+ <el-button
|
|
54
|
+ type="warning"
|
|
55
|
+ plain
|
|
56
|
+ icon="el-icon-download"
|
|
57
|
+ size="mini"
|
|
58
|
+ :loading="exportLoading"
|
|
59
|
+ @click="handleExport"
|
|
60
|
+ v-hasPermi="['info:parkingLot:export']"
|
|
61
|
+ >导出</el-button>
|
|
62
|
+ </el-col>
|
|
63
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
64
|
+ </el-row>
|
|
65
|
+
|
|
66
|
+ <el-table v-loading="loading" :data="parkingLotList" @selection-change="handleSelectionChange">
|
|
67
|
+ <el-table-column type="selection" width="55" align="center" />
|
|
68
|
+ <el-table-column label="停车场id" align="center" prop="parkingId" />
|
|
69
|
+ <el-table-column label="停车场名称" align="center" prop="parkingName" />
|
|
70
|
+ <el-table-column label="坐标" align="center" prop="lngLat" />
|
|
71
|
+ <el-table-column label="空余车位" align="center" prop="freeSpots" />
|
|
72
|
+ <el-table-column label="空余充电桩" align="center" prop="freeChargers" />
|
|
73
|
+ <el-table-column label="当前值班人员" align="center" prop="personnelName" />
|
|
74
|
+<!-- <el-table-column label="备注" align="center" prop="memo" />-->
|
|
75
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="140">
|
|
76
|
+ <template slot-scope="scope">
|
|
77
|
+ <el-button
|
|
78
|
+ size="mini"
|
|
79
|
+ type="text"
|
|
80
|
+ icon="el-icon-edit"
|
|
81
|
+ @click="handleUpdate(scope.row)"
|
|
82
|
+ v-hasPermi="['info:parkingLot:edit']"
|
|
83
|
+ >修改</el-button>
|
|
84
|
+ <el-button
|
|
85
|
+ size="mini"
|
|
86
|
+ type="text"
|
|
87
|
+ icon="el-icon-delete"
|
|
88
|
+ @click="handleDelete(scope.row)"
|
|
89
|
+ v-hasPermi="['info:parkingLot:remove']"
|
|
90
|
+ >删除</el-button>
|
|
91
|
+ </template>
|
|
92
|
+ </el-table-column>
|
|
93
|
+ </el-table>
|
|
94
|
+
|
|
95
|
+ <pagination
|
|
96
|
+ v-show="total>0"
|
|
97
|
+ :total="total"
|
|
98
|
+ :page.sync="queryParams.pageNum"
|
|
99
|
+ :limit.sync="queryParams.pageSize"
|
|
100
|
+ @pagination="getList"
|
|
101
|
+ />
|
|
102
|
+
|
|
103
|
+ <!-- 添加或修改停车场信息对话框 -->
|
|
104
|
+ <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
|
|
105
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
|
106
|
+ <el-form-item label="停车场名称" prop="parkingName">
|
|
107
|
+ <el-input v-model="form.parkingName" placeholder="请输入停车场名称" />
|
|
108
|
+ </el-form-item>
|
|
109
|
+ <el-form-item label="坐标" prop="lngLat">
|
|
110
|
+ <el-input v-model="form.lngLat" @focus="openditu">
|
|
111
|
+ {{ form.lngLat}}
|
|
112
|
+ </el-input>
|
|
113
|
+ </el-form-item>
|
|
114
|
+ <el-form-item label="空余车位" prop="freeSpots">
|
|
115
|
+ <el-input-number v-model="form.freeSpots" controls-position="right" :min="0" placeholder="请输入空余车位" />
|
|
116
|
+ </el-form-item>
|
|
117
|
+
|
|
118
|
+ <el-form-item label="空余充电桩" prop="freeChargers">
|
|
119
|
+ <el-input-number v-model="form.freeChargers" controls-position="right" :min="0" placeholder="请输入空余充电桩" />
|
|
120
|
+ </el-form-item>
|
|
121
|
+
|
|
122
|
+ <el-form-item label="备注" prop="memo">
|
|
123
|
+ <el-input v-model="form.memo" type="textarea" placeholder="请输入内容" />
|
|
124
|
+ </el-form-item>
|
|
125
|
+ </el-form>
|
|
126
|
+ <div slot="footer" class="dialog-footer">
|
|
127
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
128
|
+ <el-button @click="cancel">取 消</el-button>
|
|
129
|
+ </div>
|
|
130
|
+ </el-dialog>
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+ <el-dialog title="地图" :visible.sync="dialogVisible" width="80%">
|
|
135
|
+ <div id='mainMap'>
|
|
136
|
+ <div id="mapDiv" style="width:100%; height:700px">
|
|
137
|
+ </div>
|
|
138
|
+ </div>
|
|
139
|
+ <input type="button" value="清除" @click='clearmian()' />
|
|
140
|
+ <input type="button" value="标点工具" @click='openMarkTool()' />
|
|
141
|
+ <span slot="footer" class="dialog-footer">
|
|
142
|
+ <el-button @click="dialogVisible = false">取 消</el-button>
|
|
143
|
+ <el-button type="primary" @click='tijiao'>确定</el-button>
|
|
144
|
+ </span>
|
|
145
|
+ </el-dialog>
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+ </div>
|
|
149
|
+</template>
|
|
150
|
+
|
|
151
|
+<script>
|
|
152
|
+import { listParkingLot, getParkingLot, delParkingLot, addParkingLot, updateParkingLot, exportParkingLot } from "@/api/info/parkingLot";
|
|
153
|
+
|
|
154
|
+export default {
|
|
155
|
+ name: "ParkingLot",
|
|
156
|
+ data() {
|
|
157
|
+ return {
|
|
158
|
+
|
|
159
|
+ dialogVisible: false,
|
|
160
|
+ map: null,
|
|
161
|
+ handler: null,
|
|
162
|
+ markPoints: '', // 保存标记点的坐标
|
|
163
|
+ // 遮罩层
|
|
164
|
+ loading: true,
|
|
165
|
+ // 导出遮罩层
|
|
166
|
+ exportLoading: false,
|
|
167
|
+ // 选中数组
|
|
168
|
+ ids: [],
|
|
169
|
+ // 非单个禁用
|
|
170
|
+ single: true,
|
|
171
|
+ // 非多个禁用
|
|
172
|
+ multiple: true,
|
|
173
|
+ // 显示搜索条件
|
|
174
|
+ showSearch: true,
|
|
175
|
+ // 总条数
|
|
176
|
+ total: 0,
|
|
177
|
+ // 停车场信息表格数据
|
|
178
|
+ parkingLotList: [],
|
|
179
|
+ // 弹出层标题
|
|
180
|
+ title: "",
|
|
181
|
+ // 是否显示弹出层
|
|
182
|
+ open: false,
|
|
183
|
+ // 查询参数
|
|
184
|
+ queryParams: {
|
|
185
|
+ pageNum: 1,
|
|
186
|
+ pageSize: 10,
|
|
187
|
+ parkingName: null,
|
|
188
|
+ },
|
|
189
|
+ // 表单参数
|
|
190
|
+ form: {},
|
|
191
|
+ // 表单校验
|
|
192
|
+ rules: {
|
|
193
|
+ parkingName: [
|
|
194
|
+ { required: true, message: "停车场名称不能为空", trigger: "blur" }
|
|
195
|
+ ],
|
|
196
|
+ }
|
|
197
|
+ };
|
|
198
|
+ },
|
|
199
|
+ created() {
|
|
200
|
+ this.getList();
|
|
201
|
+ },
|
|
202
|
+ methods: {
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+ // 销毁天地图
|
|
207
|
+ destructionTMap () {
|
|
208
|
+ if (this.map) {
|
|
209
|
+ this.map = null;
|
|
210
|
+ // 直接将节点给删掉
|
|
211
|
+ console.log('1qsad');
|
|
212
|
+
|
|
213
|
+ const parentEl = document.getElementById('mainMap');
|
|
214
|
+ const cahildrenEl1 = document.getElementById('mapDiv');
|
|
215
|
+ if(cahildrenEl1) parentEl.removeChild(cahildrenEl1);
|
|
216
|
+ // 然后再手动将节点加进来
|
|
217
|
+ const newCahildrenEl = document.createElement("div");
|
|
218
|
+ newCahildrenEl.id = 'mapDiv'
|
|
219
|
+ newCahildrenEl.style = 'height: 700px;width: 100%;'
|
|
220
|
+ parentEl.appendChild(newCahildrenEl)
|
|
221
|
+ }
|
|
222
|
+ },
|
|
223
|
+
|
|
224
|
+ tijiao() {
|
|
225
|
+ console.log('多边形数据:', this.form.lngLat);
|
|
226
|
+ console.log('多边形数据:', this.markPoints);
|
|
227
|
+ this.form.lngLat = this.markPoints
|
|
228
|
+ this.destructionTMap()
|
|
229
|
+ this.dialogVisible = false;
|
|
230
|
+ },
|
|
231
|
+
|
|
232
|
+ clearmian() {
|
|
233
|
+ if (this.handler) this.handler.close();
|
|
234
|
+ this.map.clearOverLays(); // 清除所有覆盖物
|
|
235
|
+ this.markPoints = ''; // 清除保存的标记点坐标
|
|
236
|
+ },
|
|
237
|
+
|
|
238
|
+ openMarkTool() {
|
|
239
|
+ console.log("1111111111")
|
|
240
|
+ if (this.handler) this.handler.close(); // 关闭之前的工具
|
|
241
|
+
|
|
242
|
+ this.handler = new T.MarkTool(this.map); // 创建标点工具
|
|
243
|
+ this.handler.open(); // 打开标点工具
|
|
244
|
+
|
|
245
|
+ this.handler.on("mouseup", (e) => {
|
|
246
|
+ let drawData1 = e.currentLnglat.lat+","+e.currentLnglat.lng;
|
|
247
|
+ this.markPoints = drawData1;
|
|
248
|
+ });
|
|
249
|
+
|
|
250
|
+ this.handler.on("close", () => {
|
|
251
|
+ // 标点工具关闭时的处理
|
|
252
|
+ this.handler = null;
|
|
253
|
+ });
|
|
254
|
+ },
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+ openditu() {
|
|
258
|
+ console.log('打开地图对话框');
|
|
259
|
+ this.dialogVisible = true;
|
|
260
|
+ this.$nextTick(() => {
|
|
261
|
+ const T = window.T;
|
|
262
|
+ const zoom = 12;
|
|
263
|
+ this.map = new T.Map('mapDiv');
|
|
264
|
+ this.map.centerAndZoom(new T.LngLat(103.96, 30.66), zoom);
|
|
265
|
+ // 创建标注工具对象
|
|
266
|
+ this.handler = new T.MarkTool(this.map);
|
|
267
|
+ console.log('handler 初始化完成:', this.handler);
|
|
268
|
+ console.log('kanknak1', this.form.lngLat);
|
|
269
|
+ let points = new T.LngLat();
|
|
270
|
+ if (this.form.lngLat) {
|
|
271
|
+ const coordinates = this.form.lngLat.split(',');
|
|
272
|
+ points = new T.LngLat(coordinates[1], coordinates[0]);
|
|
273
|
+ }
|
|
274
|
+ // 创建面对象
|
|
275
|
+ console.log('kanknak2', points);
|
|
276
|
+ const marker = new T.Marker(points);
|
|
277
|
+ // 向地图上添加面
|
|
278
|
+ this.map.addOverLay(marker);
|
|
279
|
+ });
|
|
280
|
+ },
|
|
281
|
+ /** 查询停车场信息列表 */
|
|
282
|
+ getList() {
|
|
283
|
+ this.loading = true;
|
|
284
|
+ listParkingLot(this.queryParams).then(response => {
|
|
285
|
+ this.parkingLotList = response.data.list;
|
|
286
|
+ this.total = response.data.total;
|
|
287
|
+ this.loading = false;
|
|
288
|
+ });
|
|
289
|
+ },
|
|
290
|
+ // 取消按钮
|
|
291
|
+ cancel() {
|
|
292
|
+ this.open = false;
|
|
293
|
+ this.reset();
|
|
294
|
+ },
|
|
295
|
+ // 表单重置
|
|
296
|
+ reset() {
|
|
297
|
+ this.form = {
|
|
298
|
+ parkingId: null,
|
|
299
|
+ parkingName: null,
|
|
300
|
+ lngLat: null,
|
|
301
|
+ freeSpots: null,
|
|
302
|
+ freeChargers: null,
|
|
303
|
+ memo: null
|
|
304
|
+ };
|
|
305
|
+ this.resetForm("form");
|
|
306
|
+ },
|
|
307
|
+ /** 搜索按钮操作 */
|
|
308
|
+ handleQuery() {
|
|
309
|
+ this.queryParams.pageNum = 1;
|
|
310
|
+ this.getList();
|
|
311
|
+ },
|
|
312
|
+ /** 重置按钮操作 */
|
|
313
|
+ resetQuery() {
|
|
314
|
+ this.resetForm("queryForm");
|
|
315
|
+ this.handleQuery();
|
|
316
|
+ },
|
|
317
|
+ // 多选框选中数据
|
|
318
|
+ handleSelectionChange(selection) {
|
|
319
|
+ this.ids = selection.map(item => item.parkingId)
|
|
320
|
+ this.single = selection.length!==1
|
|
321
|
+ this.multiple = !selection.length
|
|
322
|
+ },
|
|
323
|
+ /** 新增按钮操作 */
|
|
324
|
+ handleAdd() {
|
|
325
|
+ this.reset();
|
|
326
|
+ this.open = true;
|
|
327
|
+ this.title = "添加停车场信息";
|
|
328
|
+ },
|
|
329
|
+ /** 修改按钮操作 */
|
|
330
|
+ handleUpdate(row) {
|
|
331
|
+ this.reset();
|
|
332
|
+ const parkingId = row.parkingId || this.ids
|
|
333
|
+ getParkingLot(parkingId).then(response => {
|
|
334
|
+ this.form = response.data;
|
|
335
|
+ this.open = true;
|
|
336
|
+ this.title = "修改停车场信息";
|
|
337
|
+ });
|
|
338
|
+ },
|
|
339
|
+ /** 提交按钮 */
|
|
340
|
+ submitForm() {
|
|
341
|
+ this.$refs["form"].validate(valid => {
|
|
342
|
+ if (valid) {
|
|
343
|
+ if (this.form.parkingId != null) {
|
|
344
|
+ updateParkingLot(this.form).then(response => {
|
|
345
|
+ this.$modal.msgSuccess("修改成功");
|
|
346
|
+ this.open = false;
|
|
347
|
+ this.getList();
|
|
348
|
+ });
|
|
349
|
+ } else {
|
|
350
|
+ addParkingLot(this.form).then(response => {
|
|
351
|
+ this.$modal.msgSuccess("新增成功");
|
|
352
|
+ this.open = false;
|
|
353
|
+ this.getList();
|
|
354
|
+ });
|
|
355
|
+ }
|
|
356
|
+ }
|
|
357
|
+ });
|
|
358
|
+ },
|
|
359
|
+ /** 删除按钮操作 */
|
|
360
|
+ handleDelete(row) {
|
|
361
|
+ const parkingIds = row.parkingId || this.ids;
|
|
362
|
+ this.$modal.confirm('是否确认删除停车场信息编号为"' + parkingIds + '"的数据项?').then(function() {
|
|
363
|
+ return delParkingLot(parkingIds);
|
|
364
|
+ }).then(() => {
|
|
365
|
+ this.getList();
|
|
366
|
+ this.$modal.msgSuccess("删除成功");
|
|
367
|
+ }).catch(() => {});
|
|
368
|
+ },
|
|
369
|
+ /** 导出按钮操作 */
|
|
370
|
+ handleExport() {
|
|
371
|
+ const queryParams = this.queryParams;
|
|
372
|
+ this.$modal.confirm('是否确认导出所有停车场信息数据项?').then(() => {
|
|
373
|
+ this.exportLoading = true;
|
|
374
|
+ return exportParkingLot(queryParams);
|
|
375
|
+ }).then(response => {
|
|
376
|
+ this.$download.name(response.msg);
|
|
377
|
+ this.exportLoading = false;
|
|
378
|
+ }).catch(() => {});
|
|
379
|
+ }
|
|
380
|
+ }
|
|
381
|
+};
|
|
382
|
+</script>
|