Files
gterFang/src/components/ai/contacts.vue
DESKTOP-RQ919RC\Pc ca8185df91 feat: 添加微信按钮组件及优化AI聊天功能
refactor: 移除未使用的circle-btn组件引用
style: 更新图片资源路径及样式
fix: 修复axios请求配置及类型定义
docs: 添加mock-api.js模拟接口文件
2025-08-25 17:54:08 +08:00

32 lines
654 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="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>