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

60 lines
2.7 KiB

<!--pages/home/home.wxml-->
<import src="../../wxParse/wxParse.wxml"/>
<view class="container">
<view class="banner">
<van-uploader file-list="{{ fileList }}" max-count="1" />
<view class="details_text">
<text class="text_title">{{title}}</text>
<view class="text_info">所属片场:{{source}}</view>
<view class="text_con">
<view class="wxParse">
<template is="wxParse" data="{{wxParseData:article.nodes}}"/>
</view>
<!-- <text>影棚总面积达2000㎡,层高20m,可自由分割组合,包含汽车棚、无影棚、数字棚、多功能拍摄棚等,汽车棚内配备了直径6m的专业电动转盘,能轻松实现汽车或大部分产品的360度拍摄,或作为线下活动的旋转展台使用。棚内不仅可以满足目前市场上包括平面/视频在内的所有种类的广告拍摄需求,亦可作为举办大型商业活动的场地。</text>
<image src="../../assets/imgs/img3.png" />
<image src="../../assets/imgs/img3.png" />
<image src="../../assets/imgs/img3.png" />
<image src="../../assets/imgs/img3.png" /> -->
</view>
<view class="main_con">
<view class="main_title">
<text>相关片场</text>
</view>
<van-row gutter="12">
<van-col span="12" wx:for="{{detailsList}}" 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>
<view class="footer_share">
<van-row>
<van-col span="8">
<button class='fenxiang' open-type="share">
<van-icon name="share-o" size="20" color="#333" /> 分享
</button>
</van-col>
<van-col span="8">
<button open-type="contact" bindcontact="handleContact"><van-icon name="chat-o" size="20" color="#333" />在线咨询</button>
<!-- <van-icon name="chat-o" size="20" color="#3B2121" /> 在线咨询 -->
</van-col>
<van-col span="8" bindtap="callPhone" data-phone="{{userPhone}}">
<button><van-icon name="phone" size="20" color="#333" /> 联系我们</button>
</van-col>
</van-row>
<van-share-sheet
show="{{ showShare }}"
title="立即分享给好友"
options="{{ shareOptions }}"
bind:close="closeShare"
/>
</view>
</view>
</view>