chore(amis-editor): Form配置面板中表达式使用变量,避免data被赋值导致取值错误 (#8680) (#8688)

This commit is contained in:
RUNZE LU 2023-11-10 17:51:31 +08:00 committed by GitHub
parent e92878229a
commit 3157498c88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 22 deletions

View File

@ -578,7 +578,7 @@ export class CRUDPlugin extends BasePlugin {
name: 'filterColumnCount'
}
],
visibleOn: 'data.features && data.features.includes("filter")'
visibleOn: "${features && features.includes('filter')}"
},
{
name: 'columns',

View File

@ -474,7 +474,7 @@ export class FormPlugin extends BasePlugin {
return {
type: 'container',
className: 'form-item-gap',
visibleOn: `data.feat === '${feat.value}' && (!data.dsType || data.dsType === '${builderKey}')`,
visibleOn: `$\{feat === '${feat.value}' && (!dsType || dsType === '${builderKey}')}`,
body: flatten([
builder.makeSourceSettingForm({
feat: feat.value,
@ -685,26 +685,28 @@ export class FormPlugin extends BasePlugin {
const dsSettings = flatten(
this.Features.map(feat =>
this.dsManager.buildCollectionFromBuilders(
(builder, builderKey, index) => ({
type: 'container',
className: 'form-item-gap',
visibleOn: `data.feat === '${
feat.value
}' && (data.dsType == null ? '${builderKey}' === '${
defaultDsType || ApiDSBuilderKey
}' : data.dsType === '${builderKey}')`,
body: flatten([
builder.makeSourceSettingForm({
feat: feat.value,
renderer: 'form',
inScaffold: false,
sourceSettings: {
renderLabel: true,
userOrders: false
}
})
])
})
(builder, builderKey, index) => {
return {
type: 'container',
className: 'form-item-gap',
visibleOn: `$\{feat === '${
feat.value
}' && (dsType == null ? '${builderKey}' === '${
defaultDsType || ApiDSBuilderKey
}' : dsType === '${builderKey}')}`,
body: flatten([
builder.makeSourceSettingForm({
feat: feat.value,
renderer: 'form',
inScaffold: false,
sourceSettings: {
renderLabel: true,
userOrders: false
}
})
])
};
}
)
)
);