31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
<!--pages/sign/sign.wxml-->
|
|
<view class="container">
|
|
<t-dropdown-menu>
|
|
<t-dropdown-item
|
|
label="{{label}}"
|
|
options="{{singleSelect.options}}"
|
|
value="{{singleSelect.value}}"
|
|
keys="{{keys}}"
|
|
bindchange="handleSingleSelect"
|
|
/>
|
|
</t-dropdown-menu>
|
|
|
|
<view class="list">
|
|
<view class="round" wx:if="{{isSing == false && isSingOut == false}}" bindtap="singIn">
|
|
<text class="head">打卡签到</text>
|
|
<text class="time">{{time}}</text>
|
|
</view>
|
|
<view class="round out" wx:if="{{isSing == true && isSingOut == false}}" bindtap="singOut">
|
|
<text class="head">打卡签退</text>
|
|
<text class="time">{{time}}</text>
|
|
</view>
|
|
<view class="round success" wx:if="{{isSing == true && isSingOut == true}}">
|
|
<text class="head">签到完成</text>
|
|
<text class="time">{{time}}</text>
|
|
</view>
|
|
<view class="site">
|
|
<t-icon name="check" size="36rpx" data-name="check" bind:click="onIconTap" />
|
|
<text>{{address}}</text>
|
|
</view>
|
|
</view>
|
|
</view> |