密炼机动作维护、日罐物料对应信息、密炼机条件维护、生产订单、金蝶对接配置

This commit is contained in:
2026-05-22 12:04:46 +08:00
parent 874e513c90
commit 467c49f432
30 changed files with 1509 additions and 5 deletions

View File

@@ -16,31 +16,43 @@ export const thirdAppFormSchema: FormSchema[] = [
show: false,
},
{
label: 'CorpId',
label: 'CorpId/服务地址',
field: 'corpId',
component: 'Input',
ifShow: ({ values }) => {
return values.thirdType === 'dingtalk';
return values.thirdType === 'dingtalk' || values.thirdType === 'kingdee';
},
required: true,
componentProps: ({ formModel }) => ({
placeholder: formModel?.thirdType === 'kingdee' ? '请输入金蝶服务地址,例如 https://xxx.xxx.com' : '请输入CorpId',
}),
},
{
label: 'Agentld',
label: 'AgentId/账套ID',
field: 'agentId',
component: 'Input',
required: true,
componentProps: ({ formModel }) => ({
placeholder: formModel?.thirdType === 'kingdee' ? '请输入账套ID可选业务标识' : '请输入AgentId',
}),
},
{
label: 'AppKey',
label: 'AppKey/AppId',
field: 'clientId',
component: 'Input',
required: true,
componentProps: ({ formModel }) => ({
placeholder: formModel?.thirdType === 'kingdee' ? '请输入金蝶AppId' : '请输入AppKey',
}),
},
{
label: 'AppSecret',
field: 'clientSecret',
component: 'Input',
required: true,
componentProps: ({ formModel }) => ({
placeholder: formModel?.thirdType === 'kingdee' ? '请输入金蝶AppSecret' : '请输入AppSecret',
}),
},{
label: '启用',
field: 'status',