1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<template>
    <!-- 打卡 -->
    <view class="punchTheClock">
        <!-- 打卡按钮 -->
        <view class="punchTheClock_container">
            <view class="punchTheClock_btn" @click="arrive">
                <view>
                    <p>签到/打卡</p>
                    <p>{{ nowTime }}</p>
                </view>
            </view>
            <view class="punchTheClock_text">
                <u-icon name="map" color="#51e30d" size="30"></u-icon>
                <text>未进入矿场区域</text>
            </view>
        </view>
    </view>
</template>
 
<script>
import { todayDate } from '@/utils/util.js';
export default {
    onLoad(params) {
        if (params.orderPlanId) {
            this.punchTheClockObj.id = params.orderPlanId;
        }
    },
    data() {
        return {
            nowTime: '',
            punchTheClockObj: {
                latitude: null,
                longitude: null,
                id: null
            }
        };
    },
    onShow() {
        this.todayDate();
        // 获取权限信息
        wx.getSetting({
            success(res) {
                if (!res.authSetting['scope.userFuzzyLocation']) {
                    wx.authorize({
                        scope: 'scope.userFuzzyLocation',
                        success(res) {
                            console.log(res);
                            if (res.errMsg == 'authorize:ok') {
                                // 获取位置信息
                                this.getFuzzyLocation();
                            }
                        }
                    });
                } else {
                    this.getFuzzyLocation();
                }
            },
            fail() {
                console.log('获取失败');
            }
        });
    },
    methods: {
        getFuzzyLocation() {
            wx.getFuzzyLocation({
                type: 'wgs84',
                success(res) {
                    console.log(res, '获取位置');
                    this.punchTheClockObj.latitude = res.latitude;
                    this.punchTheClockObj.longitude = res.longitude;
                }
            });
        },
        todayDate() {
            setInterval(() => {
                this.nowTime = todayDate('hms');
            }, 1000);
        },
        // 签到
        arrive() {
            if (this.punchTheClockObj.latitude && this.punchTheClockObj.longitude) {
                this.$reqPost('arrive', this.punchTheClockObj, 'params').then(res => {
                    console.log(res, '签到');
                    if (res.code == 0) {
                        this.$u.toast('签到成功');
                        setTimeout(() => {
                            uni.navigateBack(
                                {
                                    delta: 1
                                },
                                500
                            );
                        });
                    } else {
                        this.$u.toast(res.data ? res.data : '签到失败');
                    }
                });
            } else {
                this.$u.toast('暂获取不到到当前位置');
            }
        }
    }
};
</script>
 
<style lang="scss" scoped>
.punchTheClock {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    .punchTheClock_container {
        .punchTheClock_btn {
            width: vww(240);
            height: vww(240);
            color: #ffffff;
            font-size: vww(20);
            border-radius: 50%;
            background-color: #36d4e5;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .punchTheClock_text {
            display: flex;
            justify-content: center;
            margin-top: vww(20);
            color: #b8b8b8;
            .text {
                margin-left: vww(5);
            }
        }
    }
}
</style>