fix(editor): 数据源方法配置,设置后再次修改参数配置不显示

This commit is contained in:
roymondchen 2024-07-16 16:16:05 +08:00
parent e209aa36e8
commit 059c0056c4
2 changed files with 4 additions and 4 deletions

View File

@ -72,7 +72,7 @@ const codeConfig = computed(() => ({
{
type: 'select',
name: 'codeType',
span: 8,
span: 6,
options: [
{ value: HookCodeType.CODE, text: '代码块' },
{ value: HookCodeType.DATA_SOURCE_METHOD, text: '数据源方法' },
@ -91,7 +91,7 @@ const codeConfig = computed(() => ({
{
type: 'code-select-col',
name: 'codeId',
span: 16,
span: 18,
labelWidth: 0,
display: (mForm: FormState, { model }: any) => model.codeType !== HookCodeType.DATA_SOURCE_METHOD,
notEditable: () => !services?.codeBlockService.getEditStatus(),
@ -99,7 +99,7 @@ const codeConfig = computed(() => ({
{
type: 'data-source-method-select',
name: 'codeId',
span: 16,
span: 18,
labelWidth: 0,
display: (mForm: FormState, { model }: any) => model.codeType === HookCodeType.DATA_SOURCE_METHOD,
notEditable: () => !services?.dataSourceService.get('editable'),

View File

@ -91,7 +91,7 @@ const getParamItemsConfig = ([dataSourceId, methodName]: [Id, string] = ['', '']
}));
};
const paramsConfig = ref<CodeParamStatement[]>(getParamItemsConfig(props.model.dataSourceMethod));
const paramsConfig = ref<CodeParamStatement[]>(getParamItemsConfig(props.model[props.name || 'dataSourceMethod']));
const setParamsConfig = (dataSourceMethod: [Id, string], formState: any = {}) => {
// codeIdmodelcodeIdparams