48 lines
808 B
Vue
48 lines
808 B
Vue
<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>
|