LIPENGTAO1313 vor 6 Jahren
Ursprung
Commit
3f2f8adb47

+ 70 - 70
src/components/main-views/ViewPlatTrendTrends.vue

@ -1,70 +1,70 @@
1
<template>
2
	<div class="tab-contain">
3
		<baseArticle v-for="item in orgTrends" :key="item.index" :itemSingle="item" :showOwner="true"></baseArticle>
4
		<Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="loadLower"></Loading>
5
	</div>
6
</template>
7
8
<script type="text/ecmascript-6">
9
  import Cookies from 'js-cookie';
10
  import httpUrl from '@/libs/http';
11
12
	import baseArticle from '../sub-component/BaseArticle';
13
14
	export default {
15
    data() {
16
      return {
17
        platId: '',
18
        rows: 2,
19
        dataO: {
20
          bShareId: '',
21
          bTime: ''
22
        },
23
        orgTrends: '',
24
        loadingModalShow: true, // 是否显示按钮
25
        loadingComplete: false, // 是否全部加载
26
        isFormSearch: false, // 数据加载
27
        isLoading: false // button style...
28
      };
29
    },
30
    created() {
31
      this.platId = Cookies.get('platId');
32
      this.queryOrgTrends();
33
    },
34
    methods: {
35
      queryOrgTrends(id) {
36
        this.$axios.get(httpUrl.hQuery.orgTrends.nopq, {
37
           params: {
38
            pid: this.platId,
39
            rows: this.rows,
40
            publishTime: this.dataO.bTime,
41
            shardId: this.dataO.bShareId
42
          }
43
        }).then((res) => {
44
          console.log(res);
45
          if (res.success) {
46
            var $info = res.data;
47
            if ($info.length > 0) {
48
              this.dataO.bShareId = $info[$info.length - 1].shareId;
49
              this.dataO.bTime = $info[$info.length - 1].publishTime;
50
              this.orgTrends = this.isFormSearch ? this.orgTrends.concat($info) : $info;
51
              this.isFormSearch = true;
52
            };
53
            if ($info.length < this.rows) {
54
              this.loadingModalShow = false;
55
              this.isFormSearch = false;
56
            };
57
          };
58
        });
59
      },
60
      loadLower() {
61
        if (this.loadingModalShow && !this.isLoading) {
62
          this.queryOrgTrends();
63
        }
64
      }
65
    },
66
    components: {
67
      baseArticle
68
    }
69
  };
70
</script>
1
<template>
2
	<div class="tab-contain">
3
		<baseArticle v-for="item in orgTrends" :key="item.index" :itemSingle="item" :showOwner="true"></baseArticle>
4
		<Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="loadLower"></Loading>
5
	</div>
6
</template>
7

8
<script type="text/ecmascript-6">
9
  import Cookies from 'js-cookie';
10
  import httpUrl from '@/libs/http';
11

12
	import baseArticle from '../sub-component/BaseArticle';
13

14
	export default {
15
    data() {
16
      return {
17
        platId: '',
18
        rows: 20,
19
        dataO: {
20
          bShareId: '',
21
          bTime: ''
22
        },
23
        orgTrends: '',
24
        loadingModalShow: true, // 是否显示按钮
25
        loadingComplete: false, // 是否全部加载
26
        isFormSearch: false, // 数据加载
27
        isLoading: false // button style...
28
      };
29
    },
30
    created() {
31
      this.platId = Cookies.get('platId');
32
      this.queryOrgTrends();
33
    },
34
    methods: {
35
      queryOrgTrends(id) {
36
        this.$axios.get(httpUrl.hQuery.orgTrends.nopq, {
37
           params: {
38
            pid: this.platId,
39
            rows: this.rows,
40
            publishTime: this.dataO.bTime,
41
            shardId: this.dataO.bShareId
42
          }
43
        }).then((res) => {
44
          console.log(res);
45
          if (res.success) {
46
            var $info = res.data;
47
            if ($info.length > 0) {
48
              this.dataO.bShareId = $info[$info.length - 1].shareId;
49
              this.dataO.bTime = $info[$info.length - 1].publishTime;
50
              this.orgTrends = this.isFormSearch ? this.orgTrends.concat($info) : $info;
51
              this.isFormSearch = true;
52
            };
53
            if ($info.length < this.rows) {
54
              this.loadingModalShow = false;
55
              this.isFormSearch = false;
56
            };
57
          };
58
        });
59
      },
60
      loadLower() {
61
        if (this.loadingModalShow && !this.isLoading) {
62
          this.queryOrgTrends();
63
        }
64
      }
65
    },
66
    components: {
67
      baseArticle
68
    }
69
  };
