安徽骏飞影业有限公司 - 微信小程序
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.
 

104 lines
4.2 KiB

<!--pages/home/home.wxml-->
<view class="container">
<view class="banner">
<swiper indicator-dots="{{ true }}" autoplay="{{ false }}" interval="{{ 2000 }}" duration="{{ 500 }}" indicator-color="rgba(255,255,255,.4)" indicator-active-color="rgba(255,255,255,1)">
<block wx:for="{{bannerList}}" wx:key="index" catchtap='navmap'>
<swiper-item>
<view class="item">
<van-image width="100%" height="100%" fit="cover" use-error-slot catchtap='navmap' src="{{ item.image }}">
<text slot="error">加载失败</text>
</van-image>
</view>
</swiper-item>
</block>
</swiper>
</view>
<view class="core">
<van-row>
<van-col span="6" data-id='0' bindtap="moretap">
<image src="../../assets/imgs/icon1.png" />
<text>影视大棚</text>
</van-col>
<van-col span="6" data-id='1' bindtap="moretap">
<image src="../../assets/imgs/icon2.png" />
<text>实景片场</text>
</van-col>
<van-col span="6" data-id='2' bindtap="moretap">
<image src="../../assets/imgs/icon3.png" />
<text>配套设施</text>
</van-col>
<van-col span="6" bindtap="contactUs">
<image src="../../assets/imgs/icon4.png" />
<text>联系我们</text>
</van-col>
</van-row>
</view>
<view class="category">
<view class="main_con">
<view class="main_title" bindtap="ysptabbar">
<text>影视大棚</text><view class="more" data-id='0' bindtap="moretap">全部 <van-icon name="arrow" color="#333" /></view>
</view>
<van-row gutter="12">
<van-col span="12" wx:for="{{yspList}}" wx:key="index">
<navigator url= '../details/details?id={{item.id}}'>
<image src="{{item.image}}" />
<text>{{item.title}}</text>
</navigator>
</van-col>
</van-row>
</view>
<view class="main_con">
<view class="main_title">
<text>实景片场</text><view class="more" data-id='1' bindtap="moretap">全部 <van-icon name="arrow" color="#333" /></view>
</view>
<van-row gutter="12">
<van-col span="12" wx:for="{{sjpcList}}" wx:key="index">
<navigator url= '../details/details?id={{item.id}}'>
<image src="{{item.image}}" />
<text>{{item.title}}</text>
</navigator>
</van-col>
</van-row>
</view>
<view class="main_con ptss_con">
<view class="main_title">
<text>配套设施</text><view class="more" data-id='2' bindtap="moretap">全部 <van-icon name="arrow" color="#333" /></view>
</view>
<van-row gutter="12">
<van-col span="12" wx:for="{{ptssList}}" wx:key="index">
<navigator url= '../details/details?id={{item.id}}'>
<image src="{{item.image}}" />
<view class="mask"></view>
<text>{{item.title}}</text>
</navigator>
</van-col>
</van-row>
</view>
<view class="main_con ptss_con">
<view class="main_title">
<text>客片欣赏</text><view class="more" data-id='3' bindtap="moretap">全部 <van-icon name="arrow" color="#333" /></view>
</view>
<van-row gutter="12">
<van-col span="12" wx:for="{{kpxsList}}" wx:key="index">
<navigator url= '../details/details?id={{item.id}}'>
<image src="{{item.image}}" />
<view class="mask"></view>
<text>{{item.title}}</text>
</navigator>
</van-col>
</van-row>
</view>
</view>
</view>