Commit d6e115f58dd0f079bfd7fc82929bcbb1a4e14692

Authored by ww
1 parent 3cd63e12

perf: 分享页面的token输入框切换为密码框

@@ -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