navTop.vue
509 字节
<template>
<view class="navTop">
<image style="width: 32rpx;" src="@/static/commonImage/big-car.png" mode="widthFix"></image>
<text class="top-text">{{ carNum }}</text>
</view>
</template>
<script setup>
defineProps({
carNum: {
type: String,
default: '桂A·66666'
}
})
</script>
<style lang="scss" scoped>
.navTop{
display: flex;
align-items: center;
gap: 20rpx;
margin-bottom: 20rpx;
.top-text{
font-weight: 500;
font-size: 28rpx;
line-height: 38rpx;
color: #3d3d3d;
}
}
</style>