70
</script>

+ 90 - 75
src/components/sub-component/BaseAgency.vue

@ -1,75 +1,90 @@
1
<template>
2
  <div class="block-container">
3
    <a class="block-item org-item" v-for="item in orgData" :key="item.index" :href="linkUrl(item)" target="_blank">
4
      <div class="item-block-org">
5
        <div class="item-pic-org">
6
          <img :src="orgLogoUrl(item)">
7
        </div>
8
        <div class="item-text-org">
9
          <div class="item-tit-org"><span>{{item.name}}</span><em class="authicon" :class="{'icon-com': item.authStatus==='3'}"></em></div>
10
          <p class="item-tag-org">{{item.industry.replace(/,/gi, ' | ')}}</p>
11
        </div>
12
      </div>
13
    </a>
14
  </div>
15
</template>
16
17
<script type="text/ecmascript-6">
18
  import Cookies from 'js-cookie';
19
  import util from '@/libs/util';
20
  import httpUrl from '@/libs/http';
21
22
  export default {
23
    props: {
24
      num: {
25
        type: Number
26
      }
27
    },
28
    data() {
29
      return {
30
        platId: '',
31
        rows: 20,
32
        orgData: '',
33
        dataO: {
34
          bOid: '',
35
          bTime: ''
36
        }
37
      };
38
    },
39
    created() {
40
       this.platId = Cookies.get('platId');
41
       this.ResidentOrgs(this.platId);
42
    },
43
    methods: {
44
      ResidentOrgs(id) {
45
        this.$axios.get(httpUrl.hQuery.buttedOrgs.nopq, {
46
          params: {
47
            pid: id,
48
            oid: this.dataO.bOid,
49
            time: this.dataO.bTime,
50
            rows: this.num ? this.num : this.rows
51
          }
52
        }).then((res) => {
53
          console.log(res);
54
          if (res.success) {
55
            var $info = res.data;
56
            if ($info.length > 0) {
57
              this.dataO.bOid = $info[$info.length - 1].id;
58
              this.dataO.bTime = $info[$info.length - 1].buttedTime;
59
              this.orgData = $info;
60
              console.log(this.orgData);
61
            };
62
            if ($info.length < this.rows) {
63
            };
64
          };
65
        });
66
      },
67
      orgLogoUrl(item) {
68
        return item.hasOrgLogo ? util.ImageUrl(('org/' + item.id + '.jpg'), true) : util.defaultSet.img.org;
69
      },
70
      linkUrl(item) {
71
        return util.defaultSet.link.org + item.id;
72
      }
73
    }
74
  };
75
</script>
1
<template>
2
  <div>
3
    <div class="block-container">
4
      <a class="block-item org-item" v-for="item in orgData" :key="item.index" :href="linkUrl(item)" target="_blank">
5
        <div class="item-block-org">
6
          <div class="item-pic-org">
7
            <img :src="orgLogoUrl(item)">
8
          </div>
9
          <div class="item-text-org">
10
            <div class="item-tit-org"><span>{{item.name}}</span><em class="authicon" :class="{'icon-com': item.authStatus==='3'}"></em></div>
11
            <p class="item-tag-org">{{item.industry.replace(/,/gi, ' | ')}}</p>
12
          </div>
13
        </div>
14
      </a>
15
    </div>
16
    <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="loadLower"></Loading>
17
  </div>
18
</template>
19

20
<script type="text/ecmascript-6">
21
  import Cookies from 'js-cookie';
22
  import util from '@/libs/util';
23
  import httpUrl from '@/libs/http';
24

