|
|
@@ -93,7 +93,7 @@ onLoad(() => {
|
|
|
})
|
|
|
onShow(() => {
|
|
|
result_state.value = 0
|
|
|
- date_state.value = 1
|
|
|
+ // date_state.value = 1
|
|
|
currentPage.value = 1
|
|
|
listData.value = []
|
|
|
getMyData()
|
|
|
@@ -178,7 +178,7 @@ const timeList = ref([
|
|
|
// 预约状态 0:全部 1:预约成功 2:已乘车 3:候补中 4:已取消 5:已爽约
|
|
|
const result_state = ref(0)
|
|
|
// 时间状态 1:全部 2:当天 3:本周 4:本月
|
|
|
-const date_state = ref(1)
|
|
|
+const date_state = ref(3)
|
|
|
// 每页多少条数据
|
|
|
const pageSize = ref(5)
|
|
|
// 当前是第几页
|
|
|
@@ -287,7 +287,7 @@ const handleCancelRequest = async (id) => {
|
|
|
const getConveyData = (Obj) => {
|
|
|
// console.log(Obj)
|
|
|
result_state.value = Obj.typeIndex
|
|
|
- date_state.value = Obj.timeIndex - 0 + 1
|
|
|
+ // date_state.value = Obj.timeIndex - 0 + 1
|
|
|
currentPage.value = 1
|
|
|
listData.value = []
|
|
|
getMyData()
|