1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!--pages/invoice/agreement/agreement.wxml-->
- <view class="page-agreement">
- <view class="top-tip">
- <view class="icon"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-warring.png"></image></view>
- 入驻商城协议
- </view>
- <view class="agreement-content">
- <view class="view-text">1、请提供真实有效的身份证证件,一经发现身份证证件为虚假证件,本平台有权立即终止向该用户提供服务。 </view>
- <view class="view-text">2、请提供具有法律效益的销售合同,一经发现为虚假合同,本平台有权立即终止向该用户提供服务。</view>
- <view class="view-text">3、开票前仔细核实开票信息,抬头、税号、开票内容,如果因您填报时开票信息错误,发票一旦开出不做更改、退票及退款,如需发票,请另行开具。</view>
- <view class="view-text">4、提交订单中保证联系人、联系地址的准确性,如果因为您填写信息错误,导致无法正常收货,由此造成损失由您自行承担。</view>
- </view>
- <view bindtap="triggerAgree" class="agreement-tool">
- <i class="icon"> <image class="img-full" src="{{agreement?'https://resource.artouchstone.com/miniapp/artist/images/icon-input-check-active.png':'https://resource.artouchstone.com/miniapp/artist/images/icon-input-check-default.png'}}"></image></i>
- 我已了解申请开票注意事项
- </view>
- <view class="step-tool">
- <view bindtap="back" class="step-prev step-btn disable">
- <view class="icon"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-step-prev.png"></image></view>
- </view>
- <view bindtap="saveData" class="step-next step-btn {{agreement?'active':''}}">
- <view class="icon"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/icon-step-next.png"></image></view>
- </view>
- </view>
- </view>
- <!--身份验证弹框-->
- <view wx:if="{{isShowPop}}" class="pop-box">
- <view class="pop-inner">
- <view>
- <view class="pop-inner-text">
- <view>您还未进行身份证验证</view>
- <view>请点击下面的按钮“立即身份验证”</view>
- </view>
- <navigator wx:if="{{agreementType==1}}" url="/pages/settled/authenticationCompany/authenticationCompany" class="default-btn primary">立即验证</navigator>
- <navigator wx:if="{{agreementType!=1}}" url="/pages/invoice/authentication/authentication?id={{agreementType}}" class="default-btn primary">立即验证</navigator>
- </view>
- <view bindtap="hidePop" class="pop-close"><image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/close.png"></image></view>
- </view>
- </view>
|