step3.vue 1.48 KB
<template>
  <el-card style="min-height: 50vh">
    <div>
      <img src="@/assets/dance/ok.png"/>
      <h3>注册成功</h3>
    </div>
    <div>
      <div class="border-info text-center inline">
        <label>登录账号</label> 321
      </div>
    </div>
    <div class="text-center">
      <el-button class="primary-kx" @click="goHome">返回首页</el-button>
      <el-button type="primary" @click="goSign">去报名</el-button>
    </div>
  </el-card>
</template>

<script setup>
import {reactive} from "@vue/runtime-core";
import {toRefs} from "@vueuse/shared/index";
import Vcode from "vue3-puzzle-vcode"
import {ElMessage} from 'element-plus'
import CountDown from '@chenfengyuan/vue-countdown'
import {getCaptchaSms, checkRegisterCode} from "@/apiPc/match";

const data = reactive({
  isShow: false,
  isCodeTrue: false,
  counting: false,
  form: {},
  activeStep: 0
})
const {isShow, isCodeTrue, counting, form, activeStep} = toRefs(data)
const emit = defineEmits(['submit', 'userName'])

function sendsmsMsg() {
  if (!form.value.account) {
    ElMessage.error('请填写手机/邮箱')
    return
  }
  if (counting.value) {
    return
  } else {
    isShow.value = true
  }
}


const goHome = () => {

}
const goSign = () => {

}

</script>

<style scoped lang="scss">
.el-input-group__append button.el-button, .el-input-group__append button.el-button:hover {
  color: var(--el-color-primary);
  background: #efefff;
  border: var(--el-color-primary) solid 1px;
  border-radius: 0;
}
</style>