我有以下字段
<div *ngIf="flag">
Main Template
</div>
<div *ngIf="!flag">
Successfull registration template
</div>
相应的计划关系是
plan:
label: Plan
tab: account
type: relation
required: true
placeholder: Select Plan
emptyOption: No Plan Selected
business:
label: Select Business
tab: account
type: dropdown
required: true
placeholder: Select Business
options: getBusinessOptions
trigger:
action: show
field: plan
condition: value[1]
我只需要在计划为1时显示业务领域,但它与belongsTo计划关系工作正常,我的需要是使其与belongsToMany关系一起工作。
提前致谢。