| 1234567891011121314151617181920212223242526272829303132333435 |
- <!--pages/clock/clock-success/clock-success.wxml-->
- <view class="container" wx:if="{{status}}">
- <view class="clock-success">
- <text wx:if="{{status === '3'}}">上班打卡成功</text>
- <text wx:if="{{status === '4'}}">下班打卡成功</text>
- </view>
- <view class="time">
- 打卡时间 18:30
- </view>
- <image src="{{imgServerUrl}}/images/clock/clock-success.png"></image>
- <view class="money">
- <text>累计预支</text>
- <text class="number">81.7</text>
- <text>元</text>
- </view>
- <view class="end" wx:if="{{status === '3'}}">
- <view>新的一天开始啦!</view>
- <view>今天的你也要光芒万丈!记得下班也要打卡哦!</view>
- </view>
- <view class="end" wx:if="{{status === '4'}}">
- <view>
- <text>今日打卡已完成,打卡时长</text> <text class="number">10</text>
- <text>小时,</text>
- </view>
- <view>
- <text>本周累计预支工资</text>
- <text class="number">21.88</text>
- <text>元。明天也要努力哦!</text>
- </view>
- </view>
- <view class="btn" bindtap="checkResult">
- 查看打卡结果
- </view>
- </view>
|