lanan-repair/pages/guideList/guideDetail.vue

48 lines
808 B
Vue
Raw Normal View History

2024-09-22 15:07:01 +08:00
<template>
<view class="container">
<VNavigationBar background-color="rgba(0,0,0,0)" title-color="rgba(0,0,0,0)"></VNavigationBar>
<view class="body">
<view class="title">如何在小程序上下单车辆维修</view>
<view class="content"></view>
</view>
</view>
</template>
<script>
import VNavigationBar from '@/components/VNavigationBar.vue'
export default {
components: {
VNavigationBar
},
data() {
return {
};
}
}
</script>
<style lang="less" scoped>
.container {
height: 100%;
display: flex;
flex-direction: column;
background-color: #f1f1f1;
.body {
background-color: #fff;
flex: 1;
height: 0;
margin: 32rpx;
padding: 30rpx;
display: flex;
flex-direction: column;
row-gap: 20rpx;
.title {
text-align: center;
}
}
}
</style>