Commit 43168dbf authored by zhengke's avatar zhengke

修复 成员列表 分页

parent bffa3549
...@@ -702,12 +702,14 @@ watch(()=>autoSave.value,(newVal)=>{ ...@@ -702,12 +702,14 @@ watch(()=>autoSave.value,(newVal)=>{
}) })
watch(()=>slides.value,(newVal,oldVal)=>{ watch(()=>slides.value,(newVal,oldVal)=>{
if(model.value==2&&SalesEditor.value>0&&searchData.value.sellId){ if(model.value==2&&SalesEditor.value>0&&searchData.value.sellId){
searchData.value.MonitoringNumber++ if(searchData.value.MonitoringNumber==0){
if(searchData.value.MonitoringNumber&&searchData.value.MonitoringNumber>1) { searchData.value.MonitoringNumber++
Countdown.value = timer if(searchData.value.MonitoringNumber&&searchData.value.MonitoringNumber>1) {
benginTimer() Countdown.value = timer
benginTimer()
}
// MonitoringNumber.value++
} }
// MonitoringNumber.value++
} }
},{ },{
deep: true, deep: true,
......
...@@ -117,7 +117,8 @@ ...@@ -117,7 +117,8 @@
const getDatas = async () => { const getDatas = async () => {
const response = await MatchingData.ScenicSearch(params) const response = await MatchingData.ScenicSearch(params)
if (response.data.resultCode == 1) { if (response.data.resultCode == 1) {
dataListAll.value = dataList.value = checkPoiCoverImg(response.data.data) let dataLists = response.data.data.filter(x=>x.Feature!='')
dataListAll.value = dataList.value = checkPoiCoverImg(dataLists)
} }
loading.value = false loading.value = false
} }
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
</el-menu> </el-menu>
<el-button class="full-width pingfangr text-weight-bolder" @click="forwardSpace" style="font-size: 14px !important;" icon="arrow-left">返回工作台</el-button> <el-button class="full-width pingfangr text-weight-bolder" @click="forwardSpace" style="font-size: 14px !important;" icon="arrow-left">返回工作台</el-button>
</div> </div>
<el-scrollbar v-if="path!='/a/c'" class="col full-height user-center-body" wrap-style="overflow-x:unset;" view-style="padding-bottom:30px;"> <el-scrollbar v-if="path!='/a/c'&&path!='/a/u'" class="col full-height user-center-body" wrap-style="overflow-x:unset;" view-style="padding-bottom:30px;">
<router-view /> <router-view />
</el-scrollbar> </el-scrollbar>
<div v-else class="col full-height user-center-body" view-style="padding-bottom:30px;"> <div v-else class="col full-height user-center-body" view-style="padding-bottom:30px;">
......
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