19 lines
581 B
Vue
19 lines
581 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>
|