clockIn.bak.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <view class="clock">
  3. <view class="clock-button">
  4. <view class="clock-button-outer-animate"></view>
  5. <view class="clock-button-outer">
  6. <view class="clock-button-inner">
  7. <view class="tips">
  8. <view>上班打卡</view>
  9. <view>{{ currentTime }}</view>
  10. </view>
  11. </view>
  12. </view>
  13. </view>
  14. <view class="clock-tips">
  15. <view class="clock-tips-content">
  16. <u-icon name="checkmark-circle-fill" color="#0E9CFF" size="15"></u-icon>
  17. <view><view class="address">{{ address }}</view><text @click="positionLocation()">重新定位?</text>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </template>
  23. <script>
  24. import QQMapWX from '@/static/js/qqmap-wx-jssdk.min.js'
  25. export default {
  26. data() {
  27. return {
  28. currentTime: '',
  29. qqMap: new QQMapWX({
  30. key: 'CWWBZ-F2T36-ZQ6SU-EDL5X-Y3EUT-3HBIF',
  31. vm: this
  32. }),
  33. address: ''
  34. }
  35. },
  36. onShow() {
  37. this.currentDate();
  38. this.positionLocation()
  39. },
  40. onUnload() {
  41. if (this.formatDate) {
  42. clearInterval(this.formatDate); // 在Vue实例销毁前,清除时间定时器
  43. }
  44. },
  45. methods: {
  46. positionLocation() {
  47. uni.showLoading({
  48. title: '定位中...'
  49. })
  50. wx.getLocation({
  51. type: 'gcj02',
  52. success: (res) => {
  53. this.qqMap.reverseGeocoder({
  54. location: {
  55. longitude: res.longitude,
  56. latitude: res.latitude
  57. },
  58. success: (res) => {
  59. if (res?.result?.formatted_addresses) {
  60. this.address = res.result.formatted_addresses.recommend;
  61. } else {
  62. uni.showToast({
  63. title: '获取位置失败!',
  64. duration: 3000
  65. })
  66. }
  67. uni.hideLoading()
  68. },
  69. fail: () => {
  70. uni.showToast({
  71. title: '获取位置失败!',
  72. duration: 3000
  73. })
  74. uni.hideLoading()
  75. }
  76. })
  77. },
  78. fail: () => {
  79. uni.showToast({
  80. title: '获取位置失败!',
  81. duration: 3000
  82. })
  83. uni.hideLoading()
  84. }
  85. });
  86. },
  87. currentDate() {
  88. setInterval(this.formatDate, 500);
  89. },
  90. formatDate() {
  91. let date = new Date();
  92. let year = date.getFullYear(); // 年
  93. let month = date.getMonth() + 1; // 月
  94. let day = date.getDate(); // 日
  95. let week = date.getDay(); // 星期
  96. let hour = date.getHours(); // 时
  97. hour = hour < 10 ? "0" + hour : hour; // 如果只有一位,则前面补零
  98. let minute = date.getMinutes(); // 分
  99. minute = minute < 10 ? "0" + minute : minute; // 如果只有一位,则前面补零
  100. let second = date.getSeconds(); // 秒
  101. second = second < 10 ? "0" + second : second; // 如果只有一位,则前面补零
  102. this.currentTime = `${hour}:${minute}:${second}`;
  103. }
  104. }
  105. }
  106. </script>
  107. <style lang="scss" scoped>
  108. .clock {
  109. &-button {
  110. position: relative;
  111. animation-name: example;
  112. animation-duration: 2s;
  113. animation-fill-mode: forwards;
  114. &-outer {
  115. margin: 0 auto;
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. &-animate {
  120. position: absolute;
  121. top: 50%;
  122. left: 50%;
  123. margin-left: -135rpx;
  124. margin-top: -135rpx;
  125. width: 270rpx;
  126. height: 270rpx;
  127. background-color: #98D4FE;
  128. border-radius: 50%;
  129. z-index: -1;
  130. animation: scaleUp 3s infinite;
  131. }
  132. @keyframes scaleUp {
  133. 0% {
  134. transform: scale3d(0.8, 0.8, 0.8);
  135. }
  136. 50% {
  137. transform: scale3d(1.3, 1.3, 1.3);
  138. }
  139. 100% {
  140. transform: scale3d(0.8, 0.8, 0.8);
  141. }
  142. }
  143. }
  144. @keyframes example {
  145. from {
  146. top: 0;
  147. }
  148. to {
  149. top: 286rpx;
  150. }
  151. }
  152. &-inner {
  153. width: 220rpx;
  154. height: 220rpx;
  155. background-color: #0E9CFF;
  156. border-radius: 50%;
  157. display: flex;
  158. align-items: center;
  159. justify-content: center;
  160. color: #fff;
  161. .tips {
  162. view {
  163. color: #f2f2f2;
  164. font-size: 34rpx;
  165. text-align: center;
  166. &:last-child {
  167. color: #ddd;
  168. font-size: 30rpx;
  169. margin-top: 10rpx;
  170. }
  171. }
  172. }
  173. }
  174. }
  175. &-tips {
  176. text-align: center;
  177. margin-top: 520rpx;
  178. &-content {
  179. display: flex;
  180. align-items: center;
  181. justify-content: center;
  182. color: #000;
  183. font-size: 24rpx;
  184. view {
  185. margin-left: 5rpx;
  186. text {
  187. color: #F4993A;
  188. }
  189. }
  190. }
  191. }
  192. }
  193. .address {
  194. display: inline-block;
  195. width: 400rpx;
  196. line-height: 24rpx;
  197. overflow: hidden;
  198. white-space: nowrap;
  199. text-overflow: ellipsis;
  200. }
  201. </style>