feat: add new card components and fix chat list code issues
- add three new Vue card components: AddCarCard, DetailCardComponent, SurveyQuestionnaire - remove unused RecordingWaveBtn component - fix component naming and import paths in ChatMainList - correct `notitceConent` variable typo to `noticeContent` - reorganize imports for better code maintainability
This commit is contained in:
21
src/pages/home/components/AddCarCard/index.vue
Normal file
21
src/pages/home/components/AddCarCard/index.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<div class="flex flex-col items-center">
|
||||
<div class="description">
|
||||
请绑定真实有效的车牌号,否则将无法正常使用车牌付费等功能
|
||||
</div>
|
||||
<img class="mt-[12px] w-[250px] h-[250px] rounded-[4px]"
|
||||
src="https://one-feel-config-images-bucket.oss-cn-chengdu.aliyuncs.com/20250920102920_354_52.png" />
|
||||
<div class="p-[12px] text-[18px] text-600 text-[#666]">长按二维码识别</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { defineProps } from "vue";
|
||||
|
||||
const props = defineProps({
|
||||
toolCall: {
|
||||
type: Object,
|
||||
default: {},
|
||||
},
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user