lyn7568 6 years ago
parent
commit
ca6a97c8be

+ 1 - 6
src/components/global-component/default/default.vue

@ -3,7 +3,6 @@
3 3
    <div class="notice_d" v-show="noResult">
4 4
        <img v-bind:src="infoImage" class="d_photo" />
5 5
        <div class="d_prompt">
6
            <!-- <p class="d_1">{{message}}</p> -->
7 6
            <p class="d_2">{{message2}}</p>
8 7
        </div>
9 8
    </div>
@ -25,13 +24,9 @@ export default {
25 24
    infoImage: {
26 25
      default: Img
27 26
    },
28
    message: {
29
      type: String,
30
      default: '没有相关内容'
31
    },
32 27
    message2: {
33 28
      type: String,
34
      default: '没有找到相关内容'
29
      default: '没有相关内容'
35 30
    }
36 31
  }
37 32
};

+ 12 - 3
src/pages/index/views/Dashboard/index.vue

@ -28,7 +28,7 @@
28 28
          <div class="content-title" style="display: block;">
29 29
            <el-tabs v-model="activeName" @tab-click="queryPaltNews">
30 30
              <el-tab-pane v-for="cata in conCatalog" :key="cata.index" :label="cata.tit" :name="cata.val" class="content">
31
                <ul class="maincon">
31
                <ul class="maincon" v-if="paltNews && paltNews.length">
32 32
                  <li v-for="item in paltNews" :key="item.index">
33 33
                    <a :href="'content.html?id='+item.id"  target="_blank">
34 34
                      <span class="topic">{{item.title}}</span>
@ -36,17 +36,18 @@
36 36
                    </a>
37 37
                  </li>
38 38
                </ul>
39
                <div v-else class="nodata">没有相关内容</div>
39 40
              </el-tab-pane>
40 41
            </el-tabs>
41 42
            <router-link class="content-more" to="trends">更多</router-link>
42 43
          </div>
43 44
        </div>
44
        <div class="content-wrapper full-wrapper" style="width:800px;margin-top:20px">
45
        <div class="content-wrapper full-wrapper" style="width:800px;margin-top:20px;height:240px">
45 46
          <div class="content-title">
46 47
            <span>最新入驻企业</span>
47 48
            <router-link class="content-more" to="comp">更多</router-link>
48 49
          </div>
49
          <div class="swiper-container" ref="latestCmp">
50
          <div class="swiper-container" ref="latestCmp" v-show="residentComps && residentComps.length">
50 51
            <div class="swiper-wrapper">
51 52
              <a class="swiper-slide" v-for="item in residentComps" :key="item.index" :href="'company.html?id='+item.id" target="_blank">
52 53
                <div class="item-block">
@ -60,6 +61,7 @@
60 61
            <div class="swiper-button-prev el-icon-arrow-left" ref="prevCmp" style="line-height:170px"></div>
61 62
            <div class="swiper-button-next el-icon-arrow-right" ref="nextCmp" style="line-height:170px"></div>
62 63
          </div>
64
          <div v-show="!residentComps || residentComps.length===0" class="nodata">没有相关内容</div>
63 65
        </div>
64 66
      </div>
65 67
      <div class="wrapper-right content-wrapper about-us">
@ -418,6 +420,13 @@
418 420
419 421
<style rel="stylesheet/scss" lang="scss">
420 422
  .home-main{
423
    .nodata{
424
      font-size:13px;
425
      line-height: 30px;
426
      color:#999;
427
      margin:40px auto;
428
      text-align: center;
429
    }
421 430
    .block-wrapper{
422 431
      display: flex;
423 432
      justify-content: space-between;

+ 12 - 12
src/pages/index/views/ViewPlatTrend/news.vue

@ -1,10 +1,12 @@
1 1
<template>
2 2
	<div class="tab-contain">
3
		<baseContent v-for="item in paltNews" :key="item.index" :itemSingle="item" :showOwner="false"></baseContent>
4
		<Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="loadLower"></Loading>
5
    <div class="nodataList" v-show="nodata">暂无数据</div>
3
    <div v-show="!ifDefault" v-if="paltNews.length">
4
      <baseContent v-for="item in paltNews" :key="item.index" :itemSingle="item" :showOwner="false"></baseContent>
5
		  <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="loadLower"></Loading>
6
    </div>
7
    <defaultPage v-show="ifDefault"></defaultPage>
6 8
  </div>
7
</template>
9
</template> 
8 10
9 11
<script>
10 12
  import { commenTime } from '@/libs/util';
@ -22,7 +24,7 @@
22 24
        loadingComplete: false, // 是否全部加载
23 25
        isFormSearch: false, // 数据加载
24 26
        isLoading: false, // button style...
25
        nodata: false
27
        ifDefault: false
26 28
      };
27 29
    },
