Browse Source

h5 icon scroll

lyn7568 6 years ago
parent
commit
15f3508853

+ 54 - 0
src/components/pageView/index.vue

@ -0,0 +1,54 @@
1
<template>
2
  <div class="page-view">
3
    <img :src="logImg" style="display:none" />
4
    <span>浏览量 {{pageCount}}</span>
5
  </div>
6
</template>
7
<script>
8
  import axios from 'axios'
9
  export default {
10
    props: [ 'pageObj' ],
11
    data() {
12
      return {
13
        HT_API: process.env.HT_API,
14
        pageCount: 0,
15
        logImg: ''
16
      }
17
    },
18
    created() {
19
      this.queryPageView()
20
      this.wlog(this.pageObj)
21
    },
22
    methods: {
23
      wlog(obj) {
24
        this.logImg = this.HT_API + '/ajax/img?__lt=' + obj.tn + '&id=' + obj.id + '&src=' + obj.src + '&_t=' + (new Date().getTime())
25
      },
26
      queryPageView() {
27
        var that = this
28
        axios.get(that.HT_API + '/ajax/log/qo/sum',{
29
          params: {
30
            tn: that.pageObj.tn,
31
            id: that.pageObj.id
32
          }
33
        }).then(res => {
34
          if (res.data.success) {
35
            that.pageCount = res.data.data
36
          }
37
        }).catch(err => {})
38
      },
39
      logPageCount() {
40
        // this.$axios.get('/ajax/log', {
41
        //   __lt: this.pageObj.tn,
42
        //   id: this.pageObj.id,
43
        //   src: this.pageObj.src
44
        // }, (res) => {})
45
      }
46
    }
47
  };
48
</script>
49
<style>
50
.page-view{
51
  display: inline-block;
52
  margin-right:15px;
53
}
54
</style>

+ 77 - 0
src/pages/center/views/layout/common/Sidebar/SidebarItem.vue

@ -0,0 +1,77 @@
1
<template>
2
  <div v-if="!item.hidden&&item.children" class="menu-wrapper">
3
4
      <router-link v-if="hasOneShowingChild(item.children) && !onlyOneChild.children&&!item.alwaysShow" :to="resolvePath(onlyOneChild.path)">
5
        <el-menu-item :index="resolvePath(onlyOneChild.path)" :class="{'submenu-title-noDropdown':!isNest}">
6
          <svg-icon v-if="onlyOneChild.meta&&onlyOneChild.meta.icon" :icon-class="onlyOneChild.meta.icon"></svg-icon>
7
          <span v-if="onlyOneChild.meta&&onlyOneChild.meta.title" slot="title">{{onlyOneChild.meta.title}}</span>
8
        </el-menu-item>
9
      </router-link>
10
11
      <el-submenu v-else :index="item.name||item.path">
12
        <template slot="title">
13
          <svg-icon v-if="item.meta&&item.meta.icon" :icon-class="item.meta.icon"></svg-icon>
14
          <span v-if="item.meta&&item.meta.title" slot="title">{{item.meta.title}}</span>
15
        </template>
16
        <template v-for="child in item.children" v-if="!child.hidden">
17
          <sidebar-item :is-nest="true" class="nest-menu" v-if="child.children&&child.children.length>0" :item="child" :key="child.path" :base-path="resolvePath(child.path)"></sidebar-item>
18
19
          <router-link v-else :to="resolvePath(child.path)" :key="child.name" replace>
20
            <el-menu-item :index="resolvePath(child.path)">
21
              <svg-icon v-if="child.meta&&child.meta.icon" :icon-class="child.meta.icon"></svg-icon>
22
              <span v-if="child.meta&&child.meta.title" slot="title">{{child.meta.title}}</span>
23
            </el-menu-item>
24
          </router-link>
25
        </template>
26
      </el-submenu>
27
28
  </div>
29
</template>
30
31
<script>
32
import path from 'path'
33
34
export default {
35
  name: 'SidebarItem',
36
  props: {
37
    // route配置json
38
    item: {
39
      type: Object,
40
      required: true
41
    },
42
    isNest: {
43
      type: Boolean,
44
      default: false
45
    },
46
    basePath: {
47
      type: String,
48
      default: ''
49
    }
50
  },
51
  data() {
52
    return {
53
      onlyOneChild: null
54
    }
55
  },
56
  methods: {
57
    hasOneShowingChild(children) {
58
      const showingChildren = children.filter(item => {
59
        if (item.hidden) {
60
          return false
61
        } else {
62
          // temp set(will be used if only has one showing child )
63
          this.onlyOneChild = item
64
          return true
65
        }
66
      })
67
      if (showingChildren.length === 1) {
68
        return true
69
      }
70
      return false
71
    },
72
    resolvePath(...paths) {
73
      return path.resolve(this.basePath, ...paths)
74
    }
75
  }
76
}
77
</script>

+ 34 - 0
src/pages/center/views/layout/common/Sidebar/index.vue

@ -0,0 +1,34 @@
1
<template>
2
  <el-menu
3
    mode="vertical"
4
    :default-openeds="['personalCenter', 'myBusiness', 'modifyPassword']"
5
    :show-timeout="200"
6
    :default-active="$route.path">
7
    <sidebar-item v-for="route in routes" :key="route.name" :item="route" :base-path="route.path"></sidebar-item>
8
  </el-menu>
9
</template>
10
11
<script>
12
import SidebarItem from './SidebarItem'
13
14
export default {
15
  components: { SidebarItem },
16
  watch: {
17
    bindCompany(val) {
18
      this.bindCompany = val
19
    }
20
  },
21
  computed: {
22
    ...Vuex.mapGetters([
23
      'bindCompany'
24
    ]),
25
    routes() {
26
      var aRouter = this.$router.options.routes
27
      if (!this.bindCompany) {
28
        aRouter[0].children.splice(2, 1)
29
      }
30
      return aRouter
31
    }
32
  }
33
}
34
</script>

