30 lines
1.7 KiB
Plaintext
30 lines
1.7 KiB
Plaintext
<view class="login">
|
|
<view class="login-container" style="background-image: url({{imgAssets}}/login_bg.jpg);">
|
|
</view>
|
|
<view class="btn-content">
|
|
<view class="deal-box">
|
|
<checkbox-group bindchange="doChangeAgree">
|
|
<checkbox class="custom-wx-checkbox">
|
|
</checkbox>
|
|
</checkbox-group>
|
|
<text>阅读并同意</text>
|
|
<text class="deal" bind:tap="showServiceDeal">《用户服务协议》</text>
|
|
<text>和</text>
|
|
<text class="deal" bind:tap="showPrivacyDeal">《隐私条款》</text>
|
|
</view>
|
|
<button class="btn" open-type="getPhoneNumber" bindgetphonenumber="doGetPhoneNumber" disabled="{{!isAgree}}">授权登录</button>
|
|
</view>
|
|
</view>
|
|
<mp-half-screen-dialog closabled="{{false}}" show="{{isShowHalfScreenDialog}}" maskClosable="{{false}}">
|
|
<view slot="title">创建联系人</view>
|
|
<view slot="desc">
|
|
<view class="contact-hint">联系人用于在软件著作权创建流程中,联系人可供筛选,以确定登记信息录入人员。</view>
|
|
<input type="nickname" class="contact-input" placeholder="请输入联系人姓名" bindinput="inputContact" value="{{contactName}}" />
|
|
</view>
|
|
<view slot="footer">
|
|
<button type="primary" class="weui-btn" bind:tap="doCreateOwn">创建</button>
|
|
</view>
|
|
</mp-half-screen-dialog>
|
|
<mp-toptips ext-class="custom-tips" msg="{{errorHint}}" delay="2000" type="error" show="{{showError}}"></mp-toptips>
|
|
<mp-toptips ext-class="custom-tips" msg="{{successHint}}" delay="2000" type="success" show="{{showSuccess}}"></mp-toptips>
|
|
<mp-toptips ext-class="custom-tips" msg="{{infoHint}}" type="info" delay="3000" show="{{showInfo}}"></mp-toptips> |