feat: 调整项目结构

This commit is contained in:
duanshuwen
2025-09-21 17:25:09 +08:00
parent 0b66462d16
commit 9f23854ad5
410 changed files with 3806 additions and 1668 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@@ -0,0 +1,29 @@
<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>
@use "./styles/index.scss";
</style>

View File

@@ -0,0 +1,19 @@
.add-car-card {
display: flex;
flex-direction: column;
align-items: center;
.code-img {
margin-top: 12px;
width: 250px;
height: 250px;
border-radius: 4px;
}
.tips {
padding: 12px;
font-size: 36rpx;
font-weight: 600;
color: #666;
}
}