Commit 54bfbd693f426d8ca668234d672713dfd85e0f49

Authored by fengwotao
1 parent ef4261ab

pref:TCP 调整脚本位置,鉴权脚本在上

... ... @@ -2,18 +2,18 @@ import { FormSchema } from '/@/components/Form';
2 2
3 3 export const tcpSchemas: FormSchema[] = [
4 4 {
5   - field: 'upScriptId',
6   - label: '上行脚本',
  5 + field: 'authScriptId',
  6 + label: '鉴权脚本',
7 7 component: 'Input',
8   - slot: 'upScriptId',
  8 + slot: 'authScriptId',
9 9 colProps: { span: 24 },
10 10 required: true,
11 11 },
12 12 {
13   - field: 'authScriptId',
14   - label: '鉴权脚本',
  13 + field: 'upScriptId',
  14 + label: '上行脚本',
15 15 component: 'Input',
16   - slot: 'authScriptId',
  16 + slot: 'upScriptId',
17 17 colProps: { span: 24 },
18 18 required: true,
19 19 },
... ...