希望通过{{show=='新建记录'}} 来控制显示需要的那个组件内容,但是实际的过程中,只有排在第一个的组件能显示,其他的组件都失效,求解?
<!-- 新建记录 -->
<page-container
show="{{show=='新建记录'}}"
round="true"
duration="300"
position="right"
>
<scroll-view scroll-y="true" style="width: 100%" >
<view style=" margin-top: 100px;">
<button type="primary" bindtap="exit">退出</button>
</view>
</scroll-view>
</page-container>
<!-- 查询记录 -->
<page-container
show="{{show=='查询记录'}}"
round="true"
duration="300"
position="right"
>
<scroll-view scroll-y="true" style="width: 100%" >
<view style=" margin-top: 100px;">
<button type="primary" bindtap="exit">退出</button>
</view>
</scroll-view>
</page-container>