37 lines
718 B
Vue
37 lines
718 B
Vue
<template>
|
|
<view class="container">
|
|
<!-- 车辆信息区域 -->
|
|
<view class="car-info-container">
|
|
<view class="license-plate">
|
|
<view class="plate-type-box">
|
|
<text class="plate-type">蓝牌</text>
|
|
</view>
|
|
<text class="plate-number">冀T11855</text>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 添加车辆按钮 -->
|
|
<button class="add-car-btn" @click="addCar">添加车辆</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
methods: {
|
|
addCar() {
|
|
// 跳转到添加车辆页面
|
|
uni.navigateTo({
|
|
url: '/packages/park/addCar/index'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
@import url('./index.css');
|
|
</style> |