提交 f622e9fc 编写于 作者: jlj05024111@163.com's avatar jlj05024111@163.com

feat: 更新文本框密码类型时禁用自动填充

上级 6e8cea05
......@@ -14,4 +14,9 @@
.ivu-input-number-input:hover{
padding-right:22px;
}
.input-password{
input{
-webkit-text-security: disc;
}
}
}
\ No newline at end of file
......@@ -10,9 +10,10 @@
:active-change="false"
></InputNumber>
<i-input v-else
:class="{'input-password':type === 'password'}"
:placeholder="placeholder ? placeholder : $t('components.common.input')"
:size="size"
:type="type"
:type="type === 'password' ? 'text' : type"
:rows="rows"
v-model="CurrentVal"
:disabled="disabled ? true : false"
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册