ts_aimz/pages/login/login.wxml

30 lines
1.7 KiB
Plaintext
Raw Normal View History

2025-03-21 09:02:29 +08:00
<view class="login">
<view class="login-container" style="background-image: url({{imgAssets}}/login_bg.jpg);">
2025-03-21 09:02:29 +08:00
</view>
<view class="btn-content">
<view class="deal-box">
2025-03-28 18:36:17 +08:00
<checkbox-group bindchange="doChangeAgree">
<checkbox class="custom-wx-checkbox">
2025-03-28 18:36:17 +08:00
</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">
2025-04-03 17:40:39 +08:00
<view class="contact-hint">联系人用于在软件著作权创建流程中,联系人可供筛选,以确定登记信息录入人员。</view>
<input type="nickname" class="contact-input" placeholder="请输入联系人姓名" bindinput="inputContact" value="{{contactName}}" />
2025-03-28 18:36:17 +08:00
</view>
<view slot="footer">
<button type="primary" class="weui-btn" bind:tap="doCreateOwn">创建</button>
</view>
2025-03-29 15:54:33 +08:00
</mp-half-screen-dialog>
2025-04-03 10:44:12 +08:00
<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>