refactor: 移除未使用的circle-btn组件引用 style: 更新图片资源路径及样式 fix: 修复axios请求配置及类型定义 docs: 添加mock-api.js模拟接口文件
32 lines
654 B
Vue
32 lines
654 B
Vue
<template>
|
||
<div class="contacts">
|
||
如需进一步了解具体房源信息,或香港租房生活相关问题,请添加方同学微信:
|
||
<div class="text link">
|
||
<wechat-btn>gternet2</wechat-btn>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { ref } from "vue";
|
||
import wechatBtn from "@/components/ai/wechat-btn.vue";
|
||
|
||
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
.contacts {
|
||
color: #333333;
|
||
font-size: 16px;
|
||
line-height: 26px;
|
||
margin-bottom: 30px;
|
||
|
||
.text {
|
||
color: #026277;
|
||
text-decoration: underline;
|
||
display: inline-block;
|
||
cursor: pointer;
|
||
}
|
||
}
|
||
</style>
|