完成适配移动端

This commit is contained in:
2025-03-01 10:52:11 +08:00
parent 1f79c93859
commit 8d19a58e9d
68 changed files with 2117 additions and 847 deletions

View File

@@ -0,0 +1,18 @@
<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>