clock.wxml 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!--pages/clock/clock.wxml-->
  2. <view class="container">
  3. <view class="no-authentication" wx:if="{{approveStatus === 0}}">
  4. <view class="header">
  5. <image src="{{imgServerUrl}}/images/clock/clock-bg.png" class="no-authentication-bg" mode="widthFixed"></image>
  6. </view>
  7. <view class="no-authentication-content">
  8. <image src="{{imgServerUrl}}/images/clock/clock-no-certified.png" class="no-authentication-img"></image>
  9. <view class="no-authentication-content-text">
  10. <view>您的审核未通过</view>
  11. <view>
  12. <text>请再次上传您本人的真实身份证图片,</text>
  13. <view>
  14. <text>已经上传将无法更改。</text>
  15. </view>
  16. </view>
  17. </view>
  18. <navigator class="no-authentication-content-button" url="../identification/index">
  19. 前往认证
  20. </navigator>
  21. </view>
  22. <image src="{{imgServerUrl}}/images/clock/clock-video.png" class="video"></image>
  23. </view>
  24. <view class="no-pass" wx:elif="{{approveStatus === 2}}">
  25. <view class="header">
  26. <image src="../../images/clock/clock-bg.png" class="no-pass-bg" mode="widthFixed"></image>
  27. </view>
  28. <view class="no-pass-content">
  29. <image src="../../images/clock/clock-no-certified.png" class="no-passs-img"></image>
  30. <view class="no-pass-content-text">
  31. <view>您还没有实名认证</view>
  32. <view>为保证账户安全,请完成实名认证后再进行打卡签到。</view>
  33. </view>
  34. <navigator class="no-pass-content-button" url="../identification/index">
  35. 前往认证
  36. </navigator>
  37. </view>
  38. <image src="../../images/clock/clock-video.png" class="video"></image>
  39. </view>
  40. <view class="pass" wx:else>
  41. <view class="pass-header">
  42. <image src="{{imgServerUrl}}/images/clock/clock-bg-home.png" class="pass-header-bg" mode="widthFixed"></image>
  43. <view class="pass-header-content">
  44. <view class="time">
  45. <view>本周工时</view>
  46. <view>
  47. <text class="number">{{time}}</text>
  48. <text class="unit">小时</text>
  49. </view>
  50. </view>
  51. <view class="money">
  52. <view>本周预支</view>
  53. <view>
  54. <text class="number">{{money}}</text>
  55. <text class="unit">元</text>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="pass-header-message">实际预支发放结合企业考勤,以上金额仅供参考。</view>
  60. <view class="pass-header-footer">
  61. <view class="pass-header-footer-view" wx:for="{{navigation}}" wx:key='index'>
  62. <image src='{{imgServerUrl}}{{item.image}}'></image>
  63. <text>{{item.text}}</text>
  64. </view>
  65. </view>
  66. </view>
  67. <view class="pass-content">
  68. <view class="status">
  69. <view class="clock-in">
  70. <text>上班打卡</text>
  71. <text class="status-text">未完成</text>
  72. </view>
  73. <view class="clock-out">
  74. <text>上班打卡</text>
  75. <text class="status-text">未完成</text>
  76. </view>
  77. </view>
  78. <view class="rule-messgae">规则:请根据企业实际上下班时间打卡</view>
  79. <view wx:if="{{approveStatus === 1}}" class="image">
  80. <image src="{{imgServerUrl}}/images/clock/clock-approving.png"></image>
  81. </view>
  82. <view wx:else class="image">
  83. <image src="{{imgServerUrl}}/images/clock/clock-in.png"></image>
  84. </view>
  85. <view class="clock-status" wx:if="{{approveStatus === 1}}">
  86. <image src="{{imgServerUrl}}/images/clock/clock-waring.png"></image>
  87. <text>我们会尽快完成实名认证审核</text>
  88. </view>
  89. <view class="clock-status" wx:else>
  90. <image src="{{imgServerUrl}}/images/clock/clock-waring.png"></image>
  91. <text>我们会尽快完成实名认证审核</text>
  92. </view>
  93. </view>
  94. <image src="{{imgServerUrl}}/images/clock/clock-video-home.png" class="video"></image>
  95. </view>
  96. </view>