|
@@ -1,122 +1,60 @@
|
|
<template>
|
|
<template>
|
|
<view>
|
|
<view>
|
|
<u-navbar title="我被预约">
|
|
<u-navbar title="我被预约">
|
|
- <view class="screen">筛选</view>
|
|
|
|
|
|
+ <view class="screen" @click="screenClick">筛选</view>
|
|
</u-navbar>
|
|
</u-navbar>
|
|
- <view class="reservation-items">
|
|
|
|
- <view class="station-name">
|
|
|
|
- 预约30分钟后充电
|
|
|
|
- <view class="toBe-confirmed btn">
|
|
|
|
- 待确认
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="details-items">
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 预留截止时间
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 2022-05-31 09:30:00
|
|
|
|
-
|
|
|
|
|
|
+ <view>
|
|
|
|
+ <view v-if="screenShow" class="preference" :style="screenShow ? 'z-index:1024;top:'+navBarHeight+'px;' : 'z-index:0'"
|
|
|
|
+ style="width: 100%;">
|
|
|
|
+ <view class="content-s">
|
|
|
|
+ <view class="preference_group">
|
|
|
|
+ <view class="preference_group_item" :class="statusClass == index ? 'active' : ''" v-for="(item,index) in statusList" :key="item.id" @click="statusClick(index,item)">{{item.name}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预计充电时长
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
-
|
|
|
|
- 6小时
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约站点
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 荆鹏充电站
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约桩号
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 1号快充桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 充电桩类型
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 交流充电桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="button">
|
|
|
|
- <u-button class="affirm" shape="circle">确认</u-button>
|
|
|
|
- <u-button class="contact" shape="circle">联系他</u-button>
|
|
|
|
- <u-button class="refuse" shape="circle">拒绝</u-button>
|
|
|
|
-
|
|
|
|
</view>
|
|
</view>
|
|
|
|
+ <u-mask :show="screenShow" @click="screenShow = false" z-index="100"></u-mask>
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
- <view class="reservation-items">
|
|
|
|
|
|
+ <view class="reservation-items" v-for="(item,index) in appointmentList" :key="item.id" @click="gotoUrl('pagesFinance/preengaged/preengagedListDetails?id='+item.id)">
|
|
<view class="station-name">
|
|
<view class="station-name">
|
|
- 预约30分钟后充电
|
|
|
|
- <view class="confirmed btn">
|
|
|
|
- 已确认
|
|
|
|
- </view>
|
|
|
|
|
|
+ 预约{{item.reserveMinutes}}分钟后充电
|
|
|
|
+ <view class="toBe-confirmed btn" v-if="item.status == '0'">{{item.statusText}}</view>
|
|
|
|
+ <view class="confirmed btn" v-if="item.status == '1'">{{item.statusText}}</view>
|
|
|
|
+ <view class="canceled btn" v-if="item.status == '3'">{{item.statusText}}</view>
|
|
|
|
+ <view class="have-expired btn" v-if="item.status == '9'">{{item.statusText}}</view>
|
|
|
|
+ <view class="finished btn" v-if="item.status == '2'">{{item.statusText}}</view>
|
|
|
|
+ <view class="refused btn" v-if="item.status == '4'">{{item.statusText}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="details-items">
|
|
<view class="details-items">
|
|
<view class="items">
|
|
<view class="items">
|
|
<view class="items-name">
|
|
<view class="items-name">
|
|
预留截止时间
|
|
预留截止时间
|
|
-
|
|
|
|
</view>
|
|
</view>
|
|
<view class="items-content">
|
|
<view class="items-content">
|
|
- 2022-05-31 09:30:00
|
|
|
|
-
|
|
|
|
|
|
+ {{item.endTime}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="items">
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
|
|
+ <view class="items-name">
|
|
预计充电时长
|
|
预计充电时长
|
|
-
|
|
|
|
</view>
|
|
</view>
|
|
<view class="items-content">
|
|
<view class="items-content">
|
|
-
|
|
|
|
- 6小时
|
|
|
|
-
|
|
|
|
|
|
+ {{item.estimateMinutes != null ? (item.estimateMinutes/60).toFixed(1)+'小时' : '0'}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="items">
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
|
|
+ <view class="items-name">
|
|
预约站点
|
|
预约站点
|
|
-
|
|
|
|
</view>
|
|
</view>
|
|
<view class="items-content">
|
|
<view class="items-content">
|
|
- 荆鹏充电站
|
|
|
|
|
|
+ {{item.stationName}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="items">
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
|
|
+ <view class="items-name">
|
|
预约桩号
|
|
预约桩号
|
|
</view>
|
|
</view>
|
|
<view class="items-content">
|
|
<view class="items-content">
|
|
- 1号快充桩
|
|
|
|
|
|
+ {{item.deviceName}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="items">
|
|
<view class="items">
|
|
@@ -124,295 +62,173 @@
|
|
充电桩类型
|
|
充电桩类型
|
|
</view>
|
|
</view>
|
|
<view class="items-content">
|
|
<view class="items-content">
|
|
- 交流充电桩
|
|
|
|
|
|
+ {{item.typeText}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="button">
|
|
|
|
-
|
|
|
|
- <u-button class="contact" shape="circle">联系他</u-button>
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- <view class="reservation-items">
|
|
|
|
- <view class="station-name">
|
|
|
|
- 预约30分钟后充电
|
|
|
|
- <view class="canceled btn">
|
|
|
|
- 已取消
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="details-items">
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 预留截止时间
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 2022-05-31 09:30:00
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预计充电时长
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
-
|
|
|
|
- 6小时
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约站点
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 荆鹏充电站
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约桩号
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 1号快充桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 充电桩类型
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 交流充电桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="button">
|
|
|
|
-
|
|
|
|
- <u-button class="delete" shape="circle">删除</u-button>
|
|
|
|
</view>
|
|
</view>
|
|
- </view>
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- <view class="reservation-items">
|
|
|
|
- <view class="station-name">
|
|
|
|
- 预约30分钟后充电
|
|
|
|
- <view class="have-expired btn">
|
|
|
|
- 已过期
|
|
|
|
- </view>
|
|
|
|
|
|
+ <view class="button" v-if="item.status == '0'">
|
|
|
|
+ <u-button class="affirm" shape="circle" @click="sureClick(item)">确认</u-button>
|
|
|
|
+ <u-button class="contact" shape="circle" @click="phoneClick(item)">联系他</u-button>
|
|
|
|
+ <u-button class="refuse" shape="circle" @click="refuseClick(item)">拒绝</u-button>
|
|
</view>
|
|
</view>
|
|
- <view class="details-items">
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 预留截止时间
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 2022-05-31 09:30:00
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预计充电时长
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
-
|
|
|
|
- 6小时
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约站点
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 荆鹏充电站
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约桩号
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 1号快充桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 充电桩类型
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 交流充电桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="button">
|
|
|
|
- <u-button class="contact" shape="circle">联系他</u-button>
|
|
|
|
- <u-button class="delete" shape="circle">删除</u-button>
|
|
|
|
-
|
|
|
|
|
|
+ <view class="button" v-if="item.status == '1'">
|
|
|
|
+ <u-button class="contact" shape="circle" @click="phoneClick(item)">联系他</u-button>
|
|
</view>
|
|
</view>
|
|
- </view>
|
|
|
|
-
|
|
|
|
- <view class="reservation-items">
|
|
|
|
- <view class="station-name">
|
|
|
|
- 预约30分钟后充电
|
|
|
|
- <view class="finished btn">
|
|
|
|
- 已完成
|
|
|
|
- </view>
|
|
|
|
|
|
+ <view class="button" v-if="item.status == '3'">
|
|
|
|
+ <!-- <u-button class="delete" shape="circle" @click="deleteClick(item)">删除</u-button> -->
|
|
</view>
|
|
</view>
|
|
- <view class="details-items">
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 预留截止时间
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 2022-05-31 09:30:00
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预计充电时长
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
-
|
|
|
|
- 6小时
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约站点
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 荆鹏充电站
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约桩号
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 1号快充桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 充电桩类型
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 交流充电桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="button">
|
|
|
|
- <u-button class="contact" shape="circle">联系他</u-button>
|
|
|
|
|
|
+ <view class="button" v-if="item.status == '9'">
|
|
|
|
+ <u-button class="contact" shape="circle" @click="phoneClick(item)">联系他</u-button>
|
|
|
|
+ <!-- <u-button class="delete" shape="circle" @click="deleteClick(item)">删除</u-button> -->
|
|
</view>
|
|
</view>
|
|
- </view>
|
|
|
|
-
|
|
|
|
- <view class="reservation-items">
|
|
|
|
- <view class="station-name">
|
|
|
|
- 预约30分钟后充电
|
|
|
|
- <view class="refused btn">
|
|
|
|
- 已拒绝
|
|
|
|
- </view>
|
|
|
|
|
|
+ <view class="button" v-if="item.status == '2'">
|
|
|
|
+ <u-button class="contact" shape="circle" @click="phoneClick(item)">联系他</u-button>
|
|
</view>
|
|
</view>
|
|
- <view class="details-items">
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 预留截止时间
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 2022-05-31 09:30:00
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预计充电时长
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
-
|
|
|
|
- 6小时
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约站点
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 荆鹏充电站
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
-
|
|
|
|
- 预约桩号
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 1号快充桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
- <view class="items">
|
|
|
|
- <view class="items-name">
|
|
|
|
- 充电桩类型
|
|
|
|
- </view>
|
|
|
|
- <view class="items-content">
|
|
|
|
- 交流充电桩
|
|
|
|
- </view>
|
|
|
|
- </view>
|
|
|
|
-
|
|
|
|
- </view>
|
|
|
|
-
|
|
|
|
</view>
|
|
</view>
|
|
|
|
+ <u-divider v-if="appointmentList.length == recordsTotal && recordsTotal != 0" style="margin-top: 10px;">已经到底了</u-divider>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+ import * as myApi from '@/apis/my.js'
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ screenShow: false,
|
|
|
|
+ navBarHeight:44,
|
|
|
|
+ statusList: [
|
|
|
|
+ {id:"",name:"全部预约单"},
|
|
|
|
+ {id:"0",name:"待确认"},
|
|
|
|
+ {id:"1",name:"已预约"},
|
|
|
|
+ {id:"2",name:"已完成"},
|
|
|
|
+ {id:"3",name:"已取消"},
|
|
|
|
+ {id:"4",name:"已拒绝"},
|
|
|
|
+ {id:"9",name:"已过期"},
|
|
|
|
+ ],
|
|
|
|
+ statusClass: '',
|
|
|
|
+ pageIndex: 1,
|
|
|
|
+ recordsTotal: 0,
|
|
|
|
+ appointmentList: [],
|
|
|
|
+ status: '',
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ onReady() {
|
|
|
|
+ this.getAppointmentList(true);
|
|
|
|
+ },
|
|
|
|
+ onReachBottom() {
|
|
|
|
+ if (this.appointmentList.length < this.recordsTotal) {
|
|
|
|
+ this.myLoadmore();
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
-
|
|
|
|
|
|
+ screenClick() {
|
|
|
|
+ this.screenShow = !this.screenShow;
|
|
|
|
+ },
|
|
|
|
+ statusClick(index,item) {
|
|
|
|
+ this.statusClass = index;
|
|
|
|
+ this.status = item.id;
|
|
|
|
+ this.screenShow = false;
|
|
|
|
+ this.getAppointmentList(true);
|
|
|
|
+ },
|
|
|
|
+ getAppointmentList(bl) {
|
|
|
|
+ uni.showLoading({
|
|
|
|
+ title: "加载中",
|
|
|
|
+ mask: true,
|
|
|
|
+ })
|
|
|
|
+ if (bl) {
|
|
|
|
+ this.appointmentList = [];
|
|
|
|
+ this.pageIndex = 1;
|
|
|
|
+ }
|
|
|
|
+ myApi.merchantAppointmentList({
|
|
|
|
+ pageIndex: this.pageIndex,
|
|
|
|
+ status: this.status
|
|
|
|
+ }).then((res) => {
|
|
|
|
+ uni.hideLoading();
|
|
|
|
+
|
|
|
|
+ this.appointmentList = [
|
|
|
|
+ ...this.appointmentList,
|
|
|
|
+ ...res.data.data
|
|
|
|
+ ];
|
|
|
|
+ this.recordsTotal = res.data.recordsTotal;
|
|
|
|
+ }).catch(error => {
|
|
|
|
+ uni.showToast({
|
|
|
|
+ title: error,
|
|
|
|
+ icon: "none"
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ myLoadmore() {
|
|
|
|
+ this.pageIndex += 1;
|
|
|
|
+ this.getAppointmentList()
|
|
|
|
+ },
|
|
|
|
+ sureClick(item) {
|
|
|
|
+ uni.showLoading({
|
|
|
|
+ title: "加载中",
|
|
|
|
+ mask: true,
|
|
|
|
+ })
|
|
|
|
+ myApi.merchantChangeStatus({
|
|
|
|
+ id: item.id,
|
|
|
|
+ status: '1'
|
|
|
|
+ }).then((res) => {
|
|
|
|
+ uni.hideLoading();
|
|
|
|
+ this.getAppointmentList(true);
|
|
|
|
+ }).catch(error => {
|
|
|
|
+ uni.showToast({
|
|
|
|
+ title: error,
|
|
|
|
+ icon: "none"
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ refuseClick(item) {
|
|
|
|
+ uni.showLoading({
|
|
|
|
+ title: "加载中",
|
|
|
|
+ mask: true,
|
|
|
|
+ })
|
|
|
|
+ myApi.merchantChangeStatus({
|
|
|
|
+ id: item.id,
|
|
|
|
+ status: '4'
|
|
|
|
+ }).then((res) => {
|
|
|
|
+ uni.hideLoading();
|
|
|
|
+ this.getAppointmentList(true);
|
|
|
|
+ }).catch(error => {
|
|
|
|
+ uni.showToast({
|
|
|
|
+ title: error,
|
|
|
|
+ icon: "none"
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ phoneClick(item) {
|
|
|
|
+ uni.makePhoneCall({
|
|
|
|
+ phoneNumber: item.phone
|
|
|
|
+ });
|
|
|
|
+ },
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
+ .preference {
|
|
|
|
+ background-color: #ffffff;
|
|
|
|
+ left: 0rpx;
|
|
|
|
+ position: absolute
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ .preference_group_item {
|
|
|
|
+ padding: 15rpx;
|
|
|
|
+ text-align: center;
|
|
|
|
+ color: #777777;
|
|
|
|
+ }
|
|
|
|
+ .active {
|
|
|
|
+ color: #00B962;
|
|
|
|
+ }
|
|
|
|
+ .preference_group {
|
|
|
|
+ padding-bottom: 20rpx;
|
|
|
|
+ }
|
|
|
|
+ .content-s{
|
|
|
|
+ height: 200px;
|
|
|
|
+ overflow-y:scroll;
|
|
|
|
+ }
|
|
page{
|
|
page{
|
|
padding-bottom: 155px;
|
|
padding-bottom: 155px;
|
|
}
|
|
}
|