25
  export default {
26
    props: {
27
      num: {
28
        type: Number
29
      }
30
    },
31
    data() {
32
      return {
33
        platId: '',
34
        rows: 21,
35
        orgData: [],
36
        dataO: {
37
          bOid: '',
38
          bTime: ''
39
        },
40
        loadingModalShow: true, // 是否显示按钮
41
        loadingComplete: false, // 是否全部加载
42
        isFormSearch: false, // 数据加载
43
        isLoading: false // button style...
44
      };
45
    },
46
    created() {
47
       this.platId = Cookies.get('platId');
48
       this.ResidentOrgs(this.platId);
49
    },
50
    methods: {
51
      ResidentOrgs(id) {
52
        this.$axios.get(httpUrl.hQuery.buttedOrgs.nopq, {
53
          params: {
54
            pid: id,
55
            oid: this.dataO.bOid,
56
            time: this.dataO.bTime,
57
            rows: this.num ? this.num : this.rows
58
          }
59
        }).then((res) => {
60
          console.log(res);
61
          if (res.success) {
62
            var $info = res.data;
63
            if ($info.length > 0) {
64
              this.dataO.bOid = $info[$info.length - 1].id;
65
              this.dataO.bTime = $info[$info.length - 1].buttedTime;
66
              this.isFormSearch = true;
67
              this.orgData = this.orgData.concat($data);
68
              console.log(this.orgData);
69
            };
70
            if ($info.length < this.rows) {
71
              this.loadingModalShow = false;
72
              this.isFormSearch = false;
73
            };
74
          };
75
        });
76
      },
77
      orgLogoUrl(item) {
78
        return item.hasOrgLogo ? util.ImageUrl(('org/' + item.id + '.jpg'), true) : util.defaultSet.img.org;
79
      },
80
      linkUrl(item) {
81
        return util.defaultSet.link.org + item.id;
82
      },
83
      loadLower() {
84
        if (this.loadingModalShow && !this.isLoading) {
85
          this.ResidentOrgs(this.platId);
86
        }
87
      }
88
    }
89
  };
90
</script>

+ 29 - 13
src/components/sub-component/BaseExpert.vue

@ -1,13 +1,16 @@
1 1
<template>
2
  <div class="block-container">
3
    <a class="block-item" v-for="item in userData" :key="item.index" :href="linkUrl(item)" target="_blank">
4
      <div class="show-head" :style="{backgroundImage:'url('+ headUrl(item) +')'}"></div>
5
      <div class="show-info">
6
        <div class="info-tit">{{item.name}}<em class="authicon" :class="headIcon(item)"></em></div>
7
        <div class="info-tag" v-if="item.offt">{{item.offt}}</div>
8
        <div class="info-desc" v-if="item.reserachs">研究方向:{{item.reserachs}}</div>
9
      </div>
10
    </a>
2
  <div>
3
    <div class="block-container">
4
      <a class="block-item" v-for="item in userData" :key="item.index" :href="linkUrl(item)" target="_blank">
5
        <div class="show-head" :style="{backgroundImage:'url('+ headUrl(item) +')'}"></div>
6
        <div class="show-info">
7
          <div class="info-tit">{{item.name}}<em class="authicon" :class="headIcon(item)"></em></div>
8
          <div class="info-tag" v-if="item.offt">{{item.offt}}</div>
9
          <div class="info-desc" v-if="item.reserachs">研究方向:{{item.reserachs}}</div>
10
        </div>
11
      </a>
12
    </div>
13
    <Loading v-show="loadingModalShow" :loadingComplete="loadingComplete" :isLoading="isLoading" v-on:upup="loadLower"></Loading>
11 14
  </div>
12 15
</template>
13 16
@ -26,11 +29,15 @@
26 29
      return {
27 30
        platId: '',
28 31
        rows: 20,
29
        userData: '',
32
        userData: [],
30 33
        dataO: {
31 34
          bUid: '',
32 35
          bTime: ''
33
        }
36
        },
37
        loadingModalShow: true, // 是否显示按钮
38
        loadingComplete: false, // 是否全部加载
39
        isFormSearch: false, // 数据加载
40
        isLoading: false // button style...
34 41
      };
35 42
    },
36 43
    created() {
@ -47,12 +54,12 @@
47 54
            rows: this.num ? this.num : this.rows
48 55
          }
49 56
        }).then((res) => {
50
          console.log(res);
51 57
          if (res.success) {
52 58
            var $data = res.data;
53 59
            if ($data.length > 0) {
54 60
              this.dataO.bUid = $data[$data.length - 1].id;
55 61
              this.dataO.bTime = $data[$data.length - 1].buttedTime;
62
              this.isFormSearch = true;
56 63
              for (let i = 0; i < $data.length; i++) {
57 64
                if ($data[i].title) {
58 65
                  if ($data[i].orgName) {
@ -88,7 +95,11 @@
88 95
                  }
89 96
                });
90 97
              }
91
              this.userData = $data;
98
              this.userData = this.userData.concat($data);
99
              if ($data.length < this.rows) {
100
                this.loadingModalShow = false;
101
                this.isFormSearch = false;
102
              }
92 103
            };
93 104
          };
94 105
        });
@ -101,6 +112,11 @@
101 112
      },
102 113
      linkUrl(item) {
103 114
        return util.defaultSet.link.expert + item.id;
115
      },
116
      loadLower() {
117
        if (this.loadingModalShow && !this.isLoading) {
118
          this.buttedProfessors(this.platId);
119
        }
104 120
      }
105 121
    }
106 122
  };