+ 102 - 0
src/pages/center/views/layout/common/index.vue

@ -0,0 +1,102 @@
1
<template>
2
  <div class="main-content">
3
    <div class="boxLeft">
4
      <div class="headPhoto">
5
        <div class="userInfo">
6
          <div class="img-div" :style="{backgroundImage: 'url(' + headPhoto + ')'}"></div>
7
          <p>{{account}}</p>
8
        </div>
9
      </div>
10
      <sidebar></sidebar>
11
      <div class="exit-menu-item" @click="logout">退出登录</div>
12
    </div>
13
    <div class="boxRight">
14
      <transition name="fade" mode="out-in">
15
        <router-view></router-view>
16
      </transition>
17
    </div>
18
  </div>
19
</template>
20
21
<script>
22
  import Sidebar from './Sidebar';
23
  export default {
24
    computed: {
25
      ...Vuex.mapGetters([
26
        'bindCompany',
27
        'headPhoto',
28
        'account'
29
      ])
30
    },
31
    components: {
32
      Sidebar
33
    },
34
    methods: {
35
      logout() {
36
        this.$confirm('您确认要退出登录吗?', '提示', {
37
          type: 'warning',
38
          center: true
39
        }).then(() => {
40
          this.$store.dispatch('LogOut').then(() => {
41
            location.href = '/#/loginPlat'
42
          })
43
        }).catch(() => {})
44
      }
45
    }
46
  };
47
</script>
48
49
<style scoped>
50
.main-content{
51
  margin: 20px 0;
52
  min-height: 500px;
53
}
54
.main-content .boxRight {
55
  padding:10px 20px;
56
  float: left;
57
  width: 880px;
58
  margin-left: 20px;
59
  background: #ffffff;
60
  box-sizing: border-box;
61
}
62
.main-content .boxLeft {
63
    float: left;
64
    overflow: hidden;
65
    width: 200px;
66
}
67
.main-content .boxLeft .headPhoto {
68
  height: 146px;
69
  background: #ffffff;
70
  margin-bottom: 20px;
71
  display: flex;
72
  justify-content: center;
73
  align-items: center;
74
}
75
.main-content .boxLeft .headPhoto .userInfo {
76
  text-align: center;
77
  color: #606266;
78
}
79
.main-content .boxLeft .headPhoto .userInfo p {
80
  margin-top: 10px;
81
}
82
.main-content .boxLeft .headPhoto .userInfo .img-div {
83
  width: 80px;
84
  height: 80px;
85
  border-radius: 50%;
86
  margin: auto;
87
  background-size: cover;
88
}
89
.main-content .boxLeft .el-menu {
90
  border:none;
91
}
92
.main-content .boxLeft .exit-menu-item{
93
  padding-left: 20px;
94
  background: #ffffff;
95
  border-top: 10px solid #f4f6f8;
96
  box-sizing: content-box;
97
  height: 56px;
98
  line-height: 56px;
99
  font-size: 14px;
100
  cursor: pointer;
101
}
102
</style>

BIN
src/pages/h5/image/bg1218.jpg


BIN
src/pages/h5/image/field_icon/bow-icon.png


BIN
src/pages/h5/image/field_icon/co-icon.png


BIN
src/pages/h5/image/field_icon/jiao-icon.png


BIN
src/pages/h5/image/field_icon/mai-icon.png


BIN
src/pages/h5/image/field_icon/more-icon.png


BIN
src/pages/h5/image/field_icon/peo-icon.png


BIN
src/pages/h5/image/personal_bg.png


+ 390 - 0
src/pages/h5/views/index/index.vue

@ -0,0 +1,390 @@
1
<template>
2
	<div>
3
    <div class="bannerA">
4
      <div class="logoA">
5
        <h2>{{plat.title}}</h2>
6
        <span>www.xttjpt.cn</span>
7
      </div>
8
      <img width="100%" src="../../image/bg1218.jpg" />
9
      <div class="search-wrap">
10
        <el-input class="search-input" placeholder="搜索专家、服务、资源" prefix-icon="el-icon-search"
11
        v-model="searchInput" @keyup.enter.native="enterSearch()"> </el-input>
12
      </div>
13
    </div>
14
    <div class="block-wrapper">
15
      <div class="mainbox">
16
        <div class="maintit">热门</div>
17
        <el-row class="gridbg">
18
          <el-col :span="8" v-for="item in navList" :key="item.index">
19
            <a :href="LinkToSearch(item.tab)">
20
              <i class="media-icon" :class="'icon-'+ item.icon"></i>
21
              <span class="media-body">{{item.name}}</span>
22
            </a>
23
          </el-col>
24
        </el-row>
25
      </div>
26
      <div class="mainbox">
27
        <div class="maintit">特约专家</div>
28
        <div class="content content-nf" v-if="platExperts && platExperts.length">
29
          <baseExpert v-for="item in platExperts" :key="item.index" :itemSingle="item" :noBlank="true"></baseExpert>
30
        </div>
31
        <a class="seeMore" :href="LinkToSearch('2')"><em>查看更多</em></a>
32
      </div>
33
      <div class="mainbox">
34
        <div class="maintit">热门资源</div>
35
        <div class="content content-nf" v-if="platResources && platResources.length">
36
          <baseResource v-for="item in platResources" :key="item.index" :itemSingle="item" :noBlank="true"></baseResource>
37
        </div>
38
        <a class="seeMore" :href="LinkToSearch('4')"><em>查看更多</em></a>
39
      </div>
40
      <div class="mainbox">
41
        <div class="maintit">最新入驻企业</div>
