Files
quinn-wx/pages/register/index.wxml
2022-12-16 18:21:26 +08:00

27 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<view>
<t-steps class="demo-steps" defaultCurrent="0" readonly>
<t-step-item title="用户名" content="选择用户名" />
<t-step-item title="密码" content="设置密码" />
<t-step-item title="成功" content="完成注册" />
</t-steps>
</view>
<view class="check-countdown">
请在90秒内选择您心仪的用户名还有<t-countdown bind:end="callEnd" time="{{10000}}" showDay="{{false}}" showHour="{{false}}" />
</view>
<t-grid class="five" column="{{4}}" align="center" border="{{border}}">
<t-grid-item wx:for="{{userNameList}}" wx:key="index" text="{{item.id}}">
<t-tag wx:if="{{item.checked}}" theme="success" bind:tap="handleCheckTagChange" id="{{item.id}}" data-name="{{item.userName}}" size="large">{{item.userName}}</t-tag>
<t-tag wx:else theme="primary" bind:tap="handleCheckTagChange" id="{{item.id}}" data-name="{{item.userName}}" size="large">{{item.userName}}</t-tag>
</t-grid-item>
</t-grid>
<t-dialog
visible="{{nameConfirm}}"
title="确定选择【{{checkedName}}】?"
t-class-confirm="custom-confirm-btn"
confirm-btn="就它了"
cancel-btn="再想想"
bind:confirm="checkName"
bind:cancel="closeDialog"
/>
<t-dialog visible="{{timeOutConfirm}}" title="超时未选择,注册中止" confirm-btn="好的" bind:confirm="checkTimeout" />