Files
YGChatCS/components/AddCarCrad/index.vue

30 lines
668 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>
<view class="add-car-card">
<view class="description">
请绑定真实有效的车牌号否则将无法正常使用车牌付费等功能
</view>
<image
class="code-img"
src="https://one-feel-config-images-bucket.oss-cn-chengdu.aliyuncs.com/20250920102920_354_52.png"
mode="widthFix"
show-menu-by-longpress="true"
/>
<view class="tips">长按二维码识别</view>
</view>
</template>
<script setup>
import { defineProps } from "vue";
const props = defineProps({
toolCall: {
type: Object,
default: {},
},
});
</script>
<style lang="scss" scoped>
@import "./styles/index.scss";
</style>