- 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
22 lines
620 B
Vue
22 lines
620 B
Vue
<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>
|