mirror of https://gitee.com/topiam/eiam
✨ 表单代填支持密码MD5算法
parent
42a63d8900
commit
414bfcd5aa
|
@ -210,6 +210,7 @@ export default (props: { app: GetApp | Record<string, any> }) => {
|
|||
options={[
|
||||
{ value: FormEncryptType.aes, label: 'AES' },
|
||||
{ value: FormEncryptType.base64, label: 'BASE64' },
|
||||
{ value: FormEncryptType.md5, label: 'MD5' },
|
||||
]}
|
||||
fieldProps={{ allowClear: true }}
|
||||
extra={intl.formatMessage({
|
||||
|
|
|
@ -77,4 +77,6 @@ export enum FormEncryptType {
|
|||
aes = 'aes',
|
||||
/**base64*/
|
||||
base64 = 'base64',
|
||||
/**md5*/
|
||||
md5 = 'md5',
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue