30 lines
668 B
Vue
30 lines
668 B
Vue
<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>
|