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
| <template>
| <el-dialog
| v-model="dialogFlag"
| width="700"
| title="报名成功"
| align-center
| :show-close="false"
| :close-on-click-modal="false"
| :close-on-press-escape="false"
| >
| <el-divider class="m-0"></el-divider>
| <div class="py-7">
| <el-row justify="center">
| <Icon icon="iconoir:check-circle-solid" width="70" height="70" style="color: #1ba53a" />
| </el-row>
| <el-row justify="center" class="mt-2">
| <el-text class="text-black text-lg font-medium">提交报名成功,请耐心等待审核结果。</el-text>
| </el-row>
| <el-row justify="center" class="mt-2">
| <el-text style="color: #666666;">审核结果会以短信形式发送给您,您也可以到【用户中心】-【我的报名】查看审核结果。</el-text>
| </el-row>
| </div>
| <el-divider class="m-0"></el-divider>
| <template #footer>
| <el-row justify="end">
| <el-button type="primary" @click="dialogFlag=false">好的</el-button>
| </el-row>
| </template>
| </el-dialog>
| </template>
| <script>
| export default {
| components: {
| },
| data() {
| return {
| dialogFlag: false,
| }
| },
| props: {
| modelValue: {
| type: Boolean,
| default: false
| },
| },
| watch: {
| modelValue(val) {
| this.dialogFlag = val
| },
| dialogFlag(val) {
| this.$emit('update:modelValue', val)
| },
| },
| mounted() {
|
| },
| methods: {
| }
| }
| </script>
|
| <style scoped>
| </style>
|
|