feat: 调整项目结构
This commit is contained in:
BIN
src/components/AddCarCrad/images/qrcode.png
Normal file
BIN
src/components/AddCarCrad/images/qrcode.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
29
src/components/AddCarCrad/index.vue
Normal file
29
src/components/AddCarCrad/index.vue
Normal 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>
|
||||
19
src/components/AddCarCrad/styles/index.scss
Normal file
19
src/components/AddCarCrad/styles/index.scss
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user