Commit 3016347c57df1ea7b719d54b52ebbd2f6ea924f6

Authored by ww
1 parent af97e9f3

perf: 优化设备名称描述

... ... @@ -31,7 +31,7 @@ export const step1Schemas: FormSchema[] = [
31 31 },
32 32 {
33 33 field: 'name',
34   - label: '设备名称/SN码',
  34 + label: '设备名称',
35 35 component: 'Input',
36 36 dynamicRules: () => {
37 37 return [
... ...
... ... @@ -23,7 +23,7 @@ export const columns: BasicColumn[] = [
23 23 },
24 24 {
25 25 dataIndex: 'name',
26   - title: '设备名称/设备SN',
  26 + title: '别名/设备名称',
27 27 width: 210,
28 28 slots: { customRender: 'name', title: 'deviceTitle' },
29 29 customRender: ({ record }) => {
... ...
... ... @@ -124,7 +124,7 @@ const deviceTableColumn: BasicColumn[] = [
124 124 },
125 125 },
126 126 {
127   - title: '设备名称/设备SN',
  127 + title: '别名/设备名称',
128 128 dataIndex: 'name',
129 129 customRender: ({ record }) => {
130 130 return h('div', [
... ...