clockIn.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. <template>
  2. <view>
  3. <u-navbar
  4. title="考勤"
  5. title-color="#fff"
  6. :custom-back="customBack"
  7. :border-bottom="false"
  8. back-icon-color="#CCE8FF"
  9. :background="{background: 'linear-gradient(145deg, #41AFF9 0%, #2D8CFB 100%)' }">
  10. </u-navbar>
  11. <view class="wrap">
  12. <u-cell-item class="road-select-cell" icon="map-fill" bg-color="#fff" :border-bottom="false" :title="roadName" :arrow="true" @click="roadSelectShow = true" arrow-direction="right"></u-cell-item>
  13. <u-select v-model="roadSelectShow" :list="roadListData" value-name="roadNo" label-name="roadName" @confirm="roadSelectConfirm"></u-select>
  14. <view class="payeeinfo u-flex">
  15. <u-image src="../../static/img/default-portrait.png" width="87" height="87"></u-image>
  16. <view class="payeeinfo-text">
  17. <view class="name">巡检人员:{{vuex_user.officerName||'智慧停车'}}</view>
  18. <view class="id">工号:{{vuex_user.officerNo}}</view>
  19. </view>
  20. </view>
  21. <view class="attence-block">
  22. <view class="today-attence u-flex">
  23. <view class="today-attence-item">
  24. <view class="work-time">上班:{{payeeinfo.workStartTime?payeeinfo.workStartTime.slice(11):''}}</view>
  25. <view class="my-time" v-if="payeeinfo.isPunchIn">
  26. <u-icon name="checkmark-circle-fill" color="#2979ff" size="28"></u-icon>
  27. {{payeeinfo.punchInTime?payeeinfo.punchInTime.slice(11):''}}已打卡
  28. </view>
  29. <view class="my-time" v-else>未打卡</view>
  30. </view>
  31. <view class="today-attence-item">
  32. <view class="work-time">下班:{{payeeinfo.workEndTime?payeeinfo.workEndTime.slice(11):''}}</view>
  33. <view class="my-time" v-if="payeeinfo.isPunchOut">
  34. <u-icon name="checkmark-circle-fill" color="#2979ff" size="28"></u-icon>
  35. {{payeeinfo.punchOutTime?payeeinfo.punchOutTime.slice(11):''}}已打卡
  36. </view>
  37. <view class="my-time" v-else>未打卡</view>
  38. </view>
  39. </view>
  40. <view class="attence-button u-flex u-flex-wrap" @click="handlePunchIn">
  41. <view class="attence-button-type">{{workType|filterWorkType}}打卡</view>
  42. <view class="attence-button-time">{{ $u.timeFormat(currentTime, 'hh:MM:ss') }}</view>
  43. </view>
  44. <view class="position-tip" v-if="!outPosition&&positionInfo">
  45. <u-icon name="checkmark-circle-fill" color="#21CF3D" size="28"></u-icon>
  46. 您已进入考勤范围:{{payeeinfo.roadName}}
  47. </view>
  48. <view class="position-tip" v-else-if="outPosition&&positionInfo">
  49. <u-icon name="checkmark-circle-fill" color="#da0808" size="28"></u-icon>
  50. 您已超出考勤范围:{{payeeinfo.roadName}}
  51. </view>
  52. <!-- <view class="statistics u-flex">
  53. <view class="statistics-item">
  54. <view class="statistics-item-til">本月已打卡</view>
  55. <view class="statistics-item-con">
  56. <span class="number">{{payeeinfo.punched}}</span>
  57. </view>
  58. </view>
  59. <view class="statistics-item">
  60. <view class="statistics-item-til">月目标打卡</view>
  61. <view class="statistics-item-con">
  62. <span class="number">{{payeeinfo.punchTotal}}</span>
  63. </view>
  64. </view>
  65. </view> -->
  66. <map id="navmap" scale="13" :latitude="latitude" :longitude="longitude" :markers="covers" :circles="circles" ></map>
  67. </view>
  68. </view>
  69. <!-- <u-bottom color="#949494">
  70. <view class="bottom" slot="content">
  71. 城市智慧停车 版权所有
  72. </view>
  73. </u-bottom> -->
  74. <u-popup class="remark" v-model="remarkPopupShow" @close="remarkClose" mode="top">
  75. <u-button class="submit-btn" type="primary" size="mini" @click="getPunchIn">打卡</u-button>
  76. <view class="content">
  77. <u-form-item
  78. label="备注"
  79. :label-style="{fontSize:'36rpx'}"
  80. label-position="top">
  81. <u-input v-model="remark" type="textarea" />
  82. </u-form-item>
  83. <view class="remark-tip" v-if="remarkTip">{{remarkTip}}</view>
  84. </view>
  85. </u-popup>
  86. <u-toast ref="uToast" />
  87. </view>
  88. </template>
  89. <script>
  90. //#ifdef APP-PLUS
  91. var ALog = uni.requireNativePlugin("AndroidLog")
  92. var location = uni.requireNativePlugin("Location")
  93. //#endif
  94. //#ifdef H5
  95. import distance from "utils/getDistance.js"
  96. //#endif
  97. export default{
  98. data(){
  99. return{
  100. roadName:'请选择打卡路段',
  101. roadSelectShow:false,
  102. roadListData:[],
  103. roadNo:'',
  104. payeeinfo:[],
  105. theRoad:[],
  106. currentTime: new Date().getTime(), // 获取当前时间
  107. outPosition:true,//是否超出打卡范围
  108. positionInfo:false,//是否线上位置关系信息
  109. remarkPopupShow:false,//备注弹框
  110. remarkTip:'',
  111. remark:'',
  112. workType:1,
  113. punchDistance:0, //打卡距离
  114. punchRange:0, //打卡范围
  115. outwork:0, //是否外勤 0-否 1-是
  116. // 地图
  117. covers: [],
  118. circles:[{
  119. latitude: '',
  120. longitude: '',
  121. radius: 300,
  122. strokeWidth: 1,
  123. color: "#428BCA88",
  124. fillColor: "#B6E1F248",
  125. }],
  126. latitude: '',
  127. longitude: '',
  128. }
  129. },
  130. onLoad(){
  131. this.getRoadList();
  132. },
  133. onShow() {
  134. let that = this;
  135. setInterval(function () {
  136. that.currentTime = new Date().getTime()//修改数据让他可以实时更新
  137. }, 1000);
  138. // this.getPunchInfo(this.roadNo);
  139. },
  140. methods:{
  141. getLocation(){
  142. //#ifdef APP-PLUS
  143. ALog?.info({msg:'请求定位'});
  144. //#endif
  145. uni.showLoading({ title: '定位中'});
  146. let that = this;
  147. uni.getLocation({
  148. type:"gcj02",
  149. success : function (res) {
  150. uni.hideLoading();
  151. //#ifdef APP-PLUS
  152. var dst = `${that.payeeinfo.latitude},${that.payeeinfo.longitude}`;
  153. var src = res.latitude + ',' + res.longitude;
  154. var locRet = location?.distance?.(src, dst);
  155. that.positionInfo = true;
  156. that.punchDistance = locRet.distance;
  157. that.punchRange = that.payeeinfo.workDistance;
  158. if(locRet.distance <= that.payeeinfo.workDistance){//在打卡范围内
  159. //#endif
  160. //#ifdef H5
  161. that.positionInfo = true;
  162. let myDistance = distance(res.latitude,res.longitude,that.payeeinfo.latitude,that.payeeinfo.longitude);
  163. that.punchDistance = myDistance;
  164. that.punchRange = that.payeeinfo.workDistance;
  165. // console.log('res.latitude',res.latitude)
  166. // console.log('res.longitude',res.longitude)
  167. // console.log('that.payeeinfo.latitude',that.payeeinfo.latitude)
  168. if(myDistance <= that.payeeinfo.workDistance){//在打卡范围内
  169. //#endif
  170. that.outPosition = false;
  171. that.outwork = 0;
  172. if(that.workType==1){
  173. let workStartTime = new Date(that.payeeinfo.workStartTime.replace(/-/g,'/'));
  174. if(that.currentTime<=workStartTime.getTime()){
  175. }else{//迟到
  176. that.remarkTip = '您已迟到!';
  177. that.remarkPopupShow = true;
  178. return;
  179. }
  180. console.log('workStartTime',workStartTime.getTime())
  181. }else if(that.workType==2){
  182. if(that.payeeinfo.isPunchOut){
  183. that.$refs.uToast.show({
  184. title: '已经打过下班卡!',
  185. type: 'error',
  186. });
  187. return;
  188. };
  189. let workEndTime = new Date(that.payeeinfo.workEndTime.replace(/-/g,'/'));
  190. if(that.currentTime<=workEndTime.getTime()){//
  191. that.remarkTip = '还未到下班时间,现在打卡将视为早退!';
  192. that.remarkPopupShow = true;
  193. return;
  194. }
  195. console.log('workEndTime',workEndTime.getTime())
  196. }
  197. that.getPunchIn();
  198. }else{//不在打卡范围内
  199. that.outPosition = true;
  200. that.outwork = 1;
  201. // that.remarkPopupShow = true;
  202. // console.table({locRet:locRet,workDistance:that.payeeinfo.workDistance,r:locRet<=that.payeeinfo.workDistance});
  203. that.$refs.uToast.show({
  204. title: '超出打卡范围!',
  205. type: 'error',
  206. });
  207. };
  208. },
  209. fail: function(res){
  210. uni.hideLoading();
  211. console.log('getLocation err',res)
  212. //#ifdef APP-PLUS
  213. ALog?.info({msg:'请求错误',err:res})
  214. //#endif
  215. }
  216. })
  217. },
  218. handlePunchIn(){
  219. this.getLocation();
  220. },
  221. remarkClose(){
  222. this.remark = '';
  223. },
  224. getRoadList(){
  225. let that = this;
  226. that.$u.api.getRoadList()
  227. .then(res=>{
  228. this.roadListData = res.data;
  229. console.log('this.getRoadList',res)
  230. }).catch(err=>{
  231. this.$refs.uToast.show({
  232. title: err.msg,
  233. type: 'error',
  234. });
  235. });
  236. },
  237. roadSelectConfirm(e){
  238. // console.log('roadSelectConfirm',e[0]);
  239. this.roadName = e[0].label;
  240. this.roadNo = e[0].value;
  241. console.log('this.roadNo',this.roadNo);
  242. this.getPunchInfo(this.roadNo);
  243. },
  244. getPunchIn(){
  245. let that = this;
  246. let param ={
  247. latitude:that.payeeinfo.latitude,
  248. longitude:that.payeeinfo.longitude,
  249. remark:that.remark,
  250. roadNo:that.payeeinfo.roadNo,
  251. workType:that.workType,
  252. punchDistance: that.punchDistance,
  253. punchRange: that.punchRange,
  254. outwork: that.outwork
  255. }
  256. that.$u.api.punchIn(param)
  257. .then(res=>{
  258. this.$refs.uToast.show({
  259. title: res.msg,
  260. type: 'success',
  261. });
  262. this.remarkPopupShow = false;
  263. this.getPunchInfo(this.roadNo);
  264. console.log('this.punchIn',res)
  265. }).catch(err=>{
  266. if(err.errMsg){
  267. this.$refs.uToast.show({
  268. title: '请检查网络',
  269. type: 'error',
  270. });
  271. return false;
  272. };
  273. this.$refs.uToast.show({
  274. title: err.msg,
  275. type: 'error',
  276. });
  277. console.log('punchIn ',err)
  278. });
  279. },
  280. customBack(){
  281. uni.reLaunch({
  282. url: '/pages/index/index'
  283. });
  284. },
  285. getPunchInfo(roadNo){
  286. if(!roadNo){
  287. console.log('this.$refs',this.$refs);
  288. setTimeout(()=>{
  289. this.$refs.uToast.show({
  290. title: '请先选择路段!',
  291. type: 'error',
  292. });
  293. },1000)
  294. };
  295. console.log('roadNo',roadNo);
  296. this.$u.api.punchInfo({roadNo:roadNo})
  297. .then(res=>{
  298. // this.$refs.uToast.show({
  299. // title: res.msg,
  300. // type: 'success',
  301. // });
  302. this.payeeinfo ={...this.payeeinfo,...res.data};
  303. // console.log('getPunchInfo res',res);
  304. this.latitude = res.data.latitude;
  305. this.longitude = res.data.longitude;
  306. this.circles[0].latitude = res.data.latitude;
  307. this.circles[0].longitude = res.data.longitude;
  308. this.circles[0].radius = res.data.workDistance;
  309. console.log('this.circles',this.circles);
  310. let mark = {
  311. latitude:res.data.latitude,
  312. longitude:res.data.longitude
  313. };
  314. this.covers.push(mark);
  315. if(!res.data.isPunchIn){//还未打上班卡
  316. this.workType = 1;
  317. }
  318. else{//已打上班卡
  319. this.workType = 2;
  320. }
  321. // console.log('this.payeeinfo',this.payeeinfo)
  322. }).catch(err=>{
  323. if(err.errMsg){
  324. this.$refs.uToast.show({
  325. title: '请检查网络',
  326. type: 'error',
  327. });
  328. return false;
  329. };
  330. this.$refs.uToast.show({
  331. title: err.msg,
  332. type: 'error',
  333. });
  334. console.log('punchInfo ',err)
  335. });
  336. }
  337. },
  338. filters:{
  339. filterWorkType(WorkType){
  340. return (WorkType==1)?'上班':'下班'
  341. }
  342. }
  343. }
  344. </script>
  345. <style lang="scss">
  346. @import './clockIn.scss'
  347. </style>