42
        <div class="content content-nf" v-if="residentComps && residentComps.length">
43
          <baseCompany v-for="item in residentComps" :key="item.index" :itemSingle="item" :noBlank="true"></baseCompany>
44
        </div>
45
        <a class="seeMore" :href="LinkToSearch('7')"><em>查看更多</em></a>
46
      </div>
47
    </div>
48
	</div>
49
</template>
50
51
<script>
52
  import { urlParse, commenTime, formatOfft, ImageUrl, defaultSet, autho } from '@/libs/util';
53
  import queryBase from '@/libs/queryBase';
54
  import baseExpert from '@/components/subTemplate/BaseExpert';
55
  import baseResource from '@/components/subTemplate/BaseResource';
56
  import baseCompany from '@/components/subTemplate/BaseCompany';
57
58
  export default {
59
    data() {
60
      return {
61
        /* eslint-disable no-undef */
62
        plat: PLAT.info,
63
        searchInput: '',
64
        platExperts: '',
65
        platResources: '',
66
        residentComps: '',
67
        navList: [
68
          {
69
            icon: 'mai',
70
            name: '平台动态',
71
            tab: '1'
72
          },
73
          {
74
            icon: 'co',
75
            name: '找服务',
76
            tab: '3'
77
          },
78
          {
79
            icon: 'jiao',
80
            name: '找资源',
81
            tab: '4'
82
          },
83
          {
84
            icon: 'bow',
85
            name: '找成果',
86
            tab: '5'
87
          },
88
          {
89
            icon: 'peo',
90
            name: '专家库',
91
            tab: '2'
92
          },
93
          {
94
            icon: 'more',
95
            name: '更多领域',
96
            tab: ''
97
          }
98
        ]
99
      };
100
    },
101
    created() {
102
      this.buttedProfessors()
103
      this.queryPlatResources()
104
      this.queryResidentComps();
105
    },
106
    components: {
107
      baseExpert,
108
      baseResource,
109
      baseCompany
110
    },
111
    methods: {
112
      LinkToSearch(val) {
113
        return 'h5.html#/search?n=' + val
114
      },
115
      enterSearch() {
116
        location.href = 'h5.html#/search?k=' + this.searchInput
117
      },
118
      buttedProfessors() {
119
        var that = this
120
        that.$axios.get('/ajax/professor/list', {}, (res) => {
121
          if (res.success) {
122
            var $data = res.data;
123
            var arr = []
124
            var hdata = { num: 1, data: $data }
125
            if ($data.length > 0) {
126
              $data.sort(function(a, b) {
127
                return a.level > b.level ? 1 : (a.level === b.level ? 0 : -1)
128
              })
129
              for (let i = 0; i < ($data.length > 5 ? 5: $data.length); ++i) {
130
                hdata.num++
131
                arr[i] = $data[i].id;
132
                hdata.num--
133
              }
134
              hdata.num--
135
              if (hdata.num === 0 && arr.length) {
136
                that.$axios.getk('/ajax/professor/qm', {
137
                  id: arr
138
                }, function(data) {
139
                  if (data.success && data.data) {
140
                    var obj = data.data
141
                    if (obj.length > 0) {
142
                      for (let m = 0; m < obj.length; ++m) {
143
                        obj[m].img = defaultSet.img.expert
144
                        if (obj[m].hasHeadImage) {
145
                          obj[m].img = ImageUrl(('head/' + obj[m].id + '_l.jpg'), true)
146
                        }
147
                        obj[m].auth = autho(obj[m].authType, obj[m].orgAuth, obj[m].authStatus)
148
                        obj[m].offt = formatOfft(obj[m], true)
149
                      }
150
                      setTimeout(() => {
151
                        for (let j = 0; j < obj.length; ++j) {
152
                          for (let n = 0; n < $data.length; ++n) {
153
                            if (obj[j].id === $data[n].id) {
154
                              if ($data[n].level) {
155
                                obj[j].level = $data[n].level
156
                              } else {
157
                                obj[j].level = 99999
158
                              }
159
                            }
160
                          }
161
                        }
162
                        obj.sort(function(a, b) {
163
                          return a.level > b.level ? 1 : (a.level === b.level ? 0 : -1)
164
                        })
165
                        that.platExperts = obj
166
                      }, 1000)
167
                    }
168
                  }
169
                })
170
              }
171
            }
172
          }
173
        })
174
      },
175
      queryPlatResources() {
176
        this.$axios.getk('/ajax/resource/index/search', {
177
          rows: 5
178
        }, (res) => {
179
          var _this = this;
180
          if (res.success) {
181
            var $info = res.data;
182
            for (let i = 0; i < $info.length; i++) {
183
              if ($info[i].images.length > 0) {
184
                $info[i].img = ImageUrl('resource/' + $info[i].images[0].imageSrc)
185
              } else {
186
                $info[i].img = defaultSet.img.resource
187
              }
188
              (function(m) {
189
                _this.ownerByond($info[m]);
190
              }(i));
191
            };
192
            this.platResources = $info;
193
          };
194
        });
195
      },
196
      ownerByond(item) {
197
        var _this = this;
198
        var type, id;
199
        if (item.resourceType) {
200
          type = item.resourceType;
201
          id = item.professorId || item.orgId;
202
        }
203
        if (item.category) {
204
          type = item.category;
205
          id = item.owner;
206
        };
207
        if (type === '1') {
208
          queryBase.getProfessor(id, function(sc, value) {
209
            if (sc) {
210
              item.ownerName = value.name;
211
              _this.$forceUpdate();
212
            }
213
          });
214
        } else if (type === '2') {
215
          queryBase.getOrganization(id, function(sc, value) {
216
            if (sc) {
217
              item.ownerName = value.forShort ? value.forShort : value.name;
218
              _this.$forceUpdate();
219
            }
220
          });
221
        }
222
      },
223
      queryResidentComps() {
224
        this.$axios.get('/ajax/company/pq', {
225
          pageSize: 5,
226
          pageNo: 1
227
        }, (res) => {
228
          if (res.success) {
229
            var $info = res.data.data;
230
            for (let i = 0; i < $info.length; ++i) {
231
              if (!$info[i].logo) {
232
                $info[i].logo = defaultSet.img.org
233
              }
234
            }
235
            this.residentComps = $info;
236
          };
237
        });
238
      }
239
    }
240
  };
