agreement.wxml 2.8 KB

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