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
| <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">您非本考点资质审核的核验员,无法核验,请联系工作人员确认。</el-text>
| </el-row>
| </div>
| </template>
| <script>
| export default {
| data() {
| return {
|
| }
| }
| }
| </script>
| <style lang="scss" scoped>
| .content {
| padding: 60px;
| width: 100%;
| height: 100%;
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| }
| </style>
|
|