wwf
12 小时以前 9a6cd220224fd3a9a6c84b5bb37c6410a470969f
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<template>
  <div class="p-4 signin">
    <div>
      <el-row class="px-7" justify="space-between">
        <el-text class="text-lg">姓名:<span class="font-bold">{{ userInfo.name }}</span></el-text>
        <el-text class="text-lg">身份证尾号:<span class="font-bold">{{ userInfo.idCard?.slice(-4) }}</span></el-text>
      </el-row>
      <el-row justify="center" class="m-4">
        <div style="position: relative;">
          <div class="mask"></div>
          <div class="mapBox">
            <BaiduMap
              :center="centerPoint"
              @getUserPositionStatus="(evt) => userPositionStatus = evt"
              @getMapStatus="(evt) => mapStatus = evt"
              @getDistance="getDistance"
            />
          </div>
          <div class="center-sign">
            <el-image 
              style="width: 50px;height: 50px;" 
              fit="contain" 
              :src="$getImageUrl(`/map/position-marker-${positionError?'red':'green'}.png`)"
            ></el-image>
          </div>
          <div class="text-sign">
            <el-text style="color: #8c8c8c;" v-if="userPositionStatus=='loading'">定位中...</el-text>
            <el-text style="color: #e73f3f;" v-else-if="userPositionStatus=='fail'">获取定位失败,当前设备的定位服务</el-text>
            <template v-else-if="userPositionStatus=='success'">
              <el-text v-if="distance>0&&distance<500" style="color: #56c16d;">
                位置正常 距离签到地点{{ distance }}米
              </el-text>
              <el-text v-else style="color: #e73f3f;">
                超出签到范围,不可签到
              </el-text>
            </template>
          </div>
        </div>
      </el-row>
      <!-- <el-row justify="center">
        <el-text class="text-lg font-bold">{{ positionName }}</el-text>
      </el-row> -->
      <el-row justify="center" class="mt-1">
        <el-text class="text-lg text-info">{{ positionAddress }}</el-text>
      </el-row>
    </div>
    <el-row justify="center" class="mt-7">
      <div class="signin-button" :style="getSigninButtonStyle" @click="signinConfirm()">
        <span class="ripple" v-if="!positionError"></span>
        <el-row justify="center">
          <el-text class="text-lg text-white">签到</el-text>
        </el-row>
        <el-row justify="center" class="mt-1">
          <el-text class="text-lg text-white">{{ currentTimeText }}</el-text>
        </el-row>
      </div>
    </el-row>
  </div>
</template>
 
<script>
import BaiduMap from '@/views/h5/signup/BaiduMap.vue'
import { useSessionStore } from '@/stores/session.js'
import { storeToRefs } from 'pinia';
export default {
  components: {
    BaiduMap
  },
  setup() {
    const { userInfo } = storeToRefs(useSessionStore()) 
    return { userInfo } 
  },
  data() {
    return {
      userPositionStatus: 'loading', // loading、fail、success
      mapStatus: 'loading', //loading、fail、success
      distance: null,
      positionError: false,
      positionName: '',
      positionAddress: '',
      currentTimeText: '',
      centerPoint: {
        lat: 23.135618,
        lng: 113.27077
      }
    }
  },
  computed: {
    canSignup() {
      return this.mapStatus == 'success' && this.userPositionStatus == 'success' && !this.positionError
    },
    getSigninButtonStyle() {
      if (this.canSignup) {
        return {
          'background': '#66d06c',
          'border-color': '#e7f7eb'
        }
      } else {
        return {
          'background': '#e1e1e1',
          'border-color': '#f8f8f8'
        }
      }
    },
    appId() {
      return this.$route.query.appId
    },
    url() {
      return this.$route.query.url
    }
  },
  created() {
    this.getSignupAddress()
  },
  async mounted() {
    this.currentTimeText = this.$dayjs().format('HH:mm')
  },
  methods: {
    getSignupAddress() {
      const params = { applicationId: this.appId }
      this.$axios.get('/exam/verify-record/get-by-application-id', { params }).then(res => {
        if (res.data.code == 0) {
          const resData = res.data.data || {}
          if (resData.examSite?.locationLat && resData.examSite?.locationLng) {
            this.centerPoint = {
              lat: resData.examSite?.locationLat,
              lng: resData.examSite?.locationLng 
            }
          }
          this.positionAddress = resData.examSite?.address
        } else {
          this.$message.error(res.data.msg)
        }
      })
    },
    getUserPositionStatus(evt) {
      this.userPositionStatus = evt
    },
    getDistance(evt) {
      this.distance = evt
      if (this.distance && this.distance <= 500) {
        this.positionError = false
      } else {
        this.positionError = true
      }
    },
    signinConfirm() {
      if (!this.canSignup || this.confirmLoading) {
        return
      }
      const data = {
        targetId: this.appId,
        targetType: 2,
        url: this.url,
        type: 0
      }
      this.confirmLoading = true
      this.$axios.post('/exam/staff/checkin', data).then(res => {
        if (res.data.code == 0) {
          this.$message.success('签到成功')
          setTimeout(() => {
            this.$router.replace({ path: '/h5/verForm', query: { appId: this.appId }})
          }, 500)
        } else {
          this.$message.error(res.data.msg)
        }
      }).finally(() => {
        this.confirmLoading = false
      })
    },
  }
}
</script>
<style lang="scss" scoped>
.signin {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 100px;
}
.mapBox {
  width: 300px;
  height: 300px;
  border-radius: 150px;
}
.mask {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 340px;
  background: radial-gradient(circle at center, transparent 0px, white 160px);
  z-index: 12; /* 位于红色盒子上方 */
}
.center-sign {
  z-index: 13;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.text-sign {
  z-index: 13;
  position: absolute;
  left: 50%;
  top: 66%;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
.signin-button {
  width: 140px;
  height: 140px;
  border-radius: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 16px solid 
}
.ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 2s ease-out infinite;
  pointer-events: none; /* 防止波纹遮挡按钮点击 */
  z-index: 14;
}
/* 确保按钮文字显示在波纹上方 */
.signin-button .el-row {
  position: relative;
  z-index: 2;
}
@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}
</style>