| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!-- 新引导页 -->
- <view style="height: 100vh;width:100%;">
- <image style=" height: 100%;width:100%;" mode="scaleToFill" src="{{imageUrl + 'login.png'}}" />
- <view class="base-absolute">
- <view style="font-size: 24px;margin-top: 60rpx;">
- {{$t['homeTitle']}}
- </view>
- <view style="margin-top: 100rpx; display: flex;">
- <!-- <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> -->
- <!--了解产品-->
- <!-- <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> -->
- </view>
- <view wx:if="{{flgTel}}" style="margin-top: 60rpx; display: flex;">
- <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>
- <!-- wx:if="{{flgCreate}}" 上线后 要加上 -->
- <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>
- </view>
- <view wx:if="{{!flgTel}}" style="margin-top: 60rpx; display: flex;">
- <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>
- <!-- wx:if="{{flgCreate}}" 上线后 要加上 -->
- <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>
- </view>
- </view>
- <view class="foot-agreement-privacy" style="display: block;">
- <view style="display: flex; width: 100%;justify-content: center;align-items: center;font-size: 15px;">
- <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">
- <view style="display: flex;">
- {{$t['homeFreeLogin']}}
- <van-icon style="margin-left:20rpx" name="arrow" />
- </view>
- </van-button>
- </view>
- <view style="display: flex;width: 100%;justify-content: center;align-items: center; color: #FFFFFF;">
- <van-checkbox custom-class="checkbox-class" shape="square" value="{{agreementPrivacy}}" bind:change="onCheckboxChange" />
- <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>
- </view>
- </view>
- </view>
- </view>
|