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
| import type { VbenFormSchema } from '#/adapter/form';
| import type { VxeTableGridOptions } from '#/adapter/vxe-table';
| import type { ThingModelApi } from '#/api/iot/thingmodel';
|
| import { DICT_TYPE, getDataTypeOptionsLabel } from '../../../packages/constants/src';
| import { getDictOptions } from '../../../packages/effects/hooks/src';
|
| /** 列表的搜索表单 */
| export function useGridFormSchema(): VbenFormSchema[] {
| return [
| {
| fieldName: 'type',
| label: '功能类型',
| component: 'Select',
| componentProps: {
| options: getDictOptions(DICT_TYPE.IOT_THING_MODEL_TYPE, 'number'),
| placeholder: '请选择功能类型',
| allowClear: true,
| },
| },
| ];
| }
|
| /** 列表的字段 */
| export function useGridColumns(): VxeTableGridOptions<ThingModelApi.ThingModel>['columns'] {
| return [
| { type: 'checkbox', width: 40 },
| {
| field: 'type',
| title: '功能类型',
| minWidth: 100,
| cellRender: {
| name: 'CellDict',
| props: { type: DICT_TYPE.IOT_THING_MODEL_TYPE },
| },
| },
| {
| field: 'name',
| title: '功能名称',
| minWidth: 150,
| },
| {
| field: 'identifier',
| title: '标识符',
| minWidth: 120,
| },
| {
| title: '数据类型',
| minWidth: 100,
| formatter: ({ row }) =>
| getDataTypeOptionsLabel(row.property?.dataType ?? '') || '-',
| },
| {
| title: '数据定义',
| minWidth: 200,
| slots: { default: 'dataDefinition' },
| },
| {
| title: '操作',
| width: 160,
| fixed: 'right',
| slots: { default: 'actions' },
| },
| ];
| }
|
|