public.vue
12.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<template>
<div>
<a-card class="general-card" title="查询表格">
<!-- 表单搜索 -->
<a-row>
<a-col :flex="1">
<a-form :model="searchModel" :label-col-props="{ span: 6 }" :wrapper-col-props="{ span: 18 }"
label-align="left">
<a-row :gutter="16">
<a-col :span="8">
<a-form-item field="entId" label="企业ID">
<a-input v-model="searchModel.entId" placeholder="请输入企业ID" @press-enter="search" />
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="parentId" label="上级ID">
<a-input v-model="searchModel.parentId" placeholder="请输入上级ID" @press-enter="search" />
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="groupId" label="分组ID">
<a-input v-model="searchModel.groupId" placeholder="请输入分组ID" @press-enter="search" />
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="stationName" label="电站名称">
<a-input v-model="searchModel.stationName" placeholder="请输入电站名称" @press-enter="search" />
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="stationSn" label="电站编号">
<a-input v-model="searchModel.stationSn" placeholder="请输入电站编号" @press-enter="search" />
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="groupOrStation" label="记录类型">
<a-select v-model="searchModel.groupOrStation" placeholder="请选择记录类型">
<a-option v-for="dict in sys_protocol_code" :key="dict.value" :label="dict.label"
:value="dict.value" />
</a-select>
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="logicCode" label="逻辑代码">
<a-input v-model="searchModel.logicCode" :max-length="64" placeholder="请输入逻辑代码" @press-enter="search" />
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="stopFlag" label="启用状态">
<a-select v-model="searchModel.stopFlag" placeholder="请选择是否停用">
<a-option v-for="dict in sys_normal_disable" :key="dict.value" :label="dict.label"
:value="dict.value" />
</a-select>
</a-form-item>
</a-col>
<a-col :span="8">
<a-form-item field="deleteFlag" label="是否删除">
<a-input v-model="searchModel.deleteFlag" placeholder="请输入是否删除" @press-enter="search" />
</a-form-item>
</a-col>
</a-row>
</a-form>
</a-col>
<a-divider style="height: 84px" direction="vertical" />
<a-col :flex="'86px'" style="text-align: right">
<a-space direction="vertical" :size="18">
<a-button type="primary" @click="search">
<template #icon>
<icon-search />
</template>
搜索
</a-button>
<a-button @click="reset">
<template #icon>
<icon-refresh />
</template>
重置
</a-button>
</a-space>
</a-col>
</a-row>
<!-- 分割线 -->
<a-divider style="margin-top: 0" />
<!-- 按钮 -->
<a-row style="margin-bottom: 16px">
<a-col :span="12">
<a-space>
<a-button type="primary" @click="handleAdd">
<template #icon>
<icon-plus />
</template>
新建
</a-button>
<a-upload action="/">
<template #upload-button>
<a-button>
批量操作
</a-button>
</template>
</a-upload>
</a-space>
</a-col>
<a-col :span="12" style="display: flex; align-items: center; justify-content: end">
<a-button>
<template #icon>
<icon-download />
</template>
下载
</a-button></a-col>
</a-row>
<!-- 表格内容 -->
<a-table row-key="id" :loading="loading" :pagination="pagination" :columns="columns"
:data="renderData" @page-change="onPageChange" @page-size-change="onPageSizeChange" show-page-size>
<template #operate="{ record }">
<a-button size="small" type="text" status="success" @click="handleUpdate(record)">编辑</a-button>
<a-button size="small" type="text" status="danger" @click="handleDelete(record)">删除
</a-button>
</template>
</a-table>
<!-- 删除弹框 start -->
<a-modal width="400px" v-model:visible="delModalModel.visible" class="modal-box">
<template #title>
<icon-close-circle size="18" style="color:rgb(var(--red-6)); margin-right: 5px;" />
确认提示
</template>
<div style="text-align: center;">是否确认删除名称为"{{ delModalModel.title }}"的数据项?</div>
<template #footer>
<div style="text-align: center">
<a-space>
<a-button type="primary" status="danger" @click="handleDelModelCancle">取消</a-button>
<a-button type="primary" @click="handleDelModelOk">确认</a-button>
</a-space>
</div>
</template>
</a-modal>
<!-- 添加右弹层 start -->
</a-card>
</div>
</template>
<script setup lang="ts">
import { computed, getCurrentInstance, onMounted, reactive, ref } from 'vue';
import useLoading from '@/hooks/loading';
import { notification } from "@/hooks/my-design";
import { listStation, getStation, delStation, addStation, updateStation } from "@/api/system/station";
import { BasePagination } from '@/api/common';
import { FormInstance } from '@arco-design/web-vue/es/form';
/*************************** 变量区域 begin ***************************/
//生成查询条件对象
const generateSearchModel = () => {
return {
entId: '',
parentId: '',
groupId: '',
stationName: '',
stationSn: '',
groupOrStation: '',
stationType: '',
logicCode: '',
stopFlag: '',
deleteFlag: ''
};
};
//******* 这里写动态获取下拉列表 start ******
const proxy = getCurrentInstance()?.appContext.config.globalProperties;
const { sys_protocol_code,sys_normal_disable } = proxy?.useDict("sys_protocol_code","sys_normal_disable");
//******* 这里写动态获取下拉列表 end ******
//查询表单对象
const searchModel = ref(generateSearchModel());
//加载中
const { loading, setLoading } = useLoading(true);
//表格分页参数
const pagination: any = reactive({ ...BasePagination()});
//设置表格列
const columns = computed<any[]>(() => [
{
title: "企业ID",
dataIndex: 'entId',
},
{
title: "上级ID",
dataIndex: 'parentId',
},
{
title: "分组ID",
dataIndex: 'groupId',
},
{
title: "电站名称",
dataIndex: 'stationName',
},
{
title: "电站编号",
dataIndex: 'stationSn',
},
{
title: "记录类型(1分组 2站点)",
dataIndex: 'groupOrStation',
},
{
title: "电站类型(1配电 2光伏)",
dataIndex: 'stationType',
},
{
title: "逻辑代码(企业+站点)",
dataIndex: 'logicCode',
},
{
title: "建站时间",
dataIndex: 'buildSiteTime',
},
{
title: "电压等级",
dataIndex: 'voltageLevel',
},
{
title: "装机容量",
dataIndex: 'sationVolume',
},
{
title: "方位角度",
dataIndex: 'azimuth',
},
{
title: "组件倾角",
dataIndex: 'dipAngle',
},
{
title: "投运时间",
dataIndex: 'useSiteTime',
},
{
title: "电站坐标",
dataIndex: 'coordinate',
},
{
title: "电站地址",
dataIndex: 'stationAddress',
},
{
title: "电站照片",
dataIndex: 'picUrl',
},
{
title: "电站简介",
dataIndex: 'description',
},
{
title: "联系人员",
dataIndex: 'linkName',
},
{
title: "联系电话",
dataIndex: 'linkPhone',
},
{
title: "报警开关",
dataIndex: 'openAlarm',
},
{
title: "显示顺序",
dataIndex: 'orderNum',
},
{
title: "备注说明",
dataIndex: 'remark',
},
{
title: "启用状态(0正常 1停用)",
dataIndex: 'stopFlag',
},
{
title: "操作",
dataIndex: 'operate',
slotName: 'operate',
}
]);
//表格数据
const renderData = ref<any[]>([]);
//删除弹框
const generateDelModalModel = () => {
return {
visible: false,
title: "",
id: 0
};
};
//删除弹框模型
const delModalModel = ref(generateDelModalModel());
const formRef = ref<FormInstance>();
//生成表单模型
const generateFormDrawerModel = () => {
return {
visible: false,
rules: {
},
formModel: {
//如果某些字段有默认,请在此处自行设定
id: null
}
};
};
//表单模型
const formDrawer = ref(generateFormDrawerModel());
/*************************** 变量区域 end ***************************/
/*************************** 方法区域 begin ***************************/
//重置查询条件
const search = () => {
pagination.current = 1 ;
fetchData();
}
//重置查询条件
const reset = () => {
searchModel.value = generateSearchModel();
}
/**
* 表格页码发生变化
* @param val 变更值
*/
const onPageChange = (val: number) => {
pagination.current = val;
fetchData();
}
/**
* 表格每页数量发生变化
* @param val 变更值
*/
const onPageSizeChange = (val: number) => {
pagination.pageSize = val;
fetchData();
}
/**
* 新增数据
* @param row 数据行
*/
const handleAdd = () => {
formDrawer.value.visible = true;
}
/**
* 编辑数据
* @param row 数据行
*/
const handleUpdate = async (record: any) => {
let result = await getStation(record.id);
if (result.code == 200) {
formDrawer.value.formModel = result.data;
formDrawer.value.visible = true;
}
}
/**
* 删除数据
* @param record 数据行
*/
const handleDelete = (record: any) => {
delModalModel.value.visible = true;
delModalModel.value.id = record.id,
delModalModel.value.title = record.postName;
}
/**
* 删除提示弹框取消
*/
const handleDelModelCancle = () => {
delModalModel.value = generateDelModalModel();
}
/**
* 删除提示弹框确认
*/
const handleDelModelOk = async () => {
let result = await delStation(delModalModel.value.id);
notification(result);
fetchData();
}
/**
* 提交表单
*/
const handleSubmitForm = async () => {
const validate = await formRef.value?.validate();
if (!validate) {
let result;
if (formDrawer.value.formModel.id == 0) {
result = await addStation(formDrawer.value.formModel);
} else {
result = await updateStation(formDrawer.value.formModel);
}
notification(result);
fetchData();
}
}
/**
* 表单取消
*/
const handleFormCancel = () => {
formDrawer.value = generateFormDrawerModel();
}
/**
* 输入查询
*/
const handleQuery = () => {
//todo 查询
}
/**
* 日期选择器-值改变
* @param dateString 日期字符串数组
* @param date 日期数组
*/
const onRangePickerChange = (dateString: any, date: any) => {
console.log("onRangePickerChange", dateString, date)
}
/**
* 日期选择器-选择日期
* @param dateString 日期字符串数组
* @param date 日期数组
*/
const onRangePickerSelect = (dateString: any, date: any) => {
console.log("onRangePickerSelect", dateString, date)
}
/**
* 日期选择器-确认
* @param dateString 日期字符串数组
* @param date 日期数组
*/
const onRangePickerOk = (dateString: any, date: any) => {
console.log("onRangePickerOk", dateString, date)
console.log(formDrawer.value.formModel.rangeDate)
}
/**
* 查询表格数据
*/
const fetchData = async () => {
setLoading(true);
try {
const res = await listStation({
pageSize: pagination.pageSize,
pageNum: pagination.current,
...searchModel.value,
});
renderData.value = res.rows;
pagination.total = res.total;
} catch (err) {
// you can report use errorHandler or other
} finally {
setLoading(false);
}
};
/*************************** 方法区域 end ***************************/
onMounted(() => {
fetchData();
})
</script>
<style scoped></style>