clock-success.wxml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--pages/clock/clock-success/clock-success.wxml-->
  2. <view class="container" wx:if="{{status}}">
  3. <view class="clock-success">
  4. <text wx:if="{{status === '3'}}">上班打卡成功</text>
  5. <text wx:if="{{status === '4'}}">下班打卡成功</text>
  6. </view>
  7. <view class="time">
  8. 打卡时间 18:30
  9. </view>
  10. <image src="{{imgServerUrl}}/images/clock/clock-success.png"></image>
  11. <view class="money">
  12. <text>累计预支</text>
  13. <text class="number">81.7</text>
  14. <text>元</text>
  15. </view>
  16. <view class="end" wx:if="{{status === '3'}}">
  17. <view>新的一天开始啦!</view>
  18. <view>今天的你也要光芒万丈!记得下班也要打卡哦!</view>
  19. </view>
  20. <view class="end" wx:if="{{status === '4'}}">
  21. <view>
  22. <text>今日打卡已完成,打卡时长</text> <text class="number">10</text>
  23. <text>小时,</text>
  24. </view>
  25. <view>
  26. <text>本周累计预支工资</text>
  27. <text class="number">21.88</text>
  28. <text>元。明天也要努力哦!</text>
  29. </view>
  30. </view>
  31. <view class="btn" bindtap="checkResult">
  32. 查看打卡结果
  33. </view>
  34. </view>