Browse Source

h5 search

lyn7568 6 years ago
parent
commit
fbf81b39a8
3 changed files with 111 additions and 55 deletions
  1. 1 3
      src/pages/h5/h5.js
  2. 23 6
      src/pages/h5/views/search/scrollMore.vue
  3. 87 46
      src/pages/h5/views/search/search.vue

+ 1 - 3
src/pages/h5/h5.js

@ -25,13 +25,11 @@ new Vue({
25 25
  router: router,
26 26
  render: h => h(App),
27 27
  created () {
28
    router.beforeEach((to, from, next) => {
28
    router.afterEach((to, from, next) => {
29 29
      document.title = PLAT.info.title
30 30
      if (to.meta.title) {
31 31
        document.title = to.meta.title + '-' + PLAT.info.title
32 32
      }
33
    })
34
    router.afterEach((to, from, next) => {
35 33
      window.scrollTo(0, 0);
36 34
    })
37 35
  }

+ 23 - 6
src/pages/h5/views/search/scrollMore.vue

@ -1,7 +1,8 @@
1 1
<template lang="html">
2
    <div class="yo-scroll" @touchstart="touchStart($event)"
2
 
3
    <div class="yo-scroll" @touchstart="touchStart($event)" ref="scrollBox"
3 4
         @touchmove="touchMove($event)" @touchend="touchEnd($event)" :style="{top: topVal+'px'}" v-loading="dataList.loading">
4
      <section class="inner">
5
      <section class="inner" ref="contentBox">
5 6
        <!-- 使用时外面的标签会填在里面 -->
6 7
        <slot>
7 8
        </slot>
@ -48,13 +49,16 @@ export default {
48 49
      loadMoreText: '上拉加载更多'
49 50
    };
50 51
  },
52
  mounted() {
53
    this.scrollBottomTest()
54
  },
51 55
  methods: {
52 56
    touchStart(e) {
53 57
      this.startY = e.targetTouches[0].pageY;
54 58
      this.startX = e.targetTouches[0].pageX;
55 59
      this.startScroll = this.$el.scrollTop || 0;
56 60
      this.touching = true; //留着有用,不能删除
57
      this.dataList.noFlag = false;
61
      // this.dataList.noFlag = false;
58 62
    },
59 63
    //滑动中
60 64
    touchMove(e) {
@ -98,9 +102,8 @@ export default {
98 102
      let outerHeight = this.$el.clientHeight,
99 103
        innerHeight = this.$el.querySelector('.inner').clientHeight,
100 104
        scrollTop = this.$el.scrollTop,
101
        bottom = innerHeight - outerHeight - scrollTop;
102
103
      if (bottom <= this.offset) {
105
        bottom = innerHeight - outerHeight - scrollTop - 50;
106
      if (bottom <= this.offset && !this.dataList.noFlag) {
104 107
        //内容太少
105 108
        this.doLoadMore();
106 109
      } else {
@ -117,6 +120,20 @@ export default {
117 120
      this.isLoading = false;
118 121
      let more = this.$el.querySelector('.load-more');
119 122
      more.style.display = 'none'; //隐藏加载条
123
    },
124
    scrollBottomTest() {
125
      var that = this
126
      var elbody = this.$refs.scrollBox
127
      var conbody = this.$refs.contentBox
128
      elbody.addEventListener('scroll', () => {
129
        var viewH = elbody.clientHeight, // 可视高度
130
          contentH = conbody.scrollHeight, // 内容高度
131
          scrollTop = elbody.scrollTop; // 滚动高度
132
        //if(contentH - viewH - scrollTop <= 100) { //到达底部100px时,加载新内容
133
        if (scrollTop / (contentH -viewH) >= 0.95 && !that.dataList.noFlag ) { //到达底部100px时,加载新内容
134
          that.doLoadMore();
135
        }
136
      })
120 137
    }
121 138
  }
122 139
};

+ 87 - 46
src/pages/h5/views/search/search.vue

@ -1,6 +1,6 @@
1 1
<template>
2 2
  <div>
3
    <div class="fixedBlock">
3
    <div class="fixedBlock" ref="fixedBlock">
4 4
      <div class="searchBox">
5 5
        <el-input placeholder="请输入关键词" v-model="searchText" @keyup.enter.native="clearToFun"></el-input>
6 6
      </div>
@ -29,50 +29,56 @@
29 29
        </div>
30 30
      </div>
31 31
    </div>
32
    <v-scroll :onLoadMore="onLoadMore" :dataList="scrollData" :topVal="activeTab==='1'? '122' : '84'">
33
      <div v-if="activeTab==='1'">
34
        <template v-if="contentList.length">
35
          <baseContent v-for="watc in contentList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseContent>
36
        </template>
37
        <defaultPage v-else></defaultPage>
38
      </div>
39
      <div v-if="activeTab==='2'">
40
        <template v-if="searchExpert.length">
41
          <baseExpert v-for="watc in searchExpert" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseExpert>
42
        </template>
43
        <defaultPage v-else></defaultPage>
44
      </div>
45
      <div v-if="activeTab==='3'">
46
        <template v-if="serviceList.length">
47
          <baseService v-for="watc in serviceList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseService>
48
        </template>
49
        <defaultPage v-else></defaultPage>
50
      </div>
51
      <div v-if="activeTab === '4'">
52
        <template v-if="resourceList.length">
53
          <baseResource v-for="watc in resourceList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseResource>
54
        </template>
55
        <defaultPage v-else></defaultPage>
56
      </div>
57
      <div v-if="activeTab === '5'">
58
        <template v-if="resultList.length">
59
          <baseResult v-for="watc in resultList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseResult>
60
        </template>
61
        <defaultPage v-else></defaultPage>
62
      </div>
63
      <div v-if="activeTab === '6'">
64
        <template v-if="searchOrg.length">
65
          <baseOrg v-for="watc in searchOrg" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseOrg>
66
        </template>
67
        <defaultPage v-else></defaultPage>
68
      </div>
69
      <div v-if="activeTab === '7'">
70
        <template v-if="companyList.length">
71
          <baseCompany v-for="watc in companyList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseCompany>
72
        </template>
73
        <defaultPage v-else></defaultPage>
32
    <div class="swiper-container" :style="'height:'+ slideH" ref="scrollSwiper">
33
      <div class="swiper-wrapper" :style="'height:'+ slideH">
34
        <div class="swiper-slide swiper-Main-con" :style="'height:'+ slideH" v-for="tab in navList" :key="tab.tab">
35
          <v-scroll :onLoadMore="onLoadMore" :dataList="scrollData" :topVal="activeTab==='1'? '122' : '84'">
36
            <div v-if="tab.tab==='1'">
37
              <template v-if="contentList.length">
38
                <baseContent v-for="watc in contentList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseContent>
39
              </template>
40
              <defaultPage v-else></defaultPage>
41
            </div>
42
            <div v-if="tab.tab==='2'">
43
              <template v-if="searchExpert.length">
44
                <baseExpert v-for="watc in searchExpert" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseExpert>
45
              </template>
46
              <defaultPage v-else></defaultPage>
47
            </div>
48
            <div v-if="tab.tab==='3'">
49
              <template v-if="serviceList.length">
50
                <baseService v-for="watc in serviceList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseService>
51
              </template>
52
              <defaultPage v-else></defaultPage>
53
            </div>
54
            <div v-if="tab.tab === '4'">
55
              <template v-if="resourceList.length">
56
                <baseResource v-for="watc in resourceList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseResource>
57
              </template>
58
              <defaultPage v-else></defaultPage>
59
            </div>
60
            <div v-if="tab.tab === '5'">
61
              <template v-if="resultList.length">
62
                <baseResult v-for="watc in resultList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseResult>
63
              </template>
64
              <defaultPage v-else></defaultPage>
65
            </div>
66
            <div v-if="tab.tab === '6'">
67
              <template v-if="searchOrg.length">
68
                <baseOrg v-for="watc in searchOrg" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseOrg>
69
              </template>
70
              <defaultPage v-else></defaultPage>
71
            </div>
72
            <div v-if="tab.tab === '7'">
73
              <template v-if="companyList.length">
74
                <baseCompany v-for="watc in companyList" :key="watc.index" :itemSingle="watc" :noBlank="true"></baseCompany>
75
              </template>
76
              <defaultPage v-else></defaultPage>
77
            </div>
78
          </v-scroll>
79
        </div>
74 80
      </div>
75
    </v-scroll>
81
    </div>
76 82
  </div>
77 83
</template>
78 84
@ -147,7 +153,8 @@ export default {
147 153
      scrollData:{
148 154
        noFlag: false, //暂无更多数据显示
149 155
        loading: false
150
      }
156
      },
157
      slideH: 0
151 158
    };
152 159
  },
153 160
  components: {
@ -191,6 +198,7 @@ export default {
191 198
        num = 0
192 199
      }
193 200
      this.mySwiperTab.slideTo(num, 500, false)
201
      this.mySwiperMain.slideTo(parseInt(val) - 1, 500, false)
194 202
      this.clearToFun()
195 203
    },
196 204
    activeColumn(val) {
@ -210,6 +218,9 @@ export default {
210 218
  },
211 219
  mounted() {
212 220
    var that = this
221
    this.$nextTick(() => {
222
       that.setSlideHeight()
223
    });
213 224
    this.mySwiperTab = new Swiper(that.$refs.swiperNavTab, {
214 225
      freeMode: true,
215 226
      slidesPerView: 'auto',
@ -220,8 +231,22 @@ export default {
220 231
      slidesPerView: 'auto',
221 232
      freeModeSticky: true
222 233
    });
234
    this.mySwiperMain = new Swiper(that.$refs.scrollSwiper,{
235
      allowTouchMove: true,
236
      preventInteractionOnTransition: true,
237
      observer: true,
238
      on: {
239
        slideChangeTransitionEnd: function(){
240
          that.activeTab = (this.activeIndex + 1).toString()
241
          that.clearToFun()
242
        }
243
      }
244
    });
223 245
  },
224 246
  methods: {
247
    setSlideHeight() {
248
      this.slideH = window.innerHeight + 'px'
249
    },
225 250
    slideChanged(val) {
226 251
      this.activeTab = val;
227 252
    },
@ -274,7 +299,7 @@ export default {
274 299
      setTimeout(() => {
275 300
        that.tabTofun()
276 301
        done();
277
      }, 2000);
302
      }, 300);
278 303
    },
279 304
    contentListFun() {
280 305
      var that = this
@ -301,6 +326,9 @@ export default {
301 326
              }
302 327
            }
303 328
            that.contentList = that.contentList.concat($info);
329
            if ($info.length < that.rows) {
330
              that.scrollData.noFlag = true;
331
            }
304 332
          }
305 333
        };
306 334
        that.scrollData.loading = false
@ -452,6 +480,9 @@ export default {
452 480
              that.$forceUpdate()
453 481
            }
454 482
            that.companyList = that.companyList.concat($info);
483
            if ($info.length < that.rows) {
484
              that.scrollData.noFlag = true;
485
            }
455 486
          };
456 487
        };
457 488
        that.scrollData.loading = false
@ -493,6 +524,9 @@ export default {
493 524
            that.dataO.resTime = $info[$info.length - 1].publishTime;
494 525
            that.dataO.resId = $info[$info.length - 1].resourceId;
495 526
            that.resourceList = that.resourceList.concat($info);
527
            if ($info.length < that.rows) {
528
              that.scrollData.noFlag = true;
529
            }
496 530
          } else {
497 531
            that.scrollData.noFlag = true;
498 532
          }
@ -518,6 +552,9 @@ export default {
518 552
            that.dataO.patCreateTime = $info[$info.length - 1].createTime;
519 553
            that.dataO.patId = $info[$info.length - 1].id;
520 554
            that.resultList = that.resultList.concat($info);
555
            if ($info.length < that.rows) {
556
              that.scrollData.noFlag = true;
557
            }
521 558
          } else {
522 559
            that.scrollData.noFlag = true;
523 560
          }
@ -543,6 +580,9 @@ export default {
543 580
            that.dataO.serTime = $info[$info.length - 1].modifyTime;
544 581
            that.dataO.serId = $info[$info.length - 1].id;
545 582
            that.serviceList = that.serviceList.concat($info);
583
            if ($info.length < that.rows) {
584
              that.scrollData.noFlag = true;
585
            }
546 586
          } else {
547 587
            that.scrollData.noFlag = true;
548 588
          }
@ -554,6 +594,7 @@ export default {
554 594
  beforeDestroy() {
555 595
    this.mySwiperTab.destroy()
556 596
    this.swiperColumnTab.destroy()
597
    this.mySwiperMain.destroy()
557 598
  }
558 599
};
559 600
</script>