From 873ec036ec89b681e253705c2e025278cadf58dc Mon Sep 17 00:00:00 2001 From: Crunchy <3114200645@qq.com> Date: 星期三, 24 四月 2024 17:30:24 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/components/view/a6-device-overview.vue | 36 +++++++++++------------------------- 1 files changed, 11 insertions(+), 25 deletions(-) diff --git a/src/components/view/a6-device-overview.vue b/src/components/view/a6-device-overview.vue index eb4bfab..196ea2e 100644 --- a/src/components/view/a6-device-overview.vue +++ b/src/components/view/a6-device-overview.vue @@ -151,8 +151,9 @@ <el-button size="small" type="primary" @click="currentPage= 1,list=[],finishLoding = false,refreshTable()">鏌� 璇�</el-button> </div> </div> - <div class="table" @scroll="scrollFn"> - <ul v-loading="loading" class="card"> + <div class="table" v-loading="loading"> + <scroll-pagination @load="refreshTable" :finishLoding="finishLoding"> + <ul class="card"> <li v-for="(m,i) in list" :key="i"> <el-image class="img" :src="javaApi+'/img/'+m.imageUpload"> <div slot="error" class="image-error" style="width: 112px; @@ -192,27 +193,18 @@ </div> </li> </ul> - <div v-if="list.length<1&&!loading&&!isLoding" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >鏆傛棤鏁版嵁</div> - <div v-if="list.length>0"> - <el-button - v-if="isLoding" - type="text" - style="display: flex; margin: 0 auto; color: #909399" - ><i class="el-icon-loading" style="font-size:20px"></i - ></el-button> - <el-button - type="text" - v-if="finishLoding" - style="display: flex; margin: 0 auto; color: #909399" - >宸茬粡娌℃湁鏇村鍟</el-button - > - </div> + </scroll-pagination> + <div v-if="list.length<1&&!loading" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >鏆傛棤鏁版嵁</div> </div> </div> </template> <script> +import ScrollPagination from '../tool/scroll-paging.vue' export default { + components: { + ScrollPagination + }, data() { return { entity:{ @@ -226,7 +218,6 @@ pageSize: 16, // 涓�椤�16鏉� total: '', loading: true, // 缁勪欢loading鐨勫睍绀�,榛樿涓簍rue - isLoding: false, // 鍔犺浇涓紝loading鍥炬爣,榛樿涓簍rue finishLoding: false // 鍔犺浇瀹屾垚锛屾樉绀哄凡缁忔病鏈夋洿澶氫簡 } }, @@ -238,13 +229,8 @@ }, methods: { refreshTable() { - if(this.currentPage>1){ - this.isLoding = true - }else{ + if(this.currentPage==1){ this.loading = true - } - if(this.list.length==0){ - window.addEventListener("scroll", this.throttle(this.scrollFn, 20000)); } this.$axios.post(this.$api.deviceScope.selectDeviceParameter,{ page: { @@ -291,10 +277,10 @@ if(this.total==this.list.length){ this.finishLoding = true; } + this.currentPage++; } } this.loading = false - this.isLoding = false; }) }, refresh() { -- Gitblit v1.9.3