parkingFeePayment.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <template>
  2. <scroll-view :class="['box', theme]">
  3. <div>
  4. <img
  5. :src="require('./static/images/no-car.png')" />
  6. <div class="carno">{{carno | formatCarno}}</div>
  7. <div class="msg">{{msg}}</div>
  8. <div class="searchPrice" @click="search">重新查询</div>
  9. </div>
  10. </scroll-view>
  11. </template>
  12. <script>
  13. import parkingFeePaymentJs from './mixins/parkingFeePayment'
  14. import baseMixins from './mixins/base'
  15. export default {
  16. mixins:[baseMixins, parkingFeePaymentJs]
  17. }
  18. </script>
  19. <style lang="less" scoped>
  20. .box {
  21. text-align: center;
  22. background-color: #F4F7FF;
  23. opacity: 1;
  24. img {
  25. width: 80%;
  26. // height: 200px;
  27. margin-top: 200px;
  28. }
  29. div {
  30. margin-top: 20px;
  31. }
  32. .carno {
  33. font-size: 46px;
  34. font-weight: 500;
  35. color: #333333;
  36. line-height: 65px;
  37. }
  38. .msg {
  39. font-size: 36px;
  40. font-weight: 400;
  41. color: #919BAA;
  42. line-height: 36px;
  43. }
  44. .searchPrice {
  45. color: #fff !important;
  46. margin: 0 auto;
  47. margin-top: 40px;
  48. height: 90px;
  49. width: 80%;
  50. line-height: 90px;
  51. // border-radius: 80px;
  52. // font-size: 17px;
  53. // background-image: linear-gradient(to right, #7e4fa1, #433c7f);
  54. background-color: var(--k-color-primary);
  55. border-radius: 45px;
  56. font-size: 34px;
  57. font-weight: 400;
  58. }
  59. // .blueSearchPrice {
  60. // .colorSearchPrice('blue');
  61. // }
  62. // .greenSearchPrice {
  63. // .colorSearchPrice('green');
  64. // }
  65. // .colorSearchPrice(@value) {
  66. // @color: 'color-@{value}';
  67. // background-image: none;
  68. // background-color: @@color;
  69. // }
  70. }
  71. </style>