2025-03-21 09:02:29 +08:00
|
|
|
<view class="login">
|
|
|
|
<view class="login-container">
|
|
|
|
<view style="display: flex;flex-direction: column;">
|
|
|
|
<text style="padding: 20rpx;">{{code}}</text>
|
|
|
|
<text style="padding: 20rpx;">{{msg}}</text>
|
|
|
|
<text style="padding: 20rpx;">{{errno}}</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="btn-content">
|
|
|
|
<view class="deal-box">
|
2025-03-28 18:36:17 +08:00
|
|
|
<checkbox-group bindchange="doChangeAgree">
|
|
|
|
<checkbox>
|
|
|
|
</checkbox>
|
|
|
|
</checkbox-group>
|
2025-03-21 09:02:29 +08:00
|
|
|
<text>阅读并同意</text>
|
|
|
|
<text class="deal" bind:tap="showServiceDeal">《用户服务协议》</text>
|
|
|
|
<text>和</text>
|
|
|
|
<text class="deal" bind:tap="showPrivacyDeal">《隐私条款》</text>
|
|
|
|
</view>
|
2025-03-28 18:36:17 +08:00
|
|
|
<button class="btn" open-type="getPhoneNumber" bindgetphonenumber="doGetPhoneNumber" disabled="{{!isAgree}}">授权登录</button>
|
2025-03-21 09:02:29 +08:00
|
|
|
</view>
|
2025-03-28 18:36:17 +08:00
|
|
|
</view>
|
|
|
|
<mp-half-screen-dialog closabled="{{false}}" show="{{isShowHalfScreenDialog}}" maskClosable="{{false}}">
|
|
|
|
<view slot="title">创建联系人</view>
|
|
|
|
<view slot="desc">
|
|
|
|
<input placeholder="请输入联系人姓名" style="font-size: 16px;color: black;line-height: 20px;" bindinput="inputContact" value="{{contactName}}" />
|
|
|
|
</view>
|
|
|
|
<view slot="footer">
|
|
|
|
<button type="primary" class="weui-btn" bind:tap="doCreateOwn">创建</button>
|
|
|
|
</view>
|
|
|
|
</mp-half-screen-dialog>
|