123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <template>
- <view class="content">
- <homenav :iStatusBarHeight="iStatusBarHeight" :title="'更多适配'"></homenav>
- <view class="box">
- <view class="lineBox" v-for="(item,index) in 4">
- <view class="line" >
- <view class="lineTitle">
- <span>适用车型列表{{index}}</span>
- </view>
- <image class="jtImg" src="/static/img/icon_arrow.png" mode=""></image>
- </view>
- <view class="line2" v-for="(item,i) in 4">
- 适用车型列表二级{{i}}
- </view>
- </view>
-
- </view>
- </view>
- </template>
- <script>
- import nodata from '../../components/nodata/nodata.vue'
- import homenav from "../../components/homenav/nav.vue"
- export default {
- components: {
- nodata,homenav
- },
- data() {
- return {
- iStatusBarHeight:'',
- optdata:'',
- }
- },
- onLoad(opt) {
- console.log(opt)
- this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
- this.optdata=opt;
-
- },
- methods: {
-
-
- }
- }
- </script>
- <style scoped>
- .jtImg{
- width: 26rpx;height: 26rpx;
- }
- .line{
- font-size: 30rpx;
- display: flex;
- justify-content: space-between;
-
-
- color: #22222;
- }
- .lineBox{
- padding: 24rpx;
- border-bottom: 1px solid #eaeaea;
- }
- .line2{
- padding: 10rpx;color: #999;
- }
- </style>
|