feat(ai): 新增AI找房功能模块及配套组件

添加AI找房功能页面、路由配置和API接口
实现聊天界面组件、历史记录加载和滚动定位功能
包含房源推荐展示、联系人组件和样式优化
This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-08-22 18:56:17 +08:00
parent 005441895b
commit 397cdd2a53
8 changed files with 820 additions and 6 deletions

View File

@@ -0,0 +1,32 @@
<template>
<div class="contacts">
如需进一步了解具体房源信息或香港租房生活相关问题请添加方同学微信
<div class="text link" bind:tap="consultStateCut">gternet2</div>
</div>
</template>
<script setup>
import { ref } from "vue";
const consultState = ref(false);
const consultStateCut = () => {
consultState.value = true;
};
</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>