Showing
2 changed files
with
2 additions
and
2 deletions
| @@ -25,7 +25,7 @@ export const schemas: FormSchema[] = [ | @@ -25,7 +25,7 @@ export const schemas: FormSchema[] = [ | ||
| 25 | { | 25 | { |
| 26 | field: FieldsEnum.ACCESS_CREDENTIALS, | 26 | field: FieldsEnum.ACCESS_CREDENTIALS, |
| 27 | label: '访问凭证', | 27 | label: '访问凭证', |
| 28 | - component: 'Input', | 28 | + component: 'InputPassword', |
| 29 | ifShow: ({ model }) => model[FieldsEnum.IS_SHARE], | 29 | ifShow: ({ model }) => model[FieldsEnum.IS_SHARE], |
| 30 | componentProps: { | 30 | componentProps: { |
| 31 | maxLength: 64, | 31 | maxLength: 64, |
| @@ -98,7 +98,7 @@ | @@ -98,7 +98,7 @@ | ||
| 98 | <Input.Group> | 98 | <Input.Group> |
| 99 | <Row> | 99 | <Row> |
| 100 | <Col :span="18"> | 100 | <Col :span="18"> |
| 101 | - <Input v-model:value="model[field]" placeholder="请输入访问令牌" /> | 101 | + <Input.Password v-model:value="model[field]" placeholder="请输入访问令牌" /> |
| 102 | </Col> | 102 | </Col> |
| 103 | <Col :span="6"> | 103 | <Col :span="6"> |
| 104 | <Button | 104 | <Button |