- 修改detail页面标题字体大小样式 - 更新自定义组件中的报名链接地址 - 在request工具中导入vue的isProxy和toRaw方法 - 添加proxy对象检测避免useFetch监听变更重复发送请求 - 修复post和put方法中的数据传递逻辑
18 lines
506 B
Vue
18 lines
506 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(`http://sign.gxbsnx.com`)">在线报名</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>
|