clockIn.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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(99deg, #7A4398 0%, #5A5DB9 100%)' }"></u-navbar>
  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 v-show="!roadSelectShow" 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="default" @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. import distance from "utils/getDistance.js"
  95. export default{
  96. data(){
  97. return{
  98. roadName:'请选择打卡路段',
  99. roadSelectShow:false,
  100. roadListData:[],
  101. roadNo:'',
  102. payeeinfo:[],
  103. theRoad:[],
  104. currentTime: new Date().getTime(), // 获取当前时间
  105. outPosition:true,//是否超出打卡范围
  106. positionInfo:false,//是否线上位置关系信息
  107. remarkPopupShow:false,//备注弹框
  108. remarkTip:'',
  109. remark:'',
  110. workType:1,
  111. punchDistance:0, //打卡距离
  112. punchRange:0, //打卡范围
  113. outwork:0, //是否外勤 0-否 1-是
  114. // 地图
  115. covers: [],
  116. circles:[{
  117. latitude: '',
  118. longitude: '',
  119. radius: 300,
  120. strokeWidth: 1,
  121. color: "#428BCA88",
  122. fillColor: "#B6E1F248",
  123. }],
  124. latitude: '',
  125. longitude: '',
  126. }
  127. },
  128. onLoad(){
  129. this.getRoadList();
  130. },
  131. onShow() {
  132. let that = this;
  133. setInterval(function () {
  134. that.currentTime = new Date().getTime()//修改数据让他可以实时更新
  135. }, 1000);
  136. // this.getPunchInfo(this.roadNo);
  137. },
  138. methods:{
  139. getLocation(){
  140. //#ifdef APP-PLUS
  141. // ALog?.info({msg:'请求定位'});
  142. //#endif
  143. uni.showLoading({ title: '定位中'});
  144. let that = this;
  145. uni.getLocation({
  146. type:"gcj02",
  147. success : function (res) {
  148. console.log('定位',res)
  149. uni.hideLoading();
  150. //#ifdef APP-PLUS
  151. // var dst = `${that.payeeinfo.latitude},${that.payeeinfo.longitude}`;
  152. // var src = res.latitude + ',' + res.longitude;
  153. // var locRet = location?.distance?.(src, dst);
  154. that.positionInfo = true;
  155. // that.punchDistance = locRet.distance;
  156. that.punchRange = that.payeeinfo.workDistance;
  157. // console.log('res.latitude',res.latitude)
  158. // console.log('res.longitude',res.longitude)
  159. let myDistance = distance(res.latitude,res.longitude,that.payeeinfo.latitude,that.payeeinfo.longitude);
  160. // console.log('myDistance',myDistance)
  161. // console.log('workDistance',that.payeeinfo.workDistance)
  162. that.punchDistance = myDistance;
  163. if(myDistance <= that.payeeinfo.workDistance){//在打卡范围内
  164. //#endif
  165. //#ifdef H5
  166. that.positionInfo = true;
  167. let myDistance = distance(res.latitude,res.longitude,that.payeeinfo.latitude,that.payeeinfo.longitude);
  168. that.punchDistance = myDistance;
  169. that.punchRange = that.payeeinfo.workDistance;
  170. // console.log('res.latitude',res.latitude)
  171. // console.log('res.longitude',res.longitude)
  172. // console.log('myDistance',myDistance)
  173. // console.log('workDistance',that.payeeinfo.workDistance)
  174. // console.log('that.payeeinfo.latitude',that.payeeinfo.latitude)
  175. if(myDistance <= that.payeeinfo.workDistance){//在打卡范围内
  176. //#endif
  177. that.outPosition = false;
  178. that.outwork = 0;
  179. if(that.workType==1){
  180. let workStartTime = new Date(that.payeeinfo.workStartTime.replace(/-/g,'/'));
  181. if(that.currentTime<=workStartTime.getTime()){
  182. }else{//迟到
  183. that.remarkTip = '您已迟到!';
  184. that.remarkPopupShow = true;
  185. return;
  186. }
  187. console.log('workStartTime',workStartTime.getTime())
  188. }else if(that.workType==2){
  189. if(that.payeeinfo.isPunchOut){
  190. that.$refs.uToast.show({
  191. title: '已经打过下班卡!',
  192. type: 'error',
  193. });
  194. return;
  195. };
  196. let workEndTime = new Date(that.payeeinfo.workEndTime.replace(/-/g,'/'));
  197. if(that.currentTime<=workEndTime.getTime()){//
  198. that.remarkTip = '还未到下班时间,现在打卡将视为早退!';
  199. that.remarkPopupShow = true;
  200. return;
  201. }
  202. console.log('workEndTime',workEndTime.getTime())
  203. }
  204. that.getPunchIn();
  205. }else{//不在打卡范围内
  206. that.outPosition = true;
  207. that.outwork = 1;
  208. // that.remarkPopupShow = true;
  209. // console.table({locRet:locRet,workDistance:that.payeeinfo.workDistance,r:locRet<=that.payeeinfo.workDistance});
  210. that.$refs.uToast.show({
  211. title: '超出打卡范围!',
  212. type: 'error',
  213. });
  214. };
  215. },
  216. fail: function(res){
  217. uni.hideLoading();
  218. console.log('getLocation err',res)
  219. //#ifdef APP-PLUS
  220. // ALog?.info({msg:'请求错误',err:res})
  221. //#endif
  222. }
  223. })
  224. },
  225. handlePunchIn(){
  226. this.getLocation();
  227. },
  228. remarkClose(){
  229. this.remark = '';
  230. },
  231. getRoadList(){
  232. let that = this;
  233. that.$u.api.getRoadList()
  234. .then(res=>{
  235. this.roadListData = res.data;
  236. console.log('this.getRoadList',res)
  237. }).catch(err=>{
  238. this.$refs.uToast.show({
  239. title: err.msg,
  240. type: 'error',
  241. });
  242. });
  243. },
  244. roadSelectConfirm(e){
  245. // console.log('roadSelectConfirm',e[0]);
  246. this.roadName = e[0].label;
  247. this.roadNo = e[0].value;
  248. console.log('this.roadNo',this.roadNo);
  249. this.getPunchInfo(this.roadNo);
  250. },
  251. getPunchIn(){
  252. let that = this;
  253. let param ={
  254. latitude:that.payeeinfo.latitude,
  255. longitude:that.payeeinfo.longitude,
  256. remark:that.remark,
  257. roadNo:that.payeeinfo.roadNo,
  258. workType:that.workType,
  259. punchDistance: that.punchDistance,
  260. punchRange: that.punchRange,
  261. outwork: that.outwork
  262. }
  263. that.$u.api.punchIn(param)
  264. .then(res=>{
  265. this.$refs.uToast.show({
  266. title: res.msg,
  267. type: 'success',
  268. });
  269. this.remarkPopupShow = false;
  270. this.getPunchInfo(this.roadNo);
  271. console.log('this.punchIn',res)
  272. }).catch(err=>{
  273. if(err.errMsg){
  274. this.$refs.uToast.show({
  275. title: '请检查网络',
  276. type: 'error',
  277. });
  278. return false;
  279. };
  280. this.$refs.uToast.show({
  281. title: err.msg,
  282. type: 'error',
  283. });
  284. console.log('punchIn ',err)
  285. });
  286. },
  287. customBack(){
  288. uni.reLaunch({
  289. url: '/pages/index/index'
  290. });
  291. },
  292. getPunchInfo(roadNo){
  293. if(!roadNo){
  294. console.log('this.$refs',this.$refs);
  295. setTimeout(()=>{
  296. this.$refs.uToast.show({
  297. title: '请先选择路段!',
  298. type: 'error',
  299. });
  300. },1000)
  301. };
  302. console.log('roadNo',roadNo);
  303. this.$u.api.punchInfo({roadNo:roadNo})
  304. .then(res=>{
  305. // this.$refs.uToast.show({
  306. // title: res.msg,
  307. // type: 'success',
  308. // });
  309. this.payeeinfo ={...this.payeeinfo,...res.data};
  310. // console.log('getPunchInfo res',res);
  311. this.latitude = res.data.latitude;
  312. this.longitude = res.data.longitude;
  313. this.circles[0].latitude = res.data.latitude;
  314. this.circles[0].longitude = res.data.longitude;
  315. this.circles[0].radius = res.data.workDistance;
  316. // console.log('this.circles',this.circles);
  317. let mark = {
  318. latitude:res.data.latitude,
  319. longitude:res.data.longitude
  320. };
  321. this.covers.push(mark);
  322. if(!res.data.isPunchIn){//还未打上班卡
  323. this.workType = 1;
  324. }
  325. else{//已打上班卡
  326. this.workType = 2;
  327. }
  328. // console.log('this.payeeinfo',this.payeeinfo)
  329. }).catch(err=>{
  330. if(err.errMsg){
  331. this.$refs.uToast.show({
  332. title: '请检查网络',
  333. type: 'error',
  334. });
  335. return false;
  336. };
  337. this.$refs.uToast.show({
  338. title: err.msg,
  339. type: 'error',
  340. });
  341. console.log('punchInfo ',err)
  342. });
  343. }
  344. },
  345. filters:{
  346. filterWorkType(WorkType){
  347. return (WorkType==1)?'上班':'下班'
  348. }
  349. }
  350. }
  351. </script>
  352. <style>
  353. page{background-color: #F4F4F4;}
  354. </style>
  355. <style lang="scss">
  356. @import './clockIn.scss'
  357. </style>