Files
nianxx-h5/src/pages/home/components/AddCarCard/index.vue
DEV_DSW 933a272228 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
2026-06-01 15:26:36 +08:00

22 lines
620 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="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>