123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <wxs module="filters" src="../../../utils/filters.wxs"></wxs>
- <view class="page">
- <view class="{{videoObj.video_type==1?'videoBoxUp':'videoBox'}}" >
- <video-list id="myVideo" vidoesrc="{{videoObj.video_url}}" poster="{{videoObj.cover?videoObj.cover:videoObj.video_url+'?x-oss-process=video/snapshot,t_100,f_jpg,w_200,m_fast'}}" objectfit="contain" showProgress="{{true}}" showBottomProgress="{{true}}" showFullscreenBtn="{{false}}"/>
- </view>
- </view>
- <calcprice priceflag='{{priceflag}}' bind:run="closepricetap"></calcprice>
- <view class="sharenumBox sharenumBoxshow">
- <button class="box-center" style="height:140rpx;">
- <image class="avatarBox" src="{{personMsg.headimgurl?personMsg.headimgurl:imgUrl+'xcx/newxcx/heaDefault.png'}}" alt></image>
- <view class="ellipsis personamebox1">{{personMsg.binded.name?personMsg.binded.name:personMsg.nickname?personMsg.nickname:'微信用户'}}</view>
- </button>
- <button class="box-center" bindtap="prelooktap">
- <image src="../../../img/addedwx.png" alt></image>
- <view>微信咨询</view>
- </button>
- <button class="box-center" bindtap="callphonetap">
- <image class="bwicon" src="../../../img/wphoneicon.png" alt></image>
- <view class="btext">电话预约</view>
- </button>
- <button class="box-center" bindtap="collecTap">
- <image class="bwicon" wx:if="{{videoObj.collect=='0'}}" src="../../../img/wcollecticon.png" alt></image>
- <image wx:if="{{videoObj.collect=='1'}}" src="{{imgUrl}}xcx/collected.png" alt></image>
- <view class="{{videoObj.collect=='0'?'btext':''}}">收藏</view>
- </button>
- <button class="box-center" bindtap="wsharetap">
- <image class="bwicon" src="../../../img/bshareicon.png" alt></image>
- <view class="btext">转发</view>
- </button>
- <image bindtap="priceshowtap" class="pricebtnimg" src="{{imgUrl}}xcx/aaa/pricebtn.gif"></image>
- </view>
- <view class="videomsgbox">
- <button class="signUpBtn" bindtap="signpricetap">报名免费设计>></button>
- <view class="videoTitle ellipsis">@{{companyobj.company_name}}</view>
- <view wx:if="{{!showDsc && (videoObj.description.length > 28)}}" bindtap="showdscMsg" class="videocontent ellipsisTwo {{showDsc?'videocontentshow':''}}" >{{filters.getsubstr(videoObj.description,28)}}... 展开</view>
- <view wx:else="" bindtap="showdscMsg" class="videocontent {{showDsc?'videocontentshow':''}}" >{{videoObj.description}}{{showDsc?'<<隐藏':''}}</view>
- <view class="videotype ellipsisTwo {{!customerFlag?'videotypeshow':''}}">#{{videoObj.type}}</view>
- </view>
- <view wx:if="{{alertFlag==true}}" class="alertbox">{{alerText}}</view>
- <wshare wshareshow="{{wshareshow}}" bind:poster="setpostertap" bind:sfriend="sharetap" bind:shareurl="shareurltap" bind:sendfriendcircle="sendfriendtap" ></wshare>
|