Commit 4735023c19974f922ff813da7bdc79c5b975f684

Authored by fengwotao
1 parent 7c676bd0

fix:DEFECT-674 修改字段名称

... ... @@ -22,25 +22,25 @@ export const columns: BasicColumn[] = [
22 22 width: 90,
23 23 },
24 24 {
25   - title: '传输方式',
  25 + title: '接入协议',
26 26 dataIndex: 'transportType',
27 27 width: 90,
28 28 },
29 29 {
30 30 title: '默认配置',
31 31 dataIndex: 'default',
32   - width: 50,
  32 + width: 80,
33 33 format: (text) => (text ? '是' : '否'),
34 34 },
35 35 {
36 36 title: '描述',
37 37 dataIndex: 'description',
38   - width: 100,
  38 + width: 90,
39 39 },
40 40 {
41 41 title: '创建时间',
42 42 dataIndex: 'createTime',
43   - width: 100,
  43 + width: 120,
44 44 },
45 45 ];
46 46
... ...
... ... @@ -72,7 +72,7 @@ export const step2Schemas: FormSchema[] = [
72 72 {
73 73 field: 'transportType',
74 74 component: 'Select',
75   - label: '传输方式',
  75 + label: '接入协议',
76 76 defaultValue: 'DEFAULT',
77 77 componentProps() {
78 78 return {
... ...