Files
template-10490/components/Index/Customized.vue
2025-03-01 10:52:11 +08:00

19 lines
582 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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/3622.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>