preengagedListDetails.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <view >
  3. <u-navbar title="预约单详情">
  4. </u-navbar>
  5. <view class="iconfont tittle-font">
  6. &#xe616;
  7. </view>
  8. <u-alert-tips type="warning" :title="title" :description="description"></u-alert-tips>
  9. <view class="reverse-time">
  10. <view class="time">
  11. 预留30分钟
  12. </view>
  13. <view class="details-item">
  14. <view class="item">
  15. <view class="item-name">
  16. 预约单号
  17. </view>
  18. <view class="item-content">
  19. 0000111122223333
  20. </view>
  21. </view>
  22. <view class="item">
  23. <view class="item-name">
  24. 预计开始充电
  25. </view>
  26. <view class="item-content">
  27. 2022-05-31 09:30:00
  28. </view>
  29. </view>
  30. <view class="item">
  31. <view class="item-name">
  32. 预计充电时长
  33. </view>
  34. <view class="item-content">
  35. 6小时
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <!-- 充电桩详情 -->
  41. <view class="charge-pile">
  42. <view class="box">
  43. <view class="name">
  44. 荆鹏软件园充电站/1号快充桩
  45. </view>
  46. <view class="address">
  47. 湖北省荆州市沙市区江津东路附155号
  48. </view>
  49. <text class="iconfont more">
  50. &#xe600;
  51. </text>
  52. </view>
  53. <view class="tel">
  54. <view class="tel-text">
  55. 联系电话
  56. </view>
  57. <view class="tel-num">
  58. 李先生 15100001111
  59. <text class="iconfont more2">
  60. &#xe600;
  61. </text>
  62. </view>
  63. </view>
  64. <view class="details-item">
  65. <view class="item">
  66. <view class="item-name">
  67. 预约单生成时间
  68. </view>
  69. <view class="item-content">
  70. 2022-05-31 09:00:00
  71. </view>
  72. </view>
  73. <view class="item">
  74. <view class="item-name">
  75. 电费单价(kW/h)
  76. </view>
  77. <view class="item-content">
  78. 1.00元
  79. </view>
  80. </view>
  81. <view class="item">
  82. <view class="item-name">
  83. 充电服务费(kW/h)
  84. </view>
  85. <view class="item-content">
  86. 1.00元
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. </view>
  92. </template>
  93. <script>
  94. export default {
  95. data() {
  96. return{
  97. description: '等待桩主确认预约单,剩余时间04:59:59'
  98. }
  99. }
  100. }
  101. </script>
  102. <style lang="scss" scoped>
  103. .tittle-font {
  104. font-size: 24px;
  105. position: fixed;
  106. top: 12px;
  107. right: 16px;
  108. z-index: 99999;
  109. }
  110. /deep/.u-alert-desc{
  111. width: 100vw;
  112. text-align: center;
  113. color: #ff5a00;
  114. }
  115. .reverse-time{
  116. background-color: #fff;
  117. padding: 36px 12px 16px 28px;
  118. .time{
  119. height: 36px;
  120. color: rgba(0, 185, 98, 100);
  121. font-size: 36px;
  122. text-align: center;
  123. }
  124. }
  125. .details-item{
  126. margin-top: 32px;
  127. padding-right: 16px;
  128. padding-bottom: 46px;
  129. .item{
  130. display: flex;
  131. justify-content: space-between;
  132. margin-top: 8px;
  133. }
  134. }
  135. // 充电桩详情
  136. .charge-pile{
  137. background-color: #fff;
  138. margin-top: 12px;
  139. padding: 0 0 12px 16px ;
  140. .box{
  141. position: relative;
  142. height: 66px;
  143. padding: 12px 0 ;
  144. .more{
  145. position: absolute;
  146. top: 19px;
  147. right: 12px;
  148. font-size: 24px;
  149. color: #b3b3b3;
  150. }
  151. }
  152. .name{
  153. line-height: 18px;
  154. color: rgba(16, 16, 16, 100);
  155. font-size: 18px;
  156. font-weight: 600;
  157. }
  158. .address{
  159. line-height: 20px;
  160. color: rgba(51, 51, 51, 100);
  161. margin-top: 4px;
  162. }
  163. // 联系电话
  164. .tel{
  165. line-height: 48px;
  166. display: flex;
  167. justify-content: space-between;
  168. border: 1px solid #eef2f0;
  169. border-left: none;
  170. position: relative;
  171. .tel-num{
  172. width: 50%;
  173. }
  174. .more2{
  175. display: inline-block;
  176. font-size: 24px;
  177. color: #b3b3b3;
  178. height: 48px;
  179. position: absolute;
  180. top: 1px;
  181. right: 12px;
  182. }
  183. }
  184. .item{
  185. margin-top: 20px;
  186. }
  187. }
  188. </style>