241
</script>
242
243
<style lang="scss" rel="stylesheet/scss">
244
  @import '../../style/index';
245
246
  .bannerA {
247
    width: 100%;
248
    height:auto;
249
    position: relative;
250
    overflow: hidden;
251
    .logoA{
252
      text-align: center;
253
      width:100%;
254
      position: absolute;
255
      top:26%;
256
      z-index: 2;
257
      color: #fff;
258
      h2{
259
        font-size:30px;
260
        line-height: 38px;
261
      }
262
      span{
263
        font-size: 16px;
264
      }
265
    }
266
    img{
267
      display:block;
268
    }
269
  }
270
271
  .search-wrap{
272
    position: absolute;
273
    bottom: 16px;
274
    height: 40px;
275
    padding: 0 10px;
276
    width: 96%;
277
    left:50%;
278
    transform: translate(-50%, 0);
279
    border-radius: 5px;
280
    overflow: hidden;
281
    box-sizing: border-box;
282
    .search-input{
283
      position: absolute;
284
      left:0;
285
      top:0;
286
      width:100%;
287
      font-size:14px;
288
      height:40px;
289
      line-height:24px;
290
      input{
291
        border:none;
292
      }
293
    }
294
  }
295
296
  .gridbg{
297
    background: #FFFFFF;
298
    margin:auto;
299
    border-top: 1px solid #eee;
300
    .media-body{
301
      display: block;
302
      text-align: center;
303
      color: #333;
304
      font-size: 13px;
305
    } 
306
    .media-icon{
307
      display: block;
308
      margin:10px auto;
309
      width: 24px;
310
      height:24px;
311
      &.icon-bow{
312
        @include bg-image('../../image/field_icon/bow-icon.png');
313
      }
314
      &.icon-jiao{
315
        @include bg-image('../../image/field_icon/jiao-icon.png');
316
      }
317
      &.icon-co{
318
        @include bg-image('../../image/field_icon/co-icon.png');
319
      }
320
      &.icon-mai{
321
        @include bg-image('../../image/field_icon/mai-icon.png');
322
      }
323
      &.icon-more{
324
        @include bg-image('../../image/field_icon/more-icon.png');
325
      }
326
      &.icon-peo{
327
        @include bg-image('../../image/field_icon/peo-icon.png');
328
      }
329
    }
330
    .el-col{
331
      padding: 10px 4px;
332
      text-align:center;
333
      border-right: 1px solid #eee;
334
      border-bottom: 1px solid #eee;
335
    }
336
  }
337
338
  .mainbox{
339
    width:100%;
340
    margin:10px auto;
341
    padding: 0;
342
    background: #FFFFFF;
343
    .maintit{
344
      line-height: 40px;
345
      font-size: 16px;
346
      text-align: center;
347
      color: #666;
348
    }
349
    .content{
350
      border-top: 1px solid #eee;
351
    }
352
  }
353
354
  .seeMore{
355
    display: block;
356
    cursor:pointer;
357
    text-align:center;
358
    font-size:14px;
359
    color:#999;
360
    line-height:40px;
361
    height:40px;
362
    border-top:1px solid #E5E5E5;
363
    position: relative;
364
    em{
365
      font-style: normal;
366
      position:relative;
367
      padding-right:5px;
368
      &:before{
369
        border: solid transparent;
370
        border-left-color:#ccc;
371
        border-width: 7px;
372
        content: " ";
373
        position: absolute;
374
        left: 100%;
375
        top: 1px;
376
      }
377
      &:after{
378
        border: solid transparent;
379
        border-left-color:#fff;
380
        border-width: 5px;
381
        content: " ";
382
        position: absolute;
383
        left: 100%;
384
        top: 3px;
385
      }
386
    }
387
    &:active{background: none;}
388
  }
389
</style>
390

+ 5 - 0
src/pages/h5/views/layout/index.vue

@ -0,0 +1,5 @@
1
<template>
2
  <transition name="fade" mode="out-in">
3
    <router-view></router-view>
4
  </transition>
5
</template>

+ 184 - 0
src/pages/h5/views/search/scrollMore.vue

@ -0,0 +1,184 @@
1
<template lang="html">
2
    <div class="yo-scroll" @touchstart="touchStart($event)"
3
         @touchmove="touchMove($event)" @touchend="touchEnd($event)" :style="{top: topVal+'px'}" v-loading="dataList.loading">
4
      <section class="inner">
5
        <!-- 使用时外面的标签会填在里面 -->
6
        <slot>
7
        </slot>
8
        <!-- 保持加载更多条在最下面 -->
9
        <footer class="load-more">
10
          <slot name="load-more">
11
            <span>{{loadMoreText}}</span>
12
          </slot>
13
        </footer>
14
        <div class="nullData" v-show="dataList.noFlag">暂无更多数据</div>
15
      </section>
16
    </div>
