yearning
18 小时以前 63fea2990e587837ed3dde2b9ac8f2b4ef729672
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
<template>
  <div class="content">
    <el-image style="width: 150px" fit="contain" :src="$getImageUrl('/h5/noVerify.png')"></el-image>
    <el-row style="margin-top: 40px;">
      <el-text class="text-center">{{ tip }}</el-text>
    </el-row>
  </div>
</template>
<script>
export default {
  data() {
    return {
 
    }
  },
  computed: {
    tip() {
      return this.$route.query.tip || '您非相关工作人员,无法签到,请联系工作人员确认。'
    }
  }
}
</script>
<style lang="scss" scoped>
.content {
  padding: 60px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
</style>