feat:【system】支付宝小程序登录补充
parent
09300af7bc
commit
7aab11b984
|
|
@ -12,6 +12,7 @@ export namespace SystemSocialClientApi {
|
||||||
clientId: string;
|
clientId: string;
|
||||||
clientSecret: string;
|
clientSecret: string;
|
||||||
agentId?: string;
|
agentId?: string;
|
||||||
|
publicKey?: string;
|
||||||
status: number;
|
status: number;
|
||||||
createTime?: Date;
|
createTime?: Date;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -82,6 +82,18 @@ export function useFormSchema(): VbenFormSchema[] {
|
||||||
values.socialType === SystemUserSocialTypeEnum.WECHAT_ENTERPRISE.type,
|
values.socialType === SystemUserSocialTypeEnum.WECHAT_ENTERPRISE.type,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'publicKey',
|
||||||
|
label: 'publicKey',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入 publicKey 公钥',
|
||||||
|
},
|
||||||
|
dependencies: {
|
||||||
|
triggerFields: ['socialType'],
|
||||||
|
show: (values) => values.socialType === 40,
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
fieldName: 'status',
|
fieldName: 'status',
|
||||||
label: '状态',
|
label: '状态',
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ export namespace SystemSocialClientApi {
|
||||||
clientId: string;
|
clientId: string;
|
||||||
clientSecret: string;
|
clientSecret: string;
|
||||||
agentId?: string;
|
agentId?: string;
|
||||||
|
publicKey?: string;
|
||||||
status: number;
|
status: number;
|
||||||
createTime?: Date;
|
createTime?: Date;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -80,6 +80,18 @@ export function useFormSchema(): VbenFormSchema[] {
|
||||||
values.socialType === SystemUserSocialTypeEnum.WECHAT_ENTERPRISE.type,
|
values.socialType === SystemUserSocialTypeEnum.WECHAT_ENTERPRISE.type,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'publicKey',
|
||||||
|
label: 'publicKey',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入 publicKey 公钥',
|
||||||
|
},
|
||||||
|
dependencies: {
|
||||||
|
triggerFields: ['socialType'],
|
||||||
|
show: (values) => values.socialType === 40,
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
fieldName: 'status',
|
fieldName: 'status',
|
||||||
label: '状态',
|
label: '状态',
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ export namespace SystemSocialClientApi {
|
||||||
clientId: string;
|
clientId: string;
|
||||||
clientSecret: string;
|
clientSecret: string;
|
||||||
agentId?: string;
|
agentId?: string;
|
||||||
|
publicKey?: string;
|
||||||
status: number;
|
status: number;
|
||||||
createTime?: Date;
|
createTime?: Date;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -79,6 +79,18 @@ export function useFormSchema(): VbenFormSchema[] {
|
||||||
values.socialType === SystemUserSocialTypeEnum.WECHAT_ENTERPRISE.type,
|
values.socialType === SystemUserSocialTypeEnum.WECHAT_ENTERPRISE.type,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'publicKey',
|
||||||
|
label: 'publicKey',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入 publicKey 公钥',
|
||||||
|
},
|
||||||
|
dependencies: {
|
||||||
|
triggerFields: ['socialType'],
|
||||||
|
show: (values) => values.socialType === 40,
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
fieldName: 'status',
|
fieldName: 'status',
|
||||||
label: '状态',
|
label: '状态',
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ export namespace SystemSocialClientApi {
|
||||||
clientId: string;
|
clientId: string;
|
||||||
clientSecret: string;
|
clientSecret: string;
|
||||||
agentId?: string;
|
agentId?: string;
|
||||||
|
publicKey?: string;
|
||||||
status: number;
|
status: number;
|
||||||
createTime?: Date;
|
createTime?: Date;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -81,6 +81,18 @@ export function useFormSchema(): VbenFormSchema[] {
|
||||||
values.socialType === SystemUserSocialTypeEnum.WECHAT_ENTERPRISE.type,
|
values.socialType === SystemUserSocialTypeEnum.WECHAT_ENTERPRISE.type,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'publicKey',
|
||||||
|
label: 'publicKey',
|
||||||
|
component: 'Input',
|
||||||
|
componentProps: {
|
||||||
|
placeholder: '请输入 publicKey 公钥',
|
||||||
|
},
|
||||||
|
dependencies: {
|
||||||
|
triggerFields: ['socialType'],
|
||||||
|
show: (values) => values.socialType === 40,
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
fieldName: 'status',
|
fieldName: 'status',
|
||||||
label: '状态',
|
label: '状态',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue