123456789101112131415161718 |
- <view class="mask" wx:if="{{innerShow}}">
- <view class="weui-half-screen-dialog" style=" position: fixed; bottom:{{height}}px">
- <view class="weui-half-screen-dialog__hd">
- <text class="weui-half-screen-dialog__title">{{title}}</text>
- </view>
- <view class="weui-half-screen-dialog__bd">
- <view class="weui-half-screen-dialog__tips">{{desc1}}</view>
- <view class="weui-half-screen-dialog__tips">{{desc2}}</view>
- <view class="weui-half-screen-dialog__tips " style="color:#AFDBF6" bindtap="openPrivacyContract">{{urlTitle}}</view>
- </view>
- <view class="weui-half-screen-dialog__ft">
- <view class="weui-half-screen-dialog__btn-area">
- <button id="agree-btn" type="warn" open-type="agreePrivacyAuthorization" class="weui-btn" bindagreeprivacyauthorization="handleAgree">同意并继续</button>
- <view class="disagreeBtn" bindtap="handleDisagree">不同意</view>
- </view>
- </view>
- </view>
- </view>
|