17
</template>
18
<script>
19
export default {
20
  props: {
21
    offset: {
22
      type: Number,
23
      default: 100 //默认高度
24
    },
25
    enableLoadMore: {
26
      type: Boolean,
27
      default: true
28
    },
29
    dataList: {
30
      default: false,
31
      required: false
32
    },
33
    onLoadMore: {
34
      type: Function,
35
      default: undefined,
36
      require: false
37
    },
38
    topVal: {
39
      type: String
40
    }
41
  },
42
  data() {
43
    return {
44
      startX: 0,
45
      startY: 0,
46
      touching: false,
47
      isLoading: false,
48
      loadMoreText: '上拉加载更多'
49
    };
50
  },
51
  methods: {
52
    touchStart(e) {
53
      this.startY = e.targetTouches[0].pageY;
54
      this.startX = e.targetTouches[0].pageX;
55
      this.startScroll = this.$el.scrollTop || 0;
56
      this.touching = true; //留着有用,不能删除
57
      this.dataList.noFlag = false;
58
    },
59
    //滑动中
60
    touchMove(e) {
61
      if (!this.enableLoadMore || this.dataList.noFlag || !this.touching) {
62
        return;
63
      }
64
      let diff = e.targetTouches[0].pageY - this.startY - this.startScroll;
65
      if (diff > 0) {
66
        e.preventDefault();
67
      }
68
      this.loadMoreText = '上拉加载更多';
69
      this.$el.querySelector('.load-more').style.display = 'block';
70
    },
71
72
    touchEnd(e) {
73
      if (this.isLoading) {
74
        return;
75
      }
76
      this.touching = false;
77
78
      //用于判断滑动是否在原地 ----begin
79
      let endX = e.changedTouches[0].pageX,
80
        endY = e.changedTouches[0].pageY,
81
        dy = this.startY - endY,
82
        dx = endX - this.startX;
83
84
      //如果滑动距离太短
85
      if (Math.abs(dx) < 2 && Math.abs(dy) < 2) {
86
        // console.log("滑动距离太短")
87
        let more = this.$el.querySelector('.load-more');
88
        more.style.display = 'none'; //隐藏加载条
89
        return;
90
      }
91
92
      if (!this.enableLoadMore || this.isLoading) {
93
        let more = this.$el.querySelector('.load-more');
94
        more.style.display = 'none'; //隐藏加载条
95
        return;
96
      }
97
98
      let outerHeight = this.$el.clientHeight,
99
        innerHeight = this.$el.querySelector('.inner').clientHeight,
100
        scrollTop = this.$el.scrollTop,
101
        bottom = innerHeight - outerHeight - scrollTop;
102
103
      if (bottom <= this.offset) {
104
        //内容太少
105
        this.doLoadMore();
106
      } else {
107
        let more = this.$el.querySelector('.load-more');
108
        more.style.display = 'none'; //隐藏加载条
109
      }
110
    },
111
    doLoadMore() {
112
      this.isLoading = true;
113
      this.loadMoreText = '正在加载';
114
      this.onLoadMore(this.loadDone);
115
    },
116
    loadDone() {
117
      this.isLoading = false;
118
      let more = this.$el.querySelector('.load-more');
119
      more.style.display = 'none'; //隐藏加载条
120
    }
121
  }
122
};
123
</script>
124
<style lang="scss" rel="stylesheet/scss">
125
// /*:class="{'down':(state===0),'up':(state==1),refresh:(state===2),touch:touching}"*/
126
.yo-scroll {
127
  position: absolute; //关键
128
  top: 0;
129
  right: 0;
130
  bottom: 0;
131
  left: 0;
132
  overflow: auto; //关键
133
  z-index: 100;
134
  height: auto;
135
  -webkit-overflow-scrolling: touch;
136
  .inner {
137
    position: absolute;
138
    /*top: -5rem;*/
139
    width: 100%;
140
    height: auto;
141
    transition-duration: 300ms;
142
    .load-more {
143
      height: 5rem;
144
      line-height: 5rem;
145
      display: flex;
146
      text-align: center;
147
      align-items: center;
148
      justify-content: center;
149
      display: none;
150
      font-size: 13px;
151
      color: #999999;
152
    }
153
    .nullData {
154
      //暂无更多数据样式
155
      font-size: 13px;
156
      color: #999999;
157
      height: 100px;
158
      line-height: 100px;
159
      text-align: center;
160
    }
161
    .down-tip,
162
    .refresh-tip,
163
    .up-tip {
164
      display: none;
165
    }
166
  }
167
}
168
169
.yo-scroll.touch .inner {
170
  transition-duration: 0;
171
}
172
173
.yo-scroll.down .down-tip {
174
  display: block;
175
}
176
177
.yo-scroll.up .up-tip {
178
  display: block;
179
}
180
181
.yo-scroll.refresh .refresh-tip {
182
  display: block;
183
}
184
</style>

+ 625 - 0
src/pages/h5/views/search/search.vue

@ -0,0 +1,625 @@
1
<template>
2
  <div>
3
    <div class="fixedBlock">
4
      <div class="searchBox">
5
        <el-input placeholder="请输入关键词" v-model="searchText" @keyup.enter.native="clearToFun"></el-input>
6
      </div>
7
      <div class="tabBox">
8
        <div class="swiper-container-tab" ref="swiperNavTab">
9
          <div class="swiper-wrapper swiper-wrapper-tab">
10
            <div class="swiper-slide swiper-slide-tab"
11
              :class="item.tab===activeTab?'active-tab':''"
12
              v-for="item in navList"
13
              :key="item.index"
14
              @click.stop="slideChanged(item.tab)"
15
            >{{item.tit}}</div>
16
          </div>
17
        </div>
18
      </div>
19
      <div class="tabBox columnTab" v-if="activeTab==='1'">
20
        <div class="swiper-container-tab" ref="swiperColumnTab">
21
          <div class="swiper-wrapper swiper-wrapper-tab">
22
            <div class="swiper-slide swiper-slide-tab"
23
              :class="item.val===activeColumn?'active-tab':''"
