maintain.vue 666 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view class="box">
  3. 保养
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style>
  17. .box{
  18. min-height: 100vh;
  19. background-color: #f4f5f7;
  20. }
  21. .top{
  22. background-color: #FFFFFF;
  23. padding: 30rpx 20rpx;
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. }
  28. .left{
  29. display: flex;
  30. align-items: center;
  31. }
  32. .car{
  33. font-size: 28rpx;
  34. color: #333333;
  35. line-height: 40rpx;
  36. /* 隐藏文字显示 ...不换行 */
  37. overflow: hidden;
  38. text-overflow: ellipsis;
  39. white-space: nowrap;
  40. }
  41. .brandLogo {
  42. width: 42rpx;
  43. height: 42rpx;
  44. }
  45. </style>