Browse Source

下拉加载重复显示问题

lyn7568 6 years ago
parent
commit
a9f334306c

+ 1 - 0
src/components/global-component/loading/Loading.vue

@ -41,6 +41,7 @@
41 41
42 42
<style scoped>
43 43
  .loadSty{
44
    width: 100%;
44 45
    display:flex;
45 46
    justify-content: center;
46 47
    padding:20px 0;

+ 0 - 5
src/pages/index/views/ViewExpertPool/expItem.vue

@ -139,8 +139,3 @@
139 139
    }
140 140
  };
141 141
</script>
142
<style scoped>
143
  .loadSty{
144
    width: 100%;
145
  }
146
</style>

+ 0 - 5
src/pages/index/views/ViewOrganization/orgItem.vue

@ -140,8 +140,3 @@
140 140
    }
141 141
  }
142 142
</script>
143
<style scoped>
144
  .loadSty{
145
    width: 100%;
146
  }
147
</style>

+ 6 - 2
src/pages/index/views/ViewPlatTrend/news.vue

@ -23,7 +23,6 @@
23 23
        loadingModalShow: true, // 是否显示按钮
24 24
        loadingComplete: false, // 是否全部加载
25 25
        isFormSearch: false, // 数据加载
26
        isLoading: false, // button style...
27 26
        ifDefault: false
28 27
      };
29 28
    },
@ -46,6 +45,11 @@
46 45
        }, (res) => {
47 46
          that.$parent.loadState = false
48 47
          if (res.success && res.data) {
48
            if (res.data.pageNo !== that.pageNo) {
49
              that.loadingModalShow = false;
50
              that.isFormSearch = false;
51
              return;
52
            }
49 53
            var $info = res.data.data;
50 54
            if ($info.length > 0) {
51 55
              for (let i = 0; i < $info.length; ++i) {
@ -71,7 +75,7 @@
71 75
        });
72 76
      },
73 77
      loadLower() {
74
        if (this.loadingModalShow && !this.isLoading) {
78
        if (this.loadingModalShow && this.isFormSearch) {
75 79
          this.pageNo++;
76 80
          this.queryPaltNews();
77 81
        }

+ 5 - 0
src/pages/index/views/ViewRegCompany/index.vue

@ -53,6 +53,11 @@
53 53
        }, (res) => {
54 54
          that.loading = false
55 55
          if (res.success) {
56
            if (res.data.pageNo !== that.pageNo) {
57
              that.loadingModalShow = false;
58
              that.isFormSearch = false;
59
              return;
60
            }
56 61
            var $info = res.data.data;
57 62
            if ($info.length > 0) {
58 63
              for (let i = 0; i < $info.length; ++i) {