收藏
回答

多个page-container组件,不能通过show=="key"来控制显示?

希望通过{{show=='新建记录'}} 来控制显示需要的那个组件内容,但是实际的过程中,只有排在第一个的组件能显示,其他的组件都失效,求解?


<!-- 新建记录 -->

<page-container 

  show="{{show=='新建记录'}}

  round="true"

  duration="300"

  position="right"  

>

<scroll-view  scroll-y="truestyle="width: 100%" >

  <view style=" margin-top: 100px;">

    <button type="primarybindtap="exit">退出</button>

  </view> 

 </scroll-view>  

</page-container>

<!-- 查询记录 -->

<page-container 

  show="{{show=='查询记录'}}

  round="true"

  duration="300"

  position="right"

>

<scroll-view  scroll-y="truestyle="width: 100%" >

  <view style=" margin-top: 100px;">

    <button type="primarybindtap="exit">退出</button>

  </view> 

 </scroll-view>  

</page-container>



回答关注问题邀请回答
收藏
登录 后发表内容