costExplain.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <view >
  3. <ujp-navbar title="费用说明页">
  4. </ujp-navbar>
  5. <view class="main">
  6. <view class="item">
  7. <view class="title">
  8. 充电枪编号
  9. </view>
  10. <view class="content">
  11. 01212861560
  12. </view>
  13. </view>
  14. <view class="item">
  15. <view class="title">
  16. 充电枪名称-充电枪类型
  17. </view>
  18. <view class="content">
  19. 1号直流桩-直流式
  20. </view>
  21. </view>
  22. <view class="item">
  23. <view class="title">
  24. 充电枪功率
  25. </view>
  26. <view class="content">
  27. 80kW
  28. </view>
  29. </view>
  30. <view class="item">
  31. <view class="title">
  32. 电费+服务费
  33. <view class="iconfont more">
  34. &#xe600;
  35. </view>
  36. </view>
  37. <view class="content">
  38. 当前时段:08:00~10:00 1.28 元/度(含电费0.98元/度 + 服务费0.30元/度)
  39. </view>
  40. </view>
  41. <view class="item">
  42. <view class="title">
  43. 停车费用
  44. </view>
  45. <view class="content">
  46. 充电免停2小时停车费(临牌车不享受免停)
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. </script>
  54. <style lang="scss">
  55. .main{
  56. background-color: #fff;
  57. padding-left: 16px;
  58. .item{
  59. border-bottom: 1px solid #e5e7ea;
  60. padding: 16px 0 ;
  61. .title{
  62. line-height: 16px;
  63. color: rgba(119, 119, 119, 100);
  64. font-size: 16px;
  65. .more{
  66. font-size: 24px;
  67. color: #b3b3b3;
  68. float: right;
  69. margin-right: 8px;
  70. }
  71. }
  72. .content{
  73. line-height: 24px;
  74. color: rgba(16, 16, 16, 100);
  75. font-size: 16px;
  76. margin-top: 8px;
  77. padding-right: 30px;
  78. }
  79. }
  80. }
  81. </style>