index.vue 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <view>
  3. <u-navbar title="车辆管理"></u-navbar>
  4. <!-- <view class="carNone">
  5. <img src="/static/img/none2.svg" alt="">
  6. <p>暂无绑定车辆</p>
  7. <view class="carNone-btn">
  8. 添加车牌
  9. </view>
  10. </view> -->
  11. <view class="car">
  12. <view class="car-item" @click="gotoUrl('pages/user/car/carAdd?id=')">
  13. <span>默认</span>
  14. <font>鄂D 999999</font>
  15. </view>
  16. <view class="car-btn" @click="addCar">添加车牌</view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. }
  25. },
  26. methods: {
  27. addCar() {
  28. uni.navigateTo({
  29. url: '/pages/user/car/carDet'
  30. })
  31. }
  32. }
  33. }
  34. </script>
  35. <style>
  36. page{
  37. background: #fff;
  38. }
  39. </style>
  40. <style lang="scss" scoped>
  41. .carNone{
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center;
  45. height: calc(100vh - 44px);
  46. align-items: center;
  47. img{
  48. width: 256px;
  49. height: 256px;
  50. }
  51. p{
  52. margin-top: -60px;
  53. }
  54. .carNone-btn{
  55. font-size: 16px;
  56. color:#00B962;
  57. border: 1px solid #00B962;
  58. padding: 10px 70px;
  59. border-radius: 20px;
  60. margin-top: 48px;
  61. }
  62. }
  63. .car{
  64. padding: 24px;
  65. .car-item{
  66. background-color: #00B962;
  67. height: 80px;
  68. border-radius: 8px;
  69. position: relative;
  70. text-align: center;
  71. font{
  72. color:#fff;
  73. font-size: 36px;
  74. line-height:80px;
  75. }
  76. span{
  77. position: absolute;
  78. height: 24px;
  79. width: 48px;
  80. background-color: #008A4B ;
  81. color:#fff;
  82. right: 0;
  83. top: 0;
  84. text-align: center;
  85. line-height: 24px;
  86. border-radius: 0 8px 0 8px;
  87. }
  88. }
  89. .car-btn{
  90. font-size: 16px;
  91. color:#00B962;
  92. border: 1px solid #00B962;
  93. border-radius: 21px;
  94. padding: 10px 0;
  95. text-align: center;
  96. margin-top: 12px;
  97. }
  98. }
  99. </style>