安徽骏飞影业有限公司 - 微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

21 lines
838 B

<!--pages/signIn/signIn.wxml-->
<view class="container">
<van-sidebar class="left_side" active-key="{{ activeKey }}" bind:change="onChange">
<van-sidebar-item wx:for="{{displayList}}" wx:key="index" title="{{item.cate_name}}" />
<!-- <van-sidebar-item title="实景片场" />
<van-sidebar-item title="配套设施" /> -->
</van-sidebar>
<view class="right_con">
<block wx:for="{{displayProductList}}" wx:key="index">
<navigator url='../details/details?id={{item.id}}'>
<van-divider contentPosition="center" customStyle="color: #372222; width:70%; border-color: #372222; font-size: 15px; margin:20px auto 10px;">
<text style="text-align: center;">{{item.title}}</text>
</van-divider>
<image src="{{item.image}}"></image>
</navigator>
</block>
</view>
</view>