login.wxml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!-- 新引导页 -->
  2. <view style="height: 100vh;width:100%;">
  3. <image style=" height: 100%;width:100%;" mode="scaleToFill" src="{{imageUrl + 'login.png'}}" />
  4. <view class="base-absolute">
  5. <view style="font-size: 24px;margin-top: 60rpx;">
  6. {{$t['homeTitle']}}
  7. </view>
  8. <view style="margin-top: 100rpx; display: flex;">
  9. <!-- <van-button custom-style="border-radius: 30rpx; height:68rpx;width:180rpx; color: #131313;font-weight:500 " size="small" color="#ffffff" type="default" bindtap="freeClick"> {{$t['homeFreeLogin']}}</van-button> -->
  10. <!--了解产品-->
  11. <!-- <van-button custom-style="border-radius: 30rpx; margin-left:30rpx;height:68rpx;width:180rpx;border: 1rpx solid #FFFFFF " size="small" color="transparent" type="default" bindtap="productClick">{{$t['homeProduct']}}</van-button> -->
  12. </view>
  13. <view wx:if="{{flgTel}}" style="margin-top: 60rpx; display: flex;">
  14. <van-button size="small" custom-style="border-radius: 30rpx; margin-left:10rpx;height:60rpx;width:180rpx;" type="default" data-company='add' bind:click="addCompanyHasTel">{{$t['homeAddCompany']}}</van-button>
  15. <!-- wx:if="{{flgCreate}}" 上线后 要加上 -->
  16. <van-button size="small" data-company='create' bind:click="addCompanyHasTel" custom-style="border-radius: 30rpx;margin-left:30rpx ;height:60rpx;width:180rpx; " type="default"> {{$t['homeCreateCompany']}}</van-button>
  17. </view>
  18. <view wx:if="{{!flgTel}}" style="margin-top: 60rpx; display: flex;">
  19. <van-button size="small" custom-style="border-radius: 30rpx; margin-left:10rpx;height:60rpx;width:180rpx;" type="default" data-company='add' bind:click="addCompany" open-type="{{openType}}" bindgetphonenumber="handleGetPhoneNumber">{{$t['homeAddCompany']}}</van-button>
  20. <!-- wx:if="{{flgCreate}}" 上线后 要加上 -->
  21. <van-button size="small" open-type="{{openType}}" data-company='create' bind:click="addCompany" bindgetphonenumber="handleGetPhoneNumber" custom-style="border-radius: 30rpx;margin-left:30rpx ;height:60rpx;width:180rpx; " type="default"> {{$t['homeCreateCompany']}}</van-button>
  22. </view>
  23. </view>
  24. <view class="foot-agreement-privacy" style="display: block;">
  25. <view style="display: flex; width: 100%;justify-content: center;align-items: center;font-size: 15px;">
  26. <van-button custom-style="border-radius: 30rpx; height:68rpx;width:180rpx; font-weight:500 ;margin-bottom:60rpx;justify-content:center;width:220rpx" size="small" color="transparent" type="default" bindtap="freeClick">
  27. <view style="display: flex;">
  28. {{$t['homeFreeLogin']}}
  29. <van-icon style="margin-left:20rpx" name="arrow" />
  30. </view>
  31. </van-button>
  32. </view>
  33. <view style="display: flex;width: 100%;justify-content: center;align-items: center; color: #FFFFFF;">
  34. <van-checkbox custom-class="checkbox-class" shape="square" value="{{agreementPrivacy}}" bind:change="onCheckboxChange" />
  35. <view style="padding-left: 10rpx;display: flex;"> {{$t['agreementPrivacy']}} <view style="text-decoration: underline;color: rgb(54, 153, 245);font-weight: bold;" data-type="user" catchtap="openAgreement">{{$t['userAgreement']}}</view>和<view style="text-decoration: underline;color: rgb(54, 153, 245);font-weight: bold;" data-type="privacy" catchtap="openAgreement">{{$t['privacyAgreement']}}</view>
  36. </view>
  37. </view>
  38. </view>
  39. </view>