clockIn.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378
  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="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. 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. alert(res.latitude);
  149. // console.log('定位',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. // console.log('res.latitude',res.latitude)
  159. // console.log('res.longitude',res.longitude)
  160. let myDistance = distance(res.latitude,res.longitude,that.payeeinfo.latitude,that.payeeinfo.longitude);
  161. // console.log('myDistance',myDistance)
  162. // console.log('workDistance',that.payeeinfo.workDistance)
  163. that.punchDistance = myDistance;
  164. if(myDistance <= that.payeeinfo.workDistance){//在打卡范围内
  165. //#endif
  166. //#ifdef H5
  167. that.positionInfo = true;
  168. let myDistance = distance(res.latitude,res.longitude,that.payeeinfo.latitude,that.payeeinfo.longitude);
  169. that.punchDistance = myDistance;
  170. that.punchRange = that.payeeinfo.workDistance;
  171. // console.log('res.latitude',res.latitude)
  172. // console.log('res.longitude',res.longitude)
  173. // console.log('myDistance',myDistance)
  174. // console.log('workDistance',that.payeeinfo.workDistance)
  175. // console.log('that.payeeinfo.latitude',that.payeeinfo.latitude)
  176. if(myDistance <= that.payeeinfo.workDistance){//在打卡范围内
  177. //#endif
  178. that.outPosition = false;
  179. that.outwork = 0;
  180. if(that.workType==1){
  181. let workStartTime = new Date(that.payeeinfo.workStartTime.replace(/-/g,'/'));
  182. if(that.currentTime<=workStartTime.getTime()){
  183. }else{//迟到
  184. that.remarkTip = '您已迟到!';
  185. that.remarkPopupShow = true;
  186. return;
  187. }
  188. console.log('workStartTime',workStartTime.getTime())
  189. }else if(that.workType==2){
  190. if(that.payeeinfo.isPunchOut){
  191. that.$refs.uToast.show({
  192. title: '已经打过下班卡!',
  193. type: 'error',
  194. });
  195. return;
  196. };
  197. let workEndTime = new Date(that.payeeinfo.workEndTime.replace(/-/g,'/'));
  198. if(that.currentTime<=workEndTime.getTime()){//
  199. that.remarkTip = '还未到下班时间,现在打卡将视为早退!';
  200. that.remarkPopupShow = true;
  201. return;
  202. }
  203. console.log('workEndTime',workEndTime.getTime())
  204. }
  205. that.getPunchIn();
  206. }else{//不在打卡范围内
  207. that.outPosition = true;
  208. that.outwork = 1;
  209. // that.remarkPopupShow = true;
  210. // console.table({locRet:locRet,workDistance:that.payeeinfo.workDistance,r:locRet<=that.payeeinfo.workDistance});
  211. that.$refs.uToast.show({
  212. title: '超出打卡范围!',
  213. type: 'error',
  214. });
  215. };
  216. },
  217. fail: function(res){
  218. uni.hideLoading();
  219. console.log('getLocation err',res)
  220. //#ifdef APP-PLUS
  221. // ALog?.info({msg:'请求错误',err:res})
  222. //#endif
  223. }
  224. })
  225. },
  226. handlePunchIn(){
  227. this.getLocation();
  228. },
  229. remarkClose(){
  230. this.remark = '';
  231. },
  232. getRoadList(){
  233. let that = this;
  234. that.$u.api.getRoadList()
  235. .then(res=>{
  236. this.roadListData = res.data;
  237. console.log('this.getRoadList',res)
  238. }).catch(err=>{
  239. this.$refs.uToast.show({
  240. title: err.msg,
  241. type: 'error',
  242. });
  243. });
  244. },
  245. roadSelectConfirm(e){
  246. // console.log('roadSelectConfirm',e[0]);
  247. this.roadName = e[0].label;
  248. this.roadNo = e[0].value;
  249. console.log('this.roadNo',this.roadNo);
  250. this.getPunchInfo(this.roadNo);
  251. },
  252. getPunchIn(){
  253. let that = this;
  254. let param ={
  255. latitude:that.payeeinfo.latitude,
  256. longitude:that.payeeinfo.longitude,
  257. remark:that.remark,
  258. roadNo:that.payeeinfo.roadNo,
  259. workType:that.workType,
  260. punchDistance: that.punchDistance,
  261. punchRange: that.punchRange,
  262. outwork: that.outwork
  263. }
  264. that.$u.api.punchIn(param)
  265. .then(res=>{
  266. this.$refs.uToast.show({
  267. title: res.msg,
  268. type: 'success',
  269. });
  270. this.remarkPopupShow = false;
  271. this.getPunchInfo(this.roadNo);
  272. console.log('this.punchIn',res)
  273. }).catch(err=>{
  274. if(err.errMsg){
  275. this.$refs.uToast.show({
  276. title: '请检查网络',
  277. type: 'error',
  278. });
  279. return false;
  280. };
  281. this.$refs.uToast.show({
  282. title: err.msg,
  283. type: 'error',
  284. });
  285. console.log('punchIn ',err)
  286. });
  287. },
  288. customBack(){
  289. uni.reLaunch({
  290. url: '/pages/index/index'
  291. });
  292. },
  293. getPunchInfo(roadNo){
  294. if(!roadNo){
  295. console.log('this.$refs',this.$refs);
  296. setTimeout(()=>{
  297. this.$refs.uToast.show({
  298. title: '请先选择路段!',
  299. type: 'error',
  300. });
  301. },1000)
  302. };
  303. console.log('roadNo',roadNo);
  304. this.$u.api.punchInfo({roadNo:roadNo})
  305. .then(res=>{
  306. // this.$refs.uToast.show({
  307. // title: res.msg,
  308. // type: 'success',
  309. // });
  310. this.payeeinfo ={...this.payeeinfo,...res.data};
  311. // console.log('getPunchInfo res',res);
  312. this.latitude = res.data.latitude;
  313. this.longitude = res.data.longitude;
  314. this.circles[0].latitude = res.data.latitude;
  315. this.circles[0].longitude = res.data.longitude;
  316. this.circles[0].radius = res.data.workDistance;
  317. // console.log('this.circles',this.circles);
  318. let mark = {
  319. latitude:res.data.latitude,
  320. longitude:res.data.longitude
  321. };
  322. this.covers.push(mark);
  323. if(!res.data.isPunchIn){//还未打上班卡
  324. this.workType = 1;
  325. }
  326. else{//已打上班卡
  327. this.workType = 2;
  328. }
  329. // console.log('this.payeeinfo',this.payeeinfo)
  330. }).catch(err=>{
  331. if(err.errMsg){
  332. this.$refs.uToast.show({
  333. title: '请检查网络',
  334. type: 'error',
  335. });
  336. return false;
  337. };
  338. this.$refs.uToast.show({
  339. title: err.msg,
  340. type: 'error',
  341. });
  342. console.log('punchInfo ',err)
  343. });
  344. }
  345. },
  346. filters:{
  347. filterWorkType(WorkType){
  348. return (WorkType==1)?'上班':'下班'
  349. }
  350. }
  351. }
  352. </script>
  353. <style>
  354. page{background-color: #F4F4F4;}
  355. </style>
  356. <style lang="scss">
  357. @import './clockIn.scss'
  358. </style>