Commit 87ce810a authored by 华国豪's avatar 华国豪 🙄
parents 999b34ac c97960f2
...@@ -669,6 +669,16 @@ ...@@ -669,6 +669,16 @@
overflow: auto; overflow: auto;
-webkit-overflow-scrolling: touch; -webkit-overflow-scrolling: touch;
} }
.notFoundPage{
position:fixed;
width:100%;
height:100%;
top:0;
z-index:999;
background-color: #fff;
text-align: center;
line-height: 100px;
}
</style> </style>
<template> <template>
...@@ -942,8 +952,11 @@ ...@@ -942,8 +952,11 @@
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<div class="tripMenuWrap" v-if="showDialog"> <div class="notFoundPage" v-if="showDiv">
未找到指定页面
</div>
<div class="tripMenuWrap" v-if="showDialog">
<div class="greyBg"></div> <div class="greyBg"></div>
<div class="tripMenu"> <div class="tripMenu">
<div class="btnPageHeader">选择查看的页面</div> <div class="btnPageHeader">选择查看的页面</div>
...@@ -976,12 +989,12 @@ ...@@ -976,12 +989,12 @@
<div class="btnDay" v-for="(item,index) in dataList.dayList" @click="goDaySwiper(index,'dayList'+(index+1))" :key="index">D{{index+1}}</div> <div class="btnDay" v-for="(item,index) in dataList.dayList" @click="goDaySwiper(index,'dayList'+(index+1))" :key="index">D{{index+1}}</div>
</div> </div>
</div> </div>
</div> </div>
<div class="swiperFixedBtn" @click="showMenu()"> <div class="swiperFixedBtn" @click="showMenu()">
<i class="iconfont icon-more1 TripctrlBtn" v-if="!showDialog"></i> <i class="iconfont icon-more1 TripctrlBtn" v-if="!showDialog"></i>
<i class="iconfont icon-cha TripctrlBtn" v-else></i> <i class="iconfont icon-cha TripctrlBtn" v-else></i>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import Swiper from "swiper"; import Swiper from "swiper";
...@@ -1003,6 +1016,7 @@ ...@@ -1003,6 +1016,7 @@
swiperV: '', swiperV: '',
showType: 1, //显示类型(1-所有的,2-每天的) showType: 1, //显示类型(1-所有的,2-每天的)
travelLngLat: [], travelLngLat: [],
showDiv:false
}; };
}, },
created() {}, created() {},
...@@ -1013,6 +1027,12 @@ ...@@ -1013,6 +1027,12 @@
mounted() { mounted() {
this.msg.ID = this.$route.query.ID; this.msg.ID = this.$route.query.ID;
this.msg.tcid = this.$route.query.tcid; this.msg.tcid = this.$route.query.tcid;
var oldTimeStamp = this.$route.query.ExpireTime;
var timestamp = Date.parse(new Date());
if(timestamp>oldTimeStamp){
// this.Error('超时');
this.showDiv=true;
}
this.getTrip(); this.getTrip();
//加载滑动 //加载滑动
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment