index.vue
11.8 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
<!--
* 功能:参数配置
* 作者:王晓明
* 日期:2023-11-7
-->
<template>
<div>
<a-card class="content">
<!-- 表单搜索 -->
<a-row>
<a-col :flex="1" style="margin-top: 4px;">
<a-form :model="searchParams" :label-col-props="{ span: 6 }" :wrapper-col-props="{ span: 18 }"
label-align="left" auto-label-width>
<a-row :gutter="16">
<a-col :span="8">
<a-form-item field="dictName" :label="$t('manage.system.dictionaryName')">
<a-input v-model="searchParams.dictName" :placeholder="$t('global.fuzzySearch')" allow-clear />
</a-form-item>
</a-col>
<a-col :span="8">
<a-space direction="vertical" :size="18">
<a-button type="primary" @click="search">
<template #icon>
<icon-search />
</template>
{{ $t('global.search') }}
</a-button>
</a-space>
</a-col>
</a-row>
</a-form>
</a-col>
</a-row>
<!-- 分割线 -->
<a-divider style="margin-top: 0" />
<!-- 操作条 start-->
<a-row class="operationBar">
<a-col :span="12">
<a-space :size="15">
<a-button type="primary" @click="addDeviceClick">
<template #icon>
<icon-plus />
</template>
{{ $t('manage.system.newDictionary') }}
</a-button>
</a-space>
</a-col>
</a-row>
<!-- 操作条 end-->
<!-- 表格 start-->
<a-table row-key="id" :loading="loading" :bordered="{ wrapper: true, cell: true }" :pagination="pagination"
:columns="tabColumns" :data="renderData" @page-change="onPageChange" @page-size-change="onPageSizeChange">
<template #stopFlag="{ record }" :scroll="{x:1200}">
<stop-flag :value="record.stopFlag" />
</template>
<template #operate="{ record }">
<a-button size="small" type="text" @click="
handleStopFlagClick(record)
" :status="record.stopFlag == 1 ? 'normal' : 'warning'">
{{ record.stopFlag == 0 ? $t('global.forbidden') : $t('global.enable')}}
</a-button>
<a-button size="small" type="text" @click="editDeviceClick(record)">
{{ $t('global.edit') }}
</a-button>
<a-button size="small" type="text" status="danger" @click="handleDelete(record)">
{{ $t('global.delete') }}
</a-button>
<a-button size="small" type="text" status="success" @click="() => {
router.push({
path: '/manage/system/dictionaryValue', query: {
dictType: record.dictSn
}
});
}
">{{ $t('manage.system.list') }}
</a-button>
</template>
</a-table>
<!-- 表格 end-->
<!-- 删除弹框 start -->
<a-modal width="450px" v-model:visible="operateModalModel.visible">
<template #title>
<icon-close-circle v-if="operateModalModel.type == 1" size="18"
style="color: rgb(var(--red-6)); margin-right: 5px" />
<icon-exclamation-circle v-else size="18" style="color: rgb(var(--orange-6)); margin-right: 5px" />
确认提示
</template>
<div style="text-align: center;">是否确认{{ operateModalModel.title }}名称为【{{ operateModalModel.name }}】的数据项?</div>
<template #footer>
<div style="text-align: center">
<a-space>
<a-button type="primary" status="danger" @click="handleOperateModelCancle">取消</a-button>
<a-button type="primary" @click="handleOperateModelOk">确认</a-button>
</a-space>
</div>
</template>
</a-modal>
<!-- 编辑页 start-->
<a-drawer :title="drawerTitle" :width="750" :visible="editDrawerVisible" :ok-loading="editLoading" @ok="editDrawerHandleOk"
@cancel="editDrawerHandleCancel" :mask-closable="false" :closable="false">
<a-spin style="width:100%;height:100%" :loading="editLoading">
<a-form auto-label-width ref="formRef" class="form" :model="form" :rules="formRules">
<a-form-item field="dictName" :label="$t('manage.system.dictionaryName')">
<a-input v-model="form.dictName" />
</a-form-item>
<a-form-item field="dictSn" :label="$t('manage.system.dictionaryParameters')">
<a-input v-model="form.dictSn" />
<template #extra>
<span>
<i class="icon" :style="{ color: 'rgb(var(--primary-6))' }"><icon-exclamation-circle-fill /></i>
{{$t('manage.system.keyValue')}}:sys_user_sex
</span>
</template>
</a-form-item>
<a-form-item field="stopFlag" :label="$t('global.status')">
<a-switch :checked-value="0" :unchecked-value="1" v-model="form.stopFlag"><template
#checked>{{ $t('global.enable') }}</template><template #unchecked>{{ $t('global.forbidden') }}</template></a-switch>
</a-form-item>
<a-form-item field="remark" :label="$t('manage.system.dictionaryExplanation')">
<a-textarea :placeholder="$t('manage.system.inputExplanation')" :max-length="200" v-model="form.remark" allow-clear />
</a-form-item>
</a-form>
</a-spin>
</a-drawer>
<!-- 编辑页 end-->
</a-card>
</div>
</template>
<script setup lang="ts">
import { ref, reactive, computed, onMounted } from "vue";
import { BasePagination } from "@/api/common";
import {
listDict,
addDict,
updateDict,
optionselect,
delDict,
changeDictStatus,
} from "@/api/manage/system/dictionary";
import useLoading from "@/hooks/loading";
import { FormInstance, TableColumnData, Notification } from "@arco-design/web-vue";
import { notification } from "@/hooks/my-design";
import router from "@/router";
//删除弹框
const generateOperateModalModel = () => {
return {
//0 状态 1删除
type: 0,
visible: false,
title: "",
id: 0,
value: 0,
name: ""
};
};
//删除弹框模型
const operateModalModel = ref(generateOperateModalModel());
//编辑框开关
const editDrawerVisible = ref(false);
// 编辑框loading
const editLoading = ref(false);
//加载中
const { loading, setLoading } = useLoading(true);
// 记录字典下拉项信息
const selectOptions = ref<any>([])
// 记录抽屉的标题名称
const drawerTitle = ref<string>("编辑")
// 获取字典下拉数据
const getOptionList = async () => {
const { data } = await optionselect()
selectOptions.value = data
}
//编辑页抽屉开关
const editDeviceClick = (row: any) => {
getOptionList()
editDrawerVisible.value = true;
form.value = row
drawerTitle.value = "编辑"
};
// 表单校验规则
const formRules = reactive({
dictName: [
{
required: true,
message: "字典名称必填"
}
],
dictSn: [
{
required: true,
message: "字典参数必填"
}],
remark: [{
required: true,
message: "字典说明必填"
}]
})
//编辑页输入框
const form = ref({
createBy: "",
createTime: "",
deleteFlag: 0,
dictName: "",
dictSn: "",
id: 0,
params: {},
remark: "",
stopFlag: 0,
updateBy: "",
updateTime: ""
});
const formRef = ref<FormInstance>();
//编辑确认
const editDrawerHandleOk = async () => {
const valid = await formRef.value?.validate();
if (!valid) {
editLoading.value = true;
try {
let res = null;
if (form.value.id) {
// 编辑
res = await updateDict(form.value)
} else {
// 新增
res = await addDict(form.value)
}
if (res.code === 200) {
//调用后端添加接口
editDrawerVisible.value = false;
pagination.current = 1;
fetchData();
}else{
Notification.error({
title: '提示',
content: res.msg,
});
}
}catch (e) {
console.error(e);
}finally {
editLoading.value = false;
}
}
};
//编辑取消
const editDrawerHandleCancel = () => {
editDrawerVisible.value = false;
formRef.value?.resetFields();
fetchData();
};
//添加分组
const addDeviceClick = async () => {
getOptionList()
editDrawerVisible.value = true;
drawerTitle.value = "新增";
await formRef.value?.resetFields();
};
//生成查询条件
const generateFormModel = () => {
return {
dictName: "",
};
};
//查询项
const searchParams = ref(generateFormModel());
//表格分页参数
const pagination: any = reactive({ ...BasePagination() });
//表格页码发生变化
const onPageChange = (val: number) => {
pagination.current = val;
fetchData();
};
//表格每页数量发生变化
const onPageSizeChange = (val: number) => {
pagination.pageSize = val;
fetchData();
};
//设置表格列
const tabColumns = computed<TableColumnData[]>(() => [
{
title: "编号",
dataIndex: "id",
width: 80,
align: "center",
},
{
title: "字典名称",
dataIndex: "dictName",
width: 180,
align: "left",
},
{
title: "字典参数",
width: 300,
dataIndex: "dictSn",
align: "left",
ellipsis: true,
tooltip: { position: 'top' },
},
{
title: "字典说明",
width: 300,
dataIndex: "remark",
align: "left",
},
{
title: "启用状态",
width: 100,
dataIndex: "stopFlag",
slotName: "stopFlag",
align: "center",
fixed:"right"
},
{
title: "操作",
dataIndex: "operations",
width: 220,
slotName: "operate",
align: "center",
fixed:"right"
},
]);
//表格数据
const renderData = ref<any[]>([]);
/**
* 停用弹框
*/
const handleStopFlagClick = async (record: any) => {
operateModalModel.value.visible = true;
operateModalModel.value.id = record.id;
operateModalModel.value.title = record.stopFlag == 0 ? "停用" : "启用";
operateModalModel.value.name = record.dictName;
operateModalModel.value.value = record.stopFlag == 0 ? 1 : 0;
operateModalModel.value.type = 0;
}
/**
* 删除数据
* @param record 数据行
*/
const handleDelete = (record: any) => {
operateModalModel.value.visible = true;
operateModalModel.value.id = record.id;
operateModalModel.value.title = '删除';
operateModalModel.value.name = record.dictName;
operateModalModel.value.type = 1;
}
/**
* 操作提示弹框取消
*/
const handleOperateModelCancle = () => {
operateModalModel.value = generateOperateModalModel();
}
/**
* 删除提示弹框确认
*/
const handleOperateModelOk = async () => {
let result;
operateModalModel.value.visible = false;
setLoading(true);
try{
if (operateModalModel.value.type == 0) {
result = await changeDictStatus(operateModalModel.value.id, operateModalModel.value.value);
} else {
result = await delDict(operateModalModel.value.id);
}
notification(result);
if (result.code == 200) {
handleOperateModelCancle();
await fetchData();
}
}catch (e) {
console.error(e);
}finally {
setLoading(false);
}
}
//重置查询条件
const search = async () => {
pagination.current = 1;
await fetchData();
}
//查询数据
const fetchData = async () => {
setLoading(true);
try {
const { rows, total } = await listDict({
pageSize: pagination.pageSize,
pageNum: pagination.current,
...searchParams.value,
} as any);
renderData.value = rows;
pagination.total = total;
pagination.current = pagination.current;
} catch (err) {
// you can report use errorHandler or other
} finally {
setLoading(false);
}
};
onMounted(async () => {
await fetchData()
})
</script>
<style scoped>
.operationBar {
margin-bottom: 16px;
}
.row-mp-30 {
margin-top: 30px;
padding-right: 30px;
}
</style>