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:
DEV_DSW
2026-06-01 15:26:36 +08:00
parent 273ca5567a
commit 933a272228
5 changed files with 15 additions and 139 deletions

View 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>