123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <template>
- <view>
- <u-navbar title="预约单详情">
- </u-navbar>
- <view class="iconfont tittle-font">
- 
- </view>
- <u-alert-tips type="warning" :description="description"></u-alert-tips>
- <view class="reverse-time">
- <view class="time">
- 预留30分钟
- </view>
- <view class="details-item">
- <view class="item">
- <view class="item-name">
- 预约单号
- </view>
- <view class="item-content">
- 0000111122223333
- </view>
- </view>
- <view class="item">
- <view class="item-name">
- 预计开始充电
- </view>
- <view class="item-content">
- 2022-05-31 09:30:00
- </view>
- </view>
- <view class="item">
- <view class="item-name">
- 预计充电时长
- </view>
- <view class="item-content">
- 6小时
- </view>
- </view>
- </view>
- </view>
- <!-- 充电桩详情 -->
- <view class="charge-pile">
- <view class="box">
- <view class="name">
- 荆鹏软件园充电站/1号快充桩
- </view>
- <view class="address">
- 湖北省荆州市沙市区江津东路附155号
- </view>
- <text class="iconfont more">
- 
- </text>
- </view>
- <view class="tel">
- <view class="tel-text">
- 联系电话
- </view>
- <view class="tel-num">
- 李先生 15100001111
- <text class="iconfont more2">
- 
- </text>
- </view>
- </view>
- <view class="details-item">
- <view class="item">
- <view class="item-name">
- 预约单生成时间
- </view>
- <view class="item-content">
- 2022-05-31 09:00:00
- </view>
- </view>
- <view class="item">
- <view class="item-name">
- 电费单价(kW/h)
- </view>
- <view class="item-content">
- 1.00元
- </view>
- </view>
- <view class="item">
- <view class="item-name">
- 充电服务费(kW/h)
- </view>
- <view class="item-content">
- 1.00元
- </view>
- </view>
- </view>
- </view>
- <!-- 底部按钮 -->
- <view class="bottom">
- <u-button shape='circle'>扫码充电</u-button>
- <u-button type="success" shape='circle'>导航</u-button>
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- description: '等待桩主确认预约单,剩余时间04:59:59'
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page{
- padding-bottom: 151px;
- }
- .tittle-font {
- font-size: 24px;
- position: fixed;
- top: 12px;
- right: 16px;
- z-index: 99999;
- }
- /deep/.u-alert-desc {
- width: 100vw;
- text-align: center;
- color: #ff5a00;
- }
- .reverse-time {
- background-color: #fff;
- padding: 36px 12px 16px 28px;
- .time {
- height: 36px;
- color: rgba(0, 185, 98, 100);
- font-size: 36px;
- text-align: center;
- }
- }
- .details-item {
- margin-top: 32px;
- padding-right: 16px;
- padding-bottom: 46px;
- .item {
- display: flex;
- justify-content: space-between;
- margin-top: 8px;
- }
- }
- // 充电桩详情
- .charge-pile {
- background-color: #fff;
- margin-top: 12px;
- padding: 0 0 12px 16px;
- .box {
- position: relative;
- height: 66px;
- padding: 12px 0;
- .more {
- position: absolute;
- top: 19px;
- right: 12px;
- font-size: 24px;
- color: #b3b3b3;
- }
- }
- .name {
- line-height: 18px;
- color: rgba(16, 16, 16, 100);
- font-size: 18px;
- font-weight: 600;
- }
- .address {
- line-height: 20px;
- color: rgba(51, 51, 51, 100);
- margin-top: 4px;
- }
- // 联系电话
- .tel {
- line-height: 48px;
- display: flex;
- justify-content: space-between;
- border: 1px solid #eef2f0;
- border-left: none;
- position: relative;
- .tel-num {
- width: 50%;
- }
- .more2 {
- display: inline-block;
- font-size: 24px;
- color: #b3b3b3;
- height: 48px;
- position: absolute;
- top: 1px;
- right: 12px;
- }
- }
- .item {
- margin-top: 20px;
- }
- }
- // 按钮
- .bottom{
- width: 100%;
- height: 56px;
- background-color: #fff;
- position: fixed;
- bottom: 0;
- display: flex;
- .u-btn{
- width: 44%;
- height: 32px;
- margin: auto;
- font-size: 18px
- }
- }
- </style>
|