28 30
    components: {
@ -59,8 +61,12 @@
59 61
              };
60 62
            } else {
61 63
              that.loadingModalShow = false;
62
              that.nodata = true;
64
              that.isFormSearch = true;
63 65
            }
66
            var liLen = that.paltNews.length;
67
            if ($info.length === 0 && liLen === 0) {
68
              that.ifDefault = true;
69
            };
64 70
          };
65 71
        });
66 72
      },
@ -73,9 +79,3 @@
73 79
    }
74 80
  };
75 81
</script>
76
77
<style>
78
  .nodataList{
79
    text-align: center;
80
  }
81
  </style>

+ 22 - 19
src/pages/index/views/ViewRegCompany/index.vue

@ -2,19 +2,22 @@
2 2
	<div class="cooperation">
3 3
		<div class="content-wrapper block-wrapper" style="min-height:410px" v-loading="loading">
4 4
			<div class="block-container">
5
				<a class="block-item org-item" v-for="item in orgData" :key="item.index" :href="'company.html?id='+item.id" target="_blank">
6
					<div class="item-block-org">
7
						<div class="item-pic-org">
8
							<img :src="item.logo">
9
						</div>
10
						<div class="item-text-org">
11
							<div class="item-tit-org"><span>{{item.name}}</span></div>
12
							<p class="item-tag-org" v-if="item.industry">{{item.industry.join(' | ')}}</p>
13
						</div>
14
					</div>
15
				</a>
16
			</div>
17
			<Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="loadLower" v-if="!num"></Loading>
5
        <template v-show="!ifDefault" v-if="orgData.length">
6
          <a class="block-item org-item" v-for="item in orgData" :key="item.index" :href="'company.html?id='+item.id" target="_blank">
7
            <div class="item-block-org">
8
              <div class="item-pic-org">
9
                <img :src="item.logo">
10
              </div>
11
              <div class="item-text-org">
12
                <div class="item-tit-org"><span>{{item.name}}</span></div>
13
                <p class="item-tag-org" v-if="item.industry">{{item.industry.join(' | ')}}</p>
14
              </div>
15
            </div>
16
          </a>
17
          <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="loadLower"></Loading>
18
        </template>
19
        <defaultPage v-show="ifDefault"></defaultPage>
20
      </div>
18 21
		</div>
19 22
		<BackTop></BackTop>
20 23
	</div>
@ -24,11 +27,6 @@
24 27
  import { defaultSet } from '@/libs/util';
25 28
26 29
  export default {
27
    props: {
28
      num: {
29
        type: Number
30
      }
31
    },
32 30
    data() {
33 31
      return {
34 32
        pageSize: 30,
@ -38,7 +36,8 @@
38 36
        loadingModalShow: true, // 是否显示按钮
39 37
        loadingComplete: false, // 是否全部加载
40 38
        isFormSearch: false, // 数据加载
41
        isLoading: false // button style...
39
        isLoading: false, // button style...
40
        ifDefault: false
42 41
      };
43 42
    },
44 43
    created() {
@ -70,6 +69,10 @@
70 69
              that.loadingModalShow = false;
71 70
              that.isFormSearch = false;
72 71
            };
72
            var liLen = that.orgData.length;
73
            if ($info.length === 0 && liLen === 0) {
74
              that.ifDefault = true;
75
            };
73 76
          };
74 77
        });
75 78
      },