Files
site-10584/components/Index/Customized.vue
2026-01-29 10:43:43 +08:00

19 lines
593 B
Vue

<template>
<div class="w-full container-bg bg-blue-600 gap-10 flex justify-center items-center py-6">
<span class="text-xl text-white font-bold">有合作意向的小伙伴可以联系我们</span>
<el-button size="large" @click="navigateTo(`/order/659.html`)">马上联系</el-button>
</div>
</template>
<script lang="ts" setup>
import {navigateTo} 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>