[体验官活动]

This commit is contained in:
2023-07-14 16:44:05 +08:00
parent 49338797af
commit 3ecd1fefa7
27 changed files with 1471 additions and 495 deletions

View File

@@ -91,7 +91,7 @@
<view class="recruit-block">
<view class="clockIn-border recruit-border">
<view class="clockInTitle">
<view class="clockInTitle-user">Hi张张</view>
<view class="clockInTitle-user">Hi</view>
<view class="clockInTitle-text">今天是你打卡的第<view class="clockInTitle-day"><text>{{signDayNumber}}</text></view>天</view>
</view>
<view class="clockInDate">
@@ -141,7 +141,8 @@
<view class="total-left-text">每日打卡获得<text>{{signWaterNumber}}水滴</text>,累积打卡</view>
<view class="total-left-text">{{signDayCount}}天可再次兑换1瓶水感应喷雾</view>
</view>
<view class="total-btn {{canSign ? '' : 'active'}}" bindtap="tapPop">{{canSign ? '打卡': '已打卡'}}</view>
<view class="total-btn" bindtap="tapPop" wx:if="{{canSign}}">打卡</view>
<view class="total-btn active" wx:else>已打卡</view>
</view>
</view>
</view>
@@ -355,7 +356,7 @@
<!-- 按钮 -->
<view class="clockIn-tool">
<view class="clockIn-btn">
<view class="clockIn-btn" bindtap="dailyBind">
<image class="clockIn-btn-img" src="https://cdn.shuiganying.com/images/2023/07/10/81929ad1ad773ad59bc461da4acff445.png" mode="widthFix"></image>
<view class="clockIn-btn-text">日常分享</view>
</view>
@@ -377,12 +378,60 @@
<!-- 打卡 end -->
<!-- 公众号弹出 -->
<view class="followPop {{followState ? 'active' : ''}}"></view>
<view class="followCont {{followState ? 'active' : ''}}">
<view class="followPop {{followState ? 'active' : ''}}" catchtouchmove='true'></view>
<view class="followCont {{followState ? 'active' : ''}}" catchtouchmove='true'>
<view class="followText">
<view class="weChat-title">关注公众号</view>
<image class="weChat-close" src="/static/icons/uricacidClose.png" bindtap="followHide"></image>
<image class="weChat-close" src="/static/icons/uricacidClose.png" bindtap="tapGo"></image>
<image class="weChat-img" src="/static/imgs/weChat_code.jpg" mode="widthFix"></image>
<view class="weChat-text">截图扫码,关注公众号</view>
<view class="weChat-text"><text>请关注”水感应“公众号</text><text>以便收到活动通知</text></view>
</view>
</view>
<!-- 日常分享弹出 -->
<view class="dailyBack {{dailyState ? 'active' : ''}}" catchtouchmove='true'></view>
<view class="dailyCont {{dailyState ? 'active' : ''}}" catchtouchmove='true'>
<view class="dailyCont-img"><image src="https://cdn.shuiganying.com/images/2023/07/14/a6fcd5a3203623f969058c29dd854890.png" mode="widthFix"></image></view>
<view class="dailyCont-white">
<view class="dailyCont-title">日常分享 <image src="/static/icons/reportColse.png" mode="widthFix" bindtap="dailyClose"></image></view>
<view class="dailyCont-list">
<view class="dailyCont-label" wx:for="{{dailyData}}" wx:key="dailyData">
<view class="dailyCont-icon"><image src="{{item.cover}}" mode="widthFix"></image></view>
<view class="dailyCont-text">
<view class="dailyCont-text-name">{{item.title}}</view>
<view class="dailyCont-text-tips">
<image src="https://cdn.shuiganying.com/images/2023/07/14/3b0be0d084e44b38c54cd67e1e5cf808.png" mode="widthFix"></image>
<text>+1</text>分享链接成功可获得水滴
</view>
</view>
<view class="dailyCont-go" data-title="{{item.title}}" data-id="{{item.category_id}}" bindtap="shareTap" wx:if="{{item.can_share}}">分享</view>
<view class="dailyCont-go active" wx:else>分享</view>
</view>
<view class="dailyCont-record"><view class="dailyCont-record-go" bindtap="recordTap">分享记录> </view></view>
</view>
</view>
</view>
<!-- 日常管理连接地址弹框 -->
<view class="publicBack" wx:if="{{nameState}}" catchtouchmove='true'></view>
<view class="publicPop" wx:if="{{nameState}}" catchtouchmove='true'>
<view class="publicPop-cont">
<view class="free-title">{{dailyTitle}}分享地址</view>
<form bindsubmit="freeform" class="site-form">
<view class="free-input">
<input placeholder="请输入您分享的地址" type="text" bindinput="bindinput" name="url"></input>
</view>
<view class="publicPop-btn">
<view class="publicPop-btn-go publicPop-btn-border" bindtap="establish">暂不分享</view>
<button class="publicPop-btn-go" form-type="submit" disabled="{{disabled}}">确定分享</button>
</view>
</form>
</view>
</view>
<!-- 关注漂浮窗 -->
<view class="floating" bindtap="followHide" wx:if="{{!recruitData.is_subscribe}}">
<image class="floating-img" src="https://cdn.shuiganying.com/images/2023/07/14/43ab4bc418a12de6183e11d91cf3e518.png" mode="widthFix"></image>
<view class="floating-name">关注公众号</view>
</view>