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={[
|
options={[
|
||||||
{ value: FormEncryptType.aes, label: 'AES' },
|
{ value: FormEncryptType.aes, label: 'AES' },
|
||||||
{ value: FormEncryptType.base64, label: 'BASE64' },
|
{ value: FormEncryptType.base64, label: 'BASE64' },
|
||||||
|
{ value: FormEncryptType.md5, label: 'MD5' },
|
||||||
]}
|
]}
|
||||||
fieldProps={{ allowClear: true }}
|
fieldProps={{ allowClear: true }}
|
||||||
extra={intl.formatMessage({
|
extra={intl.formatMessage({
|
||||||
|
|
|
@ -77,4 +77,6 @@ export enum FormEncryptType {
|
||||||
aes = 'aes',
|
aes = 'aes',
|
||||||
/**base64*/
|
/**base64*/
|
||||||
base64 = 'base64',
|
base64 = 'base64',
|
||||||
|
/**md5*/
|
||||||
|
md5 = 'md5',
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue