Bläddra i källkod

增加停车场及轮班人员

liaoyitao 3 månader sedan
förälder
incheckning
3065b8e5bc

+ 53 - 0
src/api/info/parkingLot.js

@@ -0,0 +1,53 @@
1
+import request from '@/utils/request'
2
+
3
+// 查询停车场信息列表
4
+export function listParkingLot(query) {
5
+  return request({
6
+    url: '/info/parkingLot/list',
7
+    method: 'get',
8
+    params: query
9
+  })
10
+}
11
+
12
+// 查询停车场信息详细
13
+export function getParkingLot(parkingId) {
14
+  return request({
15
+    url: '/info/parkingLot/' + parkingId,
16
+    method: 'get'
17
+  })
18
+}
19
+
20
+// 新增停车场信息
21
+export function addParkingLot(data) {
22
+  return request({
23
+    url: '/info/parkingLot',
24
+    method: 'post',
25
+    data: data
26
+  })
27
+}
28
+
29
+// 修改停车场信息
30
+export function updateParkingLot(data) {
31
+  return request({
32
+    url: '/info/parkingLot',
33
+    method: 'put',
34
+    data: data
35
+  })
36
+}
37
+
38
+// 删除停车场信息
39
+export function delParkingLot(parkingId) {
40
+  return request({
41
+    url: '/info/parkingLot/' + parkingId,
42
+    method: 'delete'
43
+  })
44
+}
45
+
46
+// 导出停车场信息
47
+export function exportParkingLot(query) {
48
+  return request({
49
+    url: '/info/parkingLot/export',
50
+    method: 'get',
51
+    params: query
52
+  })
53
+}

+ 53 - 0
src/api/info/shiftPersonnel.js

@@ -0,0 +1,53 @@
1
+import request from '@/utils/request'
2
+
3
+// 查询轮班人员信息列表
4
+export function listShiftPersonnel(query) {
5
+  return request({
6
+    url: '/info/shiftPersonnel/list',
7
+    method: 'get',
8
+    params: query
9
+  })
10
+}
11
+
12
+// 查询轮班人员信息详细
13
+export function getShiftPersonnel(personnelId) {
14
+  return request({
15
+    url: '/info/shiftPersonnel/' + personnelId,
16
+    method: 'get'
17
+  })
18
+}
19
+
20
+// 新增轮班人员信息
21
+export function addShiftPersonnel(data) {
22
+  return request({
23
+    url: '/info/shiftPersonnel',
24
+    method: 'post',
25
+    data: data
26
+  })
27
+}
28
+
29
+// 修改轮班人员信息
30
+export function updateShiftPersonnel(data) {
31
+  return request({
32
+    url: '/info/shiftPersonnel',
33
+    method: 'put',
34
+    data: data
35
+  })
36
+}
37
+
38
+// 删除轮班人员信息
39
+export function delShiftPersonnel(personnelId) {
40
+  return request({
41
+    url: '/info/shiftPersonnel/' + personnelId,
42
+    method: 'delete'
43
+  })
44
+}
45
+
46
+// 导出轮班人员信息
47
+export function exportShiftPersonnel(query) {
48
+  return request({
49
+    url: '/info/shiftPersonnel/export',
50
+    method: 'get',
51
+    params: query
52
+  })
53
+}

+ 382 - 0
src/views/info/parkingLot/index.vue

@@ -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>

+ 357 - 0
src/views/info/shiftPersonnel/index.vue

@@ -0,0 +1,357 @@
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="parkingId">
5
+        <template>
6
+          <el-select v-model="queryParams.parkingId" filterable placeholder="请选择">
7
+            <el-option
8
+              v-for="item in parkingLotList"
9
+              :key="item.parkingId"
10
+              :label="item.parkingName"
11
+              :value="item.parkingId">
12
+            </el-option>
13
+          </el-select>
14
+        </template>
15
+      </el-form-item>
16
+      <el-form-item label="轮班人员名字" prop="personnelName">
17
+        <el-input
18
+          v-model="queryParams.personnelName"
19
+          placeholder="请输入轮班人员名字"
20
+          clearable
21
+          size="small"
22
+          @keyup.enter.native="handleQuery"
23
+        />
24
+      </el-form-item>
25
+      <el-form-item label="值班开始时间" prop="startTime">
26
+        <el-time-picker clearable size="small"
27
+                        v-model="queryParams.startTime"
28
+                        value-format="HH:mm:ss"
29
+                        :picker-options="{
30
+                              selectableRange: '00:00:00 - 23:59:59'
31
+                            }"
32
+                        placeholder="选择值班开始时间">
33
+        </el-time-picker>
34
+      </el-form-item>
35
+      <el-form-item label="值班结束时间" prop="endTime">
36
+        <el-time-picker clearable size="small"
37
+                        v-model="queryParams.endTime"
38
+                        value-format="HH:mm:ss"
39
+                        :picker-options="{
40
+                              selectableRange: '00:00:00 - 23:59:59'
41
+                            }"
42
+                        placeholder="选择值班结束时间">
43
+        </el-time-picker>
44
+      </el-form-item>
45
+      <el-form-item>
46
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
47
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
48
+      </el-form-item>
49
+    </el-form>
50
+
51
+    <el-row :gutter="10" class="mb8">
52
+      <el-col :span="1.5">
53
+        <el-button
54
+          type="primary"
55
+          plain
56
+          icon="el-icon-plus"
57
+          size="mini"
58
+          @click="handleAdd"
59
+          v-hasPermi="['info:shiftPersonnel:add']"
60
+        >新增</el-button>
61
+      </el-col>
62
+      <el-col :span="1.5">
63
+        <el-button
64
+          type="success"
65
+          plain
66
+          icon="el-icon-edit"
67
+          size="mini"
68
+          :disabled="single"
69
+          @click="handleUpdate"
70
+          v-hasPermi="['info:shiftPersonnel:edit']"
71
+        >修改</el-button>
72
+      </el-col>
73
+      <el-col :span="1.5">
74
+        <el-button
75
+          type="danger"
76
+          plain
77
+          icon="el-icon-delete"
78
+          size="mini"
79
+          :disabled="multiple"
80
+          @click="handleDelete"
81
+          v-hasPermi="['info:shiftPersonnel:remove']"
82
+        >删除</el-button>
83
+      </el-col>
84
+      <el-col :span="1.5">
85
+        <el-button
86
+          type="warning"
87
+          plain
88
+          icon="el-icon-download"
89
+          size="mini"
90
+          :loading="exportLoading"
91
+          @click="handleExport"
92
+          v-hasPermi="['info:shiftPersonnel:export']"
93
+        >导出</el-button>
94
+      </el-col>
95
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
96
+    </el-row>
97
+
98
+    <el-table v-loading="loading" :data="shiftPersonnelList" @selection-change="handleSelectionChange">
99
+      <el-table-column type="selection" width="55" align="center" />
100
+      <el-table-column label="轮班人员id" align="center" prop="personnelId" />
101
+      <el-table-column label="停车场" align="center">
102
+        <template slot-scope="scope">
103
+          {{ getParkingName(scope.row.parkingId) }}
104
+        </template>
105
+      </el-table-column>
106
+      <el-table-column label="轮班人员名字" align="center" prop="personnelName" />
107
+      <el-table-column label="值班开始时间" align="center" prop="startTime" />
108
+      <el-table-column label="值班结束时间" align="center" prop="endTime" />
109
+      <el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="140">
110
+        <template slot-scope="scope">
111
+          <el-button
112
+            size="mini"
113
+            type="text"
114
+            icon="el-icon-edit"
115
+            @click="handleUpdate(scope.row)"
116
+            v-hasPermi="['info:shiftPersonnel:edit']"
117
+          >修改</el-button>
118
+          <el-button
119
+            size="mini"
120
+            type="text"
121
+            icon="el-icon-delete"
122
+            @click="handleDelete(scope.row)"
123
+            v-hasPermi="['info:shiftPersonnel:remove']"
124
+          >删除</el-button>
125
+        </template>
126
+      </el-table-column>
127
+    </el-table>
128
+
129
+    <pagination
130
+      v-show="total>0"
131
+      :total="total"
132
+      :page.sync="queryParams.pageNum"
133
+      :limit.sync="queryParams.pageSize"
134
+      @pagination="getList"
135
+    />
136
+
137
+    <!-- 添加或修改轮班人员信息对话框 -->
138
+    <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
139
+      <el-form ref="form" :model="form" :rules="rules" label-width="120px">
140
+        <el-form-item label="停车场" prop="parkingId">
141
+          <template>
142
+            <el-select v-model="form.parkingId" filterable placeholder="请选择">
143
+              <el-option
144
+                v-for="item in parkingLotList"
145
+                :key="item.parkingId"
146
+                :label="item.parkingName"
147
+                :value="item.parkingId">
148
+              </el-option>
149
+            </el-select>
150
+          </template>
151
+        </el-form-item>
152
+        <el-form-item label="轮班人员名字" prop="personnelName">
153
+          <el-input v-model="form.personnelName" placeholder="请输入轮班人员名字" />
154
+        </el-form-item>
155
+        <el-form-item label="值班开始时间" prop="startTime">
156
+          <el-time-picker clearable size="small"
157
+                          v-model="form.startTime"
158
+                          :picker-options="{
159
+                      selectableRange: '00:00:00 - 23:59:59'
160
+                    }"
161
+                          value-format="HH:mm:ss"
162
+                          placeholder="选择值班开始时间">
163
+          </el-time-picker>
164
+        </el-form-item>
165
+        <el-form-item label="值班结束时间" prop="endTime">
166
+          <el-time-picker clearable size="small"
167
+                          v-model="form.endTime"
168
+                          :picker-options="{
169
+                      selectableRange: '00:00:00 - 23:59:59'
170
+                    }"
171
+                          value-format="HH:mm:ss"
172
+                          placeholder="选择值班结束时间">
173
+          </el-time-picker>
174
+        </el-form-item>
175
+        <el-form-item label="备注" prop="memo">
176
+          <el-input v-model="form.memo" placeholder="请输入备注" />
177
+        </el-form-item>
178
+      </el-form>
179
+      <div slot="footer" class="dialog-footer">
180
+        <el-button type="primary" @click="submitForm">确 定</el-button>
181
+        <el-button @click="cancel">取 消</el-button>
182
+      </div>
183
+    </el-dialog>
184
+  </div>
185
+</template>
186
+
187
+<script>
188
+import { listShiftPersonnel, getShiftPersonnel, delShiftPersonnel, addShiftPersonnel, updateShiftPersonnel, exportShiftPersonnel } from "@/api/info/shiftPersonnel";
189
+import { listParkingLot, getParkingLot, delParkingLot, addParkingLot, updateParkingLot, exportParkingLot } from "@/api/info/parkingLot";
190
+
191
+export default {
192
+  name: "ShiftPersonnel",
193
+  data() {
194
+    return {
195
+      parkingLotList: [],
196
+      // 遮罩层
197
+      loading: true,
198
+      // 导出遮罩层
199
+      exportLoading: false,
200
+      // 选中数组
201
+      ids: [],
202
+      // 非单个禁用
203
+      single: true,
204
+      // 非多个禁用
205
+      multiple: true,
206
+      // 显示搜索条件
207
+      showSearch: true,
208
+      // 总条数
209
+      total: 0,
210
+      // 轮班人员信息表格数据
211
+      shiftPersonnelList: [],
212
+      // 弹出层标题
213
+      title: "",
214
+      // 是否显示弹出层
215
+      open: false,
216
+      // 查询参数
217
+      queryParams: {
218
+        pageNum: 1,
219
+        pageSize: 10,
220
+        parkingId: null,
221
+        personnelName: null,
222
+        startTime: null,
223
+        endTime: null,
224
+      },
225
+      queryParkingLotParams: {
226
+        pageNum: 1,
227
+        pageSize: 999999,
228
+      },
229
+      // 表单参数
230
+      form: {},
231
+      // 表单校验
232
+      rules: {
233
+        personnelId: [
234
+          { required: true, message: "轮班人员id不能为空", trigger: "blur" }
235
+        ],
236
+      }
237
+    };
238
+  },
239
+  created() {
240
+    this.getList();
241
+    this.getParkingLotList()
242
+  },
243
+  methods: {
244
+
245
+    getParkingName(parkingId){
246
+      const parkingLot = this.parkingLotList.find(b => b.parkingId === parkingId)
247
+      return parkingLot ? parkingLot.parkingName : ''
248
+    },
249
+
250
+    getParkingLotList(){
251
+      listParkingLot(this.queryParkingLotParams).then(response => {
252
+        this.parkingLotList = response.data.list;
253
+      });
254
+    },
255
+
256
+    /** 查询轮班人员信息列表 */
257
+    getList() {
258
+      this.loading = true;
259
+      listShiftPersonnel(this.queryParams).then(response => {
260
+        this.shiftPersonnelList = response.data.list;
261
+        this.total = response.data.total;
262
+        this.loading = false;
263
+      });
264
+    },
265
+    // 取消按钮
266
+    cancel() {
267
+      this.open = false;
268
+      this.reset();
269
+    },
270
+    // 表单重置
271
+    reset() {
272
+      this.form = {
273
+        personnelId: null,
274
+        parkingId: null,
275
+        personnelName: null,
276
+        startTime: null,
277
+        endTime: null,
278
+        memo: null
279
+      };
280
+      this.resetForm("form");
281
+    },
282
+    /** 搜索按钮操作 */
283
+    handleQuery() {
284
+      this.queryParams.pageNum = 1;
285
+      this.getList();
286
+    },
287
+    /** 重置按钮操作 */
288
+    resetQuery() {
289
+      this.resetForm("queryForm");
290
+      this.handleQuery();
291
+    },
292
+    // 多选框选中数据
293
+    handleSelectionChange(selection) {
294
+      this.ids = selection.map(item => item.personnelId)
295
+      this.single = selection.length!==1
296
+      this.multiple = !selection.length
297
+    },
298
+    /** 新增按钮操作 */
299
+    handleAdd() {
300
+      this.reset();
301
+      this.open = true;
302
+      this.title = "添加轮班人员信息";
303
+    },
304
+    /** 修改按钮操作 */
305
+    handleUpdate(row) {
306
+      this.reset();
307
+      const personnelId = row.personnelId || this.ids
308
+      getShiftPersonnel(personnelId).then(response => {
309
+        this.form = response.data;
310
+        this.open = true;
311
+        this.title = "修改轮班人员信息";
312
+      });
313
+    },
314
+    /** 提交按钮 */
315
+    submitForm() {
316
+      this.$refs["form"].validate(valid => {
317
+        if (valid) {
318
+          if (this.form.personnelId != null) {
319
+            updateShiftPersonnel(this.form).then(response => {
320
+              this.$modal.msgSuccess("修改成功");
321
+              this.open = false;
322
+              this.getList();
323
+            });
324
+          } else {
325
+            addShiftPersonnel(this.form).then(response => {
326
+              this.$modal.msgSuccess("新增成功");
327
+              this.open = false;
328
+              this.getList();
329
+            });
330
+          }
331
+        }
332
+      });
333
+    },
334
+    /** 删除按钮操作 */
335
+    handleDelete(row) {
336
+      const personnelIds = row.personnelId || this.ids;
337
+      this.$modal.confirm('是否确认删除轮班人员信息编号为"' + personnelIds + '"的数据项?').then(function() {
338
+        return delShiftPersonnel(personnelIds);
339
+      }).then(() => {
340
+        this.getList();
341
+        this.$modal.msgSuccess("删除成功");
342
+      }).catch(() => {});
343
+    },
344
+    /** 导出按钮操作 */
345
+    handleExport() {
346
+      const queryParams = this.queryParams;
347
+      this.$modal.confirm('是否确认导出所有轮班人员信息数据项?').then(() => {
348
+        this.exportLoading = true;
349
+        return exportShiftPersonnel(queryParams);
350
+      }).then(response => {
351
+        this.$download.name(response.msg);
352
+        this.exportLoading = false;
353
+      }).catch(() => {});
354
+    }
355
+  }
356
+};
357
+</script>