adaptationsMore.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <view class="content">
  3. <homenav :iStatusBarHeight="iStatusBarHeight" :title="'更多适配'"></homenav>
  4. <view class="box">
  5. <view class="lineBox" v-for="(item,index) in 4">
  6. <view class="line" >
  7. <view class="lineTitle">
  8. <span>适用车型列表{{index}}</span>
  9. </view>
  10. <image class="jtImg" src="/static/img/icon_arrow.png" mode=""></image>
  11. </view>
  12. <view class="line2" v-for="(item,i) in 4">
  13. 适用车型列表二级{{i}}
  14. </view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. import nodata from '../../components/nodata/nodata.vue'
  21. import homenav from "../../components/homenav/nav.vue"
  22. export default {
  23. components: {
  24. nodata,homenav
  25. },
  26. data() {
  27. return {
  28. iStatusBarHeight:'',
  29. optdata:'',
  30. }
  31. },
  32. onLoad(opt) {
  33. console.log(opt)
  34. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  35. this.optdata=opt;
  36. },
  37. methods: {
  38. }
  39. }
  40. </script>
  41. <style scoped>
  42. .jtImg{
  43. width: 26rpx;height: 26rpx;
  44. }
  45. .line{
  46. font-size: 30rpx;
  47. display: flex;
  48. justify-content: space-between;
  49. color: #22222;
  50. }
  51. .lineBox{
  52. padding: 24rpx;
  53. border-bottom: 1px solid #eaeaea;
  54. }
  55. .line2{
  56. padding: 10rpx;color: #999;
  57. }
  58. </style>