27 lines
1.4 KiB
Plaintext
27 lines
1.4 KiB
Plaintext
<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" />
|