feat(ai): 新增AI找房功能模块及配套组件
添加AI找房功能页面、路由配置和API接口 实现聊天界面组件、历史记录加载和滚动定位功能 包含房源推荐展示、联系人组件和样式优化
This commit is contained in:
32
src/components/ai/contacts.vue
Normal file
32
src/components/ai/contacts.vue
Normal 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>
|
||||
Reference in New Issue
Block a user