Commit d6e115f58dd0f079bfd7fc82929bcbb1a4e14692

Authored by ww
1 parent 3cd63e12

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

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