24
              v-for="item in platTrend"
25
              :key="item.index"
26
              @click.stop="slideChangedColumn(item.val)"
27
            >{{item.tit}}</div>
28
          </div>
29
        </div>
30
      </div>
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>
74
      </div>
75
    </v-scroll>
76
  </div>
77
</template>
78
79
<script>
80
import { urlParse, commenTime, formatOfft, ImageUrl, defaultSet, autho, platTrend } from '@/libs/util';
81
import baseExpert from '@/components/subTemplate/BaseExpert';
82
import baseOrg from '@/components/subTemplate/BaseOrg';
83
import baseCompany from '@/components/subTemplate/BaseCompany';
84
import baseService from '@/components/subTemplate/BaseService';
85
import baseResource from '@/components/subTemplate/BaseResource';
86
import baseResult from '@/components/subTemplate/BaseResult';
87
import baseContent from '@/components/subTemplate/BaseContent';
88
89
import loadmore from "./scrollMore.vue";
90
export default {
91
  data() {
92
    return {
93
      activeTab: '1',
94
      activeColumn: '1',
95
      platTrend,
96
      navList: [
97
        {
98
          tit: '动态',
99
          tab: '1'
100
        },
101
        {
102
          tit: '专家',
103
          tab: '2'
104
        },
105
        {
106
          tit: '服务',
107
          tab: '3'
108
        },
109
        {
110
          tit: '资源',
111
          tab: '4'
112
        },
113
        {
114
          tit: '成果',
115
          tab: '5'
116
        },
117
        {
118
          tit: '机构',
119
          tab: '6'
120
        },
121
        {
122
          tit: '企业',
123
          tab: '7'
124
        }
125
      ],
126
      contentList: [],
127
      expertList: [],
128
      serviceList: [],
129
      resourceList: [],
130
      resultList: [],
131
      orgList: [],
132
      companyList: [],
133
      dataO: {
134
        resSortNum: '',
135
        resTime: '',
136
        resId: '',
137
        serSortFirst: '',
138
        serTime: '',
139
        serId: '',
140
        patSortNum: '',
141
        patCreateTime: '',
142
        patId: ''
143
      },
144
      searchText: '',
145
      pageNo: 1,
146
      rows: 10,
147
      scrollData:{
148
        noFlag: false, //暂无更多数据显示
149
        loading: false
150
      }
151
    };
152
  },
153
  components: {
154
    'v-scroll': loadmore,
155
    baseExpert,
156
    baseOrg,
157
    baseCompany,
158
    baseService,
159
    baseResource,
160
    baseResult,
161
    baseContent
162
  },
163
  computed: {
164
    searchExpert: function() {
165
      var search = this.searchText;
166
      if (search) {
167
        return this.expertList.filter(function(item) {
168
          return Object.keys(item).some(function(key) {
169
            return String(item[key]).toLowerCase().indexOf(search) > -1
170
          })
171
        })
172
      }
173
      return this.expertList;
174
    },
175
    searchOrg: function() {
176
      var search = this.searchText;
177
      if (search) {
178
        return this.orgList.filter(function(item) {
179
          return Object.keys(item).some(function(key) {
180
            return String(item[key]).toLowerCase().indexOf(search) > -1
181
          })
182
        })
183
      }
184
      return this.orgList;
185
    }
186
  },
187
  created() {
188
    if (urlParse('n')) {
189
      this.activeTab = urlParse('n');
190
    }
191
    if (urlParse('k')) {
192
      this.searchText = urlParse('k');
193
    }
194
    this.tabTofun()
195
  },
196
  mounted() {
197
    var that = this
198
    this.mySwiperTab = new Swiper(that.$refs.swiperNavTab, {
199
      freeMode: true,
200
      slidesPerView: 'auto',
201
      freeModeSticky: true
202
    });
203
    this.swiperColumnTab = new Swiper(that.$refs.swiperColumnTab, {
204
      freeMode: true,
205
      slidesPerView: 'auto',
206
      freeModeSticky: true
207
    });
208
  },
209
  methods: {
210
    slideChanged(val) {
211
      this.activeTab = val
212
      var num = parseInt(val) - 1
213
      if (num < 3) {
214
        num = 0
215
      }
216
      this.mySwiperTab.slideTo(num, 500, false)
217
      this.clearToFun()
218
    },
219
    slideChangedColumn(val) {
220
      this.activeColumn = val
221
      var num = parseInt(val) - 1
222
      if (num < 3) {
223
        num = 0
224
      }
225
      this.swiperColumnTab.slideTo(num, 500, false)
226
      this.contentList = []
227
      this.pageNo = 1
228
      this.contentListFun()
229
    },
230
    clearToFun() {
231
      this.contentList = []
232
      this.expertList = []
233
      this.serviceList = []
234
      this.resourceList = []
235
      this.resultList = []
236
      this.orgList = []
237
      this.companyList = []
238
      this.dataO = {
239
        resSortNum: '',
240
        resTime: '',
241
        resId: '',
242
        serSortFirst: '',
243
        serTime: '',
244
        serId: '',
245
        patSortNum: '',
246
        patCreateTime: '',
247
        patId: ''
248
      }
249
      this.pageNo = 1
250
      this.tabTofun()
251
    },
252
    tabTofun() {
253
      const tab = this.activeTab
254
      if (tab === '1') {
255
        this.contentListFun()
256
      } else if (tab === '2') {
257
        this.expertListFun()
258
      } else if (tab === '3') {
259
        this.serviceListFun()
260
      } else if (tab === '4') {
261
        this.resourceListFun()
262
      } else if (tab === '5') {
263
        this.resultListFun()
264
      } else if (tab === '6') {
265
        this.orgListFun()
266
      } else if (tab === '7') {
267
        this.companyListFun()
268
      }
269
    },
270
    onLoadMore(done) {
271
      var that = this
272
      this.pageNo++;
273
      setTimeout(() => {
274
        that.tabTofun()
275
        that.scrollData.noFlag = true;
276
        done();
277
      }, 2000);
278
    },
279
    contentListFun() {
280
      var that = this
281
      that.scrollData.loading = true
282
      this.$axios.get('/ajax/article/pq', {
283
        title: that.searchText,
284
        catalog: that.activeColumn,
285
        published: 1,
286
        pageSize: that.rows,
287
        pageNo: that.pageNo
288
      }, (res) => {
289
        if (res.success && res.data) {
290
          if (res.data.pageNo !== that.pageNo) {
291
            return;
292
          }
293
          var $info = res.data.data;
294
          if ($info.length > 0) {
295
            for (let i = 0; i < $info.length; ++i) {
296
              if ($info[i].modifyTime) {
297
                $info[i].modifyTime = commenTime($info[i].modifyTime, true)
298
              }
299
            }
300
            that.contentList = that.contentList.concat($info);
301
          }
302
        };
303
        that.scrollData.loading = false
304
      });
305
    },
306
    expertListFun() {
307
      var that = this
308
      that.scrollData.loading = true
309
      that.$axios.get('/ajax/professor/list', {}, (res) => {
310
        if (res.success) {
311
          var $data = res.data;
312
          var arr = []
313
          var hdata = { num: 1, data: $data }
314
          if ($data.length > 0) {
315
            for (let i = 0; i < $data.length; ++i) {
316
              hdata.num++
317
              arr[i] = $data[i].id;
318
              hdata.num--
319
            }
320
            hdata.num--
321
            if (hdata.num === 0 && arr.length) {
322
              that.$axios.getk('/ajax/professor/qm', {
323
                id: arr
324
              }, function(data) {
325
                if (data.success && data.data) {
326
                  var obj = data.data
327
                  if (obj.length > 0) {
328
                    for (let m = 0; m < obj.length; ++m) {
329
                      obj[m].img = defaultSet.img.expert
330
                      if (obj[m].hasHeadImage) {
331
                        obj[m].img = ImageUrl(('head/' + obj[m].id + '_l.jpg'), true)
332
                      }
333
                      obj[m].auth = autho(obj[m].authType, obj[m].orgAuth, obj[m].authStatus)
334
                      obj[m].offt = formatOfft(obj[m], true)
335
                    }
336
                    setTimeout(() => {
337
                      for (let j = 0; j < obj.length; ++j) {
338
                        for (let n = 0; n < $data.length; ++n) {
339
                          if (obj[j].id === $data[n].id) {
340
                            if ($data[n].level) {
341
                              obj[j].level = $data[n].level
342
                            } else {
343
                              obj[j].level = 99999
344
                            }
345
                          }
346
                        }
347
                      }
348
                      obj.sort(function(a, b) {
349
                        return a.level > b.level ? 1 : (a.level === b.level ? 0 : -1)
350
                      })
351
                      that.expertList = obj
352
                      that.scrollData.loading = false
353
                    }, 1000)
354
                  }
355
                }
356
              })
357
            }
358
          }
359
        } else {
360
          that.scrollData.loading = false
361
        }
362
      })
363
    },
364
    orgListFun() {
365
      var that = this
366
      that.scrollData.loading = true
367
      that.$axios.get('/ajax/org/list', {}, (res) => {
368
        if (res.success) {
369
          var $data = res.data;
370
          var arr = []
371
          var hdata = { num: 1, data: $data }
372
          if ($data.length > 0) {
373
            for (let i in $data) {
374
              hdata.num++
375
              arr[i] = $data[i].id;
376
              hdata.num--
377
            }
378
            hdata.num--
379
            if (hdata.num === 0 && arr.length) {
380
              that.$axios.getk('/ajax/org/qm', {
381
                id: arr
382
              }, function(data) {
383
                if (data.success && data.data) {
384
                  var obj = data.data
385
                  if (obj.length > 0) {
386
                    for (let m = 0; m < obj.length; ++m) {
387
                      obj[m].logo = defaultSet.img.org
388
                      if (obj[m].hasOrgLogo) {
389
                        obj[m].logo = ImageUrl(('org/' + obj[m].id + '.jpg'), true)
390
                      }
391
                      if (obj[m].industry) {
392
                        obj[m].industry = obj[m].industry.replace(/,/g, ' | ')
393
                      }
394
                    }
395
                    setTimeout(() => {
396
                      for (let j = 0; j < obj.length; ++j) {
397
                        for (let n = 0; n < $data.length; ++n) {
398
                          if (obj[j].id === $data[n].id) {
399
                            if ($data[n].level) {
400
                              obj[j].level = $data[n].level
401
                            } else {
402
                              obj[j].level = 99999
403
                            }
404
                          }
405
                        }
406
                      }
407
                      obj.sort(function(a, b) {
408
                        return a.level > b.level ? 1 : (a.level === b.level ? 0 : -1)
409
                      })
410
                      that.orgList = obj
411
                      that.scrollData.loading = false
412
                    }, 1000);
413
                  }
414
                }
415
              })
416
            }
417
          }
418
        } else {
419
          that.scrollData.loading = false
420
        }
421
      })
422
    },
423
    companyListFun() {
424
      var that = this
425
      that.scrollData.loading = true
426
      this.$axios.get('/ajax/company/pq', {
427
        pageSize: that.rows,
428
        pageNo: that.pageNo
429
      }, (res) => {
430
        if (res.success) {
431
          if (res.data.pageNo !== that.pageNo) {
432
            return;
433
          }
434
          var $info = res.data.data;
435
          if ($info.length > 0) {
436
            for (let i = 0; i < $info.length; ++i) {
437
              if (!$info[i].logo) {
438
                $info[i].logo = defaultSet.img.org
439
              }
440
              $info[i].industry = that.getCompanyKeyword($info[i].id)
441
              that.$forceUpdate()
442
            }
443
            that.companyList = that.companyList.concat($info);
444
          };
445
        };
446
        that.scrollData.loading = false
447
      });
448
    },
449
    getCompanyKeyword(id) {
450
      var that = this
451
      var objKey = []
452
      that.$axios.get('/ajax/company/qo/keyword', {
453
        id: id,
454
        type: 1
455
      }, function(res) {
456
        if (res.success && res.data) {
457
          const str = res.data
458
          if (str.length > 0) {
459
            str.map(item => {
460
              objKey.push(item.value)
461
            })
462
          }
463
        }
464
      })
465
      return objKey
466
    },
467
    resourceListFun() {
468
      var that = this
469
      that.scrollData.loading = true
470
      this.$axios.getk('/ajax/resource/index/search', {
471
        key: that.searchText,
472
        sortNum: that.dataO.resSortNum,
473
        publishTime: that.dataO.resTime,
474
        id: that.dataO.resId,
475
        rows: that.rows
476
      }, (res) => {
477
        if (res.success) {
478
          var $info = res.data;
479
          if ($info.length > 0) {
480
            that.dataO.resSortNum = $info[$info.length - 1].sortNum;
481
            that.dataO.resTime = $info[$info.length - 1].publishTime;
482
            that.dataO.resId = $info[$info.length - 1].resourceId;
483
            that.resourceList = that.resourceList.concat($info);
484
          }
485
        };
486
        that.scrollData.loading = false
487
      });
488
    },
489
    resultListFun() {
490
      var that = this
491
      that.scrollData.loading = true
492
      this.$axios.getk('/ajax/ppatent/index/search', {
493
        key: that.searchText,
494
        sortNum: that.dataO.patSortNum,
495
        createTime: that.dataO.patCreateTime,
496
        id: that.dataO.patId,
497
        rows: that.rows
498
      }, (res) => {
499
        if (res.success) {
500
          var $info = res.data;
501
          if ($info.length > 0) {
502
            that.dataO.patSortNum = $info[$info.length - 1].sortNum;
503
            that.dataO.patCreateTime = $info[$info.length - 1].createTime;
504
            that.dataO.patId = $info[$info.length - 1].id;
505
            that.resultList = that.resultList.concat($info);
506
          };
507
        };
508
        that.scrollData.loading = false
509
      });
510
    },
511
    serviceListFun() {
512
      var that = this
513
      that.scrollData.loading = true
514
      this.$axios.getk('/ajax/ware/index/search', {
515
          key: that.searchText,
516
          sortFirst: that.dataO.serSortFirst,
517
          time: that.dataO.serTime,
518
          id: that.dataO.serId,
519
          rows: that.rows
520
      }, (res) => {
521
        if (res.success) {
522
          var $info = res.data;
523
          if ($info.length > 0) {
524
            that.dataO.serSortFirst = $info[$info.length - 1].sortFirst;
525
            that.dataO.serTime = $info[$info.length - 1].modifyTime;
526
            that.dataO.serId = $info[$info.length - 1].id;
527
            that.serviceList = that.serviceList.concat($info);
528
          };
529
        };
530
        that.scrollData.loading = false
531
      });
532
    }
533
  },
534
  beforeDestroy() {
535
    this.mySwiperTab.destroy()
536
    this.swiperColumnTab.destroy()
537
  }
538
};
539
</script>
540
541
<style lang="scss" rel="stylesheet/scss">
542
@import '../../style/index';
543
.fixedBlock {
544
  position: fixed;
545
  top: 0;
546
  width: 100%;
547
  z-index: 3;
548
  .searchBox {
549
    display: flex;
550
    justify-content: center;
551
    position: relative;
552
    height: 42px;
553
    background: $--color-primary;
554
    overflow: hidden;
555
    .el-input {
556
      width: 98%;
557
      margin: 6px auto;
558
      .el-input__inner {
559
        border-color: $--color-primary;
560
        height: 30px;
561
        border-radius: 4px;
562
        font-size: 12px;
563
        line-height: 16px;
564
      }
565
    }
566
  }
567
}
568
.tabBox {
569
  height: 40px;
570
  .swiper-slide-tab {
571
    line-height: 40px;
572
    font-size: 15px;
573
    text-align: center;
574
    background: #fff;
575
    width: auto;
576
    padding: 0 5%;
577
    &:after {
578
      position: absolute;
579
      top: auto;
580
      right: auto;
581
      bottom: 0;
582
      left: 0;
583
      z-index: 2;
584
      display: block;
585
      width: 100%;
586
      height: 1px;
587
      content: "";
588
      background-color: #dcdcdc;
589
      -webkit-transform-origin: 50% 100%;
590
      transform-origin: 50% 100%;
591
      -webkit-transform: scaleY(0.5);
592
    }
593
    &.active-tab {
594
      color: $--color-primary;
595
      &:after {
596
        opacity: 1;
597
        background-color: $--color-primary;
598
        height: 4px;
599
      }
600
    }
601
  }
602
  &.columnTab{
603
    position: fixed;
604
    top: 80px;
605
    width: 100%;
606
    z-index: 3;
607
    .swiper-slide-tab{
608
      margin:5px 4px;
609
      line-height: 32px;
610
      padding:0 8px;
611
      &:after{
612
        content:none;
613
      }
614
      &.active-tab {
615
        background: $--color-primary;
616
        color:#fff;
617
        &:after {
618
          content:none;
619
        }
620
      }
621
    }
622
  }
623
}
624
625
</style>