12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <view class="topbox" style="padding-top:{{top}}px;height:{{top*1+hgt*1}}px;">
- <view class="leftindexbox clearfix" style="top: {{top*1+8}}px;border: 1px solid #d1cfcf;">
- <image bindtap="golastap" class="leftgoto" src="../../../img/back.png"></image>
- <view bindtap="golastap" class="leftitbox"></view>
- <text></text>
- <image bindtap="goindextap" class="gotoindex" src="../../../img/goindex.png"></image>
- <view bindtap="goindextap" class="gotoidxbox"></view>
- </view>
- <view class="fontfpm fontr32 center maintitle titleStyle" style="line-height: 44px;">{{activityobj.title}}</view>
- </view>
- <view hidden="{{true}}" class="posterimgbox" >
- <image mode="widthFix" src="{{activityobj.poster}}"></image>
- </view>
- <view hidden="{{datashow==false}}" class="contentbox " style="padding-top: {{top*1+hgt*1+12}}px;">
- <mp-html content="{{activityobj.content}}" />
- </view>
- <view wx:if="{{datashow==true&&activityobj.show==1&&activityobj.timestate!=2}}" class="footer clearfix fontfpr">
- <button open-type="share" class="sharebtnbox pull-left fontr28 tcenter">
- <view class="inline-block clearfix">
- <image class="pull-left" src="{{imgUrl}}xcx/aaa/ashare.png"></image>
- <view class="pull-left colorA4B9C9 fontfpr fontr24 text">分享</view>
- </view>
- </button>
- <!-- wx:if="{{activityobj.type==1}}" -->
- <view wx:if="{{activityobj.is_activity!=1}}" class="pull-right">
- <button wx:if="{{canIUseGetUserProfile&&!loginFlag}}" class="footrightbtn fontfpr" loading="{{loading}}" disabled="{{loading}}" bindtap="getUserProfile">立即报名</button>
- <button wx:if="{{!canIUseGetUserProfile&&!loginFlag}}" open-type="getUserInfo" loading="{{loading}}" disabled="{{loading}}" class="footrightbtn fontfpr" bindgetuserinfo="getUserInfoTap">立即报名</button>
- <button wx:if="{{loginFlag&&phoneFlag}}" loading="{{loading}}" disabled="{{loading}}" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumberTap" class="footrightbtn fontfpr">立即报名</button>
- <button wx:if="{{loginFlag&&!phoneFlag}}" bindtap="bindfun" loading="{{loading}}" disabled="{{loading}}" class="footrightbtn fontfpr">立即报名</button>
- </view>
- <view wx:if="{{activityobj.is_activity==1}}" class="pull-right">
- <button bindtap="lookimgtap" class="footrightbtn fontfpr" style="background:#249efb;color: #fff;">报名二维码</button>
- </view>
- </view>
- <van-calendar show="{{ show }}" color="#249efb" min-date="{{ minDate }}" max-date="{{ maxDate }}" bind:close="onClose" bind:confirm="onConfirm" />
- <mustlogin loginFlag="{{loginFlag}}" orgname="{{companyobj.company_name}}" logo="{{companyobj.logo}}" mobileflag="{{phoneFlag}}" phoneflag="{{true}}" typenum="{{0}}" id="loginbox" bind:cancelPhone="cancelGetPhone" bind:run="unreadMsg"></mustlogin>
- <view wx:if="{{qrcodeflag}}" bindtap="closeqrcodetap" class="qrcodelayer">
- <view catchtap="dothis" class="qrcodebox">
- <view class="qrcodetit">报名成功确认到店二维码</view>
- <image bindtap="closeqrcodetap" class="codecloseimg" src="/img/orderclose.png"></image>
- <view class="qrcodeimgbox">
- <image src="{{qrcode}}"></image>
- </view>
- <view class="save">截图保存二维码到店使用</view>
- </view>
- </view>
|