18 lines
518 B
Vue
18 lines
518 B
Vue
<template>
|
|
<div class="w-full container-bg bg-blue-600 gap-10 flex justify-center items-center py-6">
|
|
<el-button size="large" @click="openUrl(`https://zzyx.gxcampus.com/register`)">在线报名</el-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import {navigateTo, openUrl} from "#imports";
|
|
|
|
</script>
|
|
<style type="text/css">
|
|
.container-bg {
|
|
background-image: url('https://oss.wsdns.cn/20250208/802da34d18434fd5a738622bf734e080.png');
|
|
background-size: 100%;
|
|
background-position: center;
|
|
}
|
|
</style>
|