|
@@ -5,7 +5,7 @@
|
|
|
<view :style="{height: `calc(${statusBarHeight}px + 100px)`}"></view>
|
|
|
<view class="package-card flex-row flex-between">
|
|
|
<view class="flex-row flex-column" style="align-items: flex-start;">
|
|
|
- <view class="left-first flex-row">
|
|
|
+ <view @click="$srcFn(`/pages/carList/carList`)" class="left-first flex-row">
|
|
|
<view>{{car_info.car_name}}</view>
|
|
|
<img class="left-img" src="https://qiniu.bms16.com/Fpf25Lkkrx05pvLw08mksVQKAQWf" />
|
|
|
</view>
|
|
@@ -87,51 +87,25 @@
|
|
|
return {
|
|
|
hireOrderList: [],
|
|
|
page: 1,
|
|
|
- limit: 10,
|
|
|
+ limit: 100,
|
|
|
car_info: {},
|
|
|
// statusBarHeight: 0,
|
|
|
// navabarHeight: 0,
|
|
|
- packageList: [{
|
|
|
- ctime: '2024-04-04 16:15',
|
|
|
- total_duration: 30,
|
|
|
- efficient_day: 24,
|
|
|
- change_rate: 6,
|
|
|
- total_times: 10,
|
|
|
- status: 1
|
|
|
- },
|
|
|
- {
|
|
|
- ctime: '2024-04-04 16:15',
|
|
|
- total_duration: 30,
|
|
|
- efficient_day: 24,
|
|
|
- change_rate: 6,
|
|
|
- total_times: 10,
|
|
|
- status: 2
|
|
|
- },
|
|
|
- ]
|
|
|
+ packageList: []
|
|
|
};
|
|
|
},
|
|
|
/**
|
|
|
* 生命周期函数--监听页面加载
|
|
|
*/
|
|
|
onLoad: function(options) {
|
|
|
- this.car_info = uni.getStorageSync('car_info') || {};
|
|
|
- // const clientRect = uni.getMenuButtonBoundingClientRect()
|
|
|
- // const sysinfo = uni.getSystemInfoSync()
|
|
|
- // let GAP = 8
|
|
|
- // // #ifdef MP-ALIPAY
|
|
|
- // GAP = 0
|
|
|
- // // #endif
|
|
|
- // const navabarHeight = (clientRect.bottom - sysinfo.statusBarHeight) + (clientRect.top - sysinfo.statusBarHeight) + GAP
|
|
|
- // this.navabarHeight = navabarHeight
|
|
|
- // this.statusBarHeight = sysinfo.statusBarHeight
|
|
|
- this.mapCtx = uni.createMapContext('myMap');
|
|
|
- this.listFn()
|
|
|
+
|
|
|
},
|
|
|
/**
|
|
|
* 生命周期函数--监听页面显示
|
|
|
*/
|
|
|
onShow: function() {
|
|
|
-
|
|
|
+ this.car_info = uni.getStorageSync('car_info') || {};
|
|
|
+ this.listFn()
|
|
|
},
|
|
|
methods: {
|
|
|
calculateRemainingDays(expirationDate) {
|