| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- // pages/clock/clock.js
- import {
- punchClockNeedInfo,
- savePunchClock
- } from '../../services/index.js'
- import {
- imgServerUrl
- } from '../../config/config.js'
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- approveStatus: false,
- imgServerUrl,
- navigation: [
- {
- image: '/images/clock/clock-tongji.png',
- text: '统计'
- },
- {
- image: '/images/clock/clock-rule-icon.png',
- text: '规则'
- },
- {
- image: '/images/clock/clock-kefu.png',
- text: '客服'
- },
- ],
- clockType: 3,
- statusImage: `${imgServerUrl}/images/clock/clock-beyond.png`,
- statusIcon: `${imgServerUrl}/images/clock/clock-waring.png`,
- statusMessage: `请进入企业后再进行打卡`,
- startPunch: "未完成",
- endPunch: '未完成',
- todayMoney: 0,
- sumDuration: 0,
- sumMoney: 0,
- wsPunchClockId: null
- },
- toRule() {
- wx.navigateTo({
- url: './clock-rule/clock-rule',
- })
- },
- getLocation() {
- return new Promise(reslove => {
- wx.getLocation({
- type: 'gcj02 ',
- success: data => {
- reslove(data)
- },
- fail: res => {
- console.log(res)
- }
- })
- })
- },
- location() {
- return new Promise((reslove, reject) => {
- wx.getSetting({
- success: async res => {
- if (res.authSetting['scope.userLocation']) {
- reslove(await this.getLocation())
- } else {
- wx.authorize({
- scope: 'scope.userLocation',
- success: async () => {
- reslove(await this.getLocation())
- },
- fail: () => {
- wx.showModal({
- content: '无法使用打卡功能',
- confirmText: '去授权',
- title: '位置信息未授权',
- success: (result) => {
- if (result.confirm) {
- wx.openSetting({})
- } else {
- this.setData({
- clockType: 3
- })
- reject()
- }
- },
- })
- }
- })
- }
- }
- })
- })
- },
- async click() {
- const data = await this.location()
- if (this.data.clockType === 1 && !this.data.wsPunchClockId) {
- this.clock(data.longitude, data.latitude)
- // this.clock(120.353312, 31.535582)
- }
- if (this.data.clockType === 1 && this.data.wsPunchClockId) {
- wx.showModal({
- title: '提示',
- content: '未到下班时间,请刷新页面获取最新状态',
- showCancel: false,
- })
- }
- if (this.data.clockType === 2 && this.data.wsPunchClockId) {
- this.clock(data.longitude, data.latitude)
- }
- if (this.data.clockType === 3) {
- wx.showModal({
- title: '提示',
- content: '超出范围,请刷新页面获取当前位置',
- showCancel: false,
- })
- }
- if (this.data.clockType === 4) {
- wx.showModal({
- title: '提示',
- content: '今日打卡已完成',
- showCancel: false,
- })
- }
- },
- clock(longitude, latitude) {
- savePunchClock({ longitude, latitude, clockType: this.data.clockType }).then(data => {
- wx.showToast({
- title: '打卡成功',
- success: () => {
- wx.navigateTo({
- url: `./clock-success/clock-success?clockType=${this.data.clockType}&&sumMoney=${data.data.sumMoney}&&duration=${data.data.duration}&&todayMoney=${data.data.todayMoney}`
- })
- }
- })
- }).catch(data => {
- wx.showModal({
- title: '提示',
- content: data.errmsg,
- showCancel: false,
- })
- })
- },
- navigator(e) {
- const { index } = e.currentTarget.dataset
- if (index === 0) {
- wx.navigateTo({
- url: './clock-tongji/index',
- })
- }
- if (index === 1) {
- wx.navigateTo({
- url: './clock-rule/clock-rule',
- })
- }
- if (index === 2) {
- wx.makePhoneCall({
- phoneNumber: '4006920099',
- })
- }
- },
- async load() {
- const data = await this.location()
- punchClockNeedInfo({ longitude: data.longitude, latitude: data.latitude }).then(data => {
- // punchClockNeedInfo({ longitude: 120.353312, latitude: 31.535582 }).then(data => {
- let {
- authenticationStatus,
- startPunch,
- endPunch,
- todayMoney,
- clockType, // 1:上班打卡 2:下班打卡 3:超出范围 4:已完成
- sumDuration,
- sumMoney,
- wsPunchClockId,
- dailyAvailableMinHour
- } = data.data
- this.setData({
- approveStatus: authenticationStatus, // 认证状态(0:未认证 1:等待认证 2:未通过 3:已认证) ,
- startPunch,
- endPunch,
- todayMoney,
- clockType,
- sumDuration,
- sumMoney,
- wsPunchClockId
- })
- if (clockType === 1 && !wsPunchClockId) {
- this.setData({
- statusImage: `${imgServerUrl}/images/clock/clock-in.png`,
- statusIcon: `${imgServerUrl}/images/clock/clock-can.png`,
- })
- }
- if (clockType === 1 && wsPunchClockId) {
- this.setData({
- statusImage: `${imgServerUrl}/images/clock/clock-out-disabled.png`,
- statusIcon: `${imgServerUrl}/images/clock/clock-waring.png`,
- statusMessage: `上班${dailyAvailableMinHour}小时候才能进行下班打卡`,
- })
- }
- if (clockType === 2 && wsPunchClockId) {
- this.setData({
- statusImage: `${imgServerUrl}/images/clock/clock-out.png`,
- statusIcon: `${imgServerUrl}/images/clock/clock-can.png`,
- statusMessage: `已进入考勤打卡范围`,
- })
- }
- if (clockType === 3) {
- this.setData({
- statusImage: `${imgServerUrl}/images/clock/clock-beyond.png`,
- statusIcon: `${imgServerUrl}/images/clock/clock-waring.png`,
- statusMessage: `请进入企业后再进行打卡`,
- })
- }
- if (clockType === 4) {
- this.setData({
- statusImage: `${imgServerUrl}/images/clock/clock-done.png`,
- statusIcon: `${imgServerUrl}/images/clock/clock-can.png`,
- statusMessage: `今日打卡已完成`,
- })
- }
- })
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- this.load()
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- this.load()
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- }
- })
|