Browse Source

wave show

lyn7568 6 years ago
parent
commit
9a33e00362

+ 4 - 7
src/components/subTemplate/BaseService.vue

@ -1,6 +1,6 @@
1 1
<template>
2 2
  <a class="list-item" :href="'serve.html?id='+serveInfo.id" target="_blank">
3
    <div class="list-head" :style="{backgroundImage: 'url(' + serveInfo.images + ')'}"></div>
3
    <div class="list-head" :style="{backgroundImage: 'url(' + serveInfo.firstImg + ')'}"></div>
4 4
    <div class="list-info">
5 5
      <div class="list-tit list-topic">{{serveInfo.name}}</div>
6 6
      <div class="list-owner">{{ownerName}}<em class="authicon" :class="ownerAuth"></em></div>
@ -26,25 +26,22 @@
26 26
        serveInfo: ''
27 27
      };
28 28
    },
29
    computed: {
30
    },
31 29
    created() {
32
      this.ownerByond();
33 30
      this.itmeList();
34 31
    },
35 32
    methods: {
36 33
      itmeList() {
37 34
        var objStr = this.itemSingle
35
        objStr.firstImg = defaultSet.img.service
38 36
        if (objStr.images) {
39
          objStr.images = ImageUrl('ware' + objStr.images.split(',')[0])
40
        } else {
41
          objStr.images = defaultSet.img.service
37
          objStr.firstImg = ImageUrl('ware' + strToArr(objStr.images)[0])
42 38
        }
43 39
        if (objStr.category) {
44 40
          objStr.otype = objStr.category
45 41
          objStr.oid = objStr.owner
46 42
        }
47 43
        this.serveInfo = objStr
44
        this.ownerByond()
48 45
      },
49 46
      ownerByond() {
50 47
        var item = this.serveInfo

+ 0 - 60
src/components/subTemplate/BaseServices.vue

@ -1,60 +0,0 @@
1
<template>
2
    <a class="list-item" :href="'serve.html?id='+serveInfo.id" target="_blank">
3
      <div class="list-head" :style="{backgroundImage: 'url(' + serveInfo.images + ')'}"></div>
4
      <div class="list-info">
5
        <div class="list-tit list-topic">{{serveInfo.name}}</div>
6
        <div class="list-owner">{{ownerName}}<em class="authicon" :class="ownerAuth"></em></div>
7
        <div class="list-desc" v-if="serveInfo.cnt">内容:{{serveInfo.cnt}}</div>
8
      </div>
9
    </a>
10
  </template>
11
  
12
  <script>
13
    import { ImageUrl, defaultSet, autho, strToArr } from '@/libs/util';
14
    import queryBase from '@/libs/queryBase';
15
  
16
    export default {
17
      props: {
18
        itemSingle: {
19
          type: Object
20
        }
21
      },
22
      data() {
23
        return {
24
          ownerName: '',
25
          ownerAuth: '',
26
          serveInfo: ''
27
        };
28
      },
29
      computed: {
30
      },
31
      created() {
32
        this.ownerByond();
33
        this.serveInfo = this.itemSingle;
34
      },
35
      methods: {
36
        ownerByond() {
37
          var item = this.serveInfo
38
          var _this = this
39
          if (item.otype === '1') {
40
            queryBase.getProfessor(item.oid, function(sc, value) {
41
              if (sc) {
42
                _this.ownerName = value.name;
43
                _this.ownerAuth = autho(value.authType, value.orgAuth, value.authStatus);
44
                _this.$forceUpdate();
45
              }
46
            });
47
          } else if (item.otype === '2') {
48
            queryBase.getOrganization(item.oid, function(sc, value) {
49
              if (sc) {
50
                _this.ownerName = value.forShort ? value.forShort : value.name;
51
                _this.ownerAuth = value.authStatus === '3' ? 'icon-com' : '';
52
                _this.$forceUpdate();
53
              }
54
            });
55
          }
56
        }
57
      }
58
    };
59
  </script>
60
  

+ 0 - 32
src/components/subTemplate/baseResults.vue

@ -1,32 +0,0 @@
1
<template>
2
    <a class="list-item" :href="'result.html?id='+itemSingle.id" target="_blank">
3
      <div class="list-head" :style="{backgroundImage: 'url(' + imgUrl + ')'}"></div>
4
      <div class="list-info">
5
        <div class="list-tit list-topic">{{itemSingle.name}}</div>
6
        <div class="list-owner" v-if="itemSingle.authors">发明人:{{itemSingle.authors}}</div>
7
        <div class="list-desc">申请人:{{itemSingle.reqPerson}}</div>
8
      </div>
9
    </a>
10
  </template>
11
  
12
  <script>
13
    import { defaultSet } from '@/libs/util';
14
  
15
    export default {
16
      props: {
17
        itemSingle: {
18
          type: Object
19
        }
20
      },
21
      data() {
22
        return {
23
          imgUrl: defaultSet.img.patent
24
        };
25
      },
26
      created() {
27
      },
28
      methods: {
29
      }
30
    };
31
  </script>
32
  

+ 2 - 14
src/pages/expert/show.vue

@ -209,8 +209,8 @@
209 209
  import shareOut from '@/components/ShareOut';
210 210
  import collectCo from '@/components/CollectCo';
211 211
  import contactChat from '@/components/ContactChat';
212
  import baseService from '@/components/subTemplate/BaseServices';
213
  import baseResult from '@/components/subTemplate/BaseResults';
212
  import baseService from '@/components/subTemplate/BaseService';
213
  import baseResult from '@/components/subTemplate/BaseResult';
214 214
215 215
  export default {
216 216
    data() {
@ -329,18 +329,6 @@
329 329
            var $info = res.data;
330 330
            if ($info.length > 0) {
331 331
              this.dataO.serModifyTime = $info[$info.length - 1].modifyTime;
332
              for (let i = 0; i < $info.length; i++) {
333
                var objStr = $info[i]
334
                if (objStr.images) {
335
                  objStr.images = ImageUrl('ware' + objStr.images.split(',')[0])
336
                } else {
337
                  objStr.images = defaultSet.img.service
338
                }
339
                if (objStr.category) {
340
                  objStr.otype = objStr.category
341
                  objStr.oid = objStr.owner
342
                }
343
              }
344 332
              this.platServices = this.isFormSearch ? this.platServices.concat($info) : $info;
345 333
              this.isFormSearch = true;
346 334
              if ($info.length < this.rows) {

+ 1 - 0
src/pages/index/permission.js

@ -3,6 +3,7 @@ import store from '@/store'
3 3
import { Message } from 'element-ui'
4 4
5 5
router.beforeEach((to, from, next) => {
6
  document.title = PLAT.info.title
6 7
  if (to.meta.title) {
7 8
    document.title = to.meta.title + '-' + PLAT.info.title
8 9
  }

+ 3 - 15
src/pages/org/show.vue

@ -170,7 +170,7 @@
170 170
  import shareOut from '@/components/ShareOut';
171 171
  import collectCo from '@/components/CollectCo';
172 172
  import contactChat from '@/components/ContactChat';
173
  import baseService from '@/components/subTemplate/BaseServices';
173
  import baseService from '@/components/subTemplate/BaseService';
174 174
  import baseResource from '@/components/subTemplate/BaseResource';
175 175
176 176
  export default {
@ -295,19 +295,7 @@
295 295
            var $info = res.data;
296 296
            if ($info.length > 0) {
297 297
              this.dataO.serModifyTime = $info[$info.length - 1].modifyTime;
298
              for (let i = 0; i < $info.length; i++) {
299
                var objStr = $info[i]
300
                if (objStr.images) {
301
                  objStr.images = ImageUrl('ware' + objStr.images.split(',')[0])
302
                } else {
303
                  objStr.images = defaultSet.img.service
304
                }
305
                if (objStr.category) {
306
                  objStr.otype = objStr.category
307
                  objStr.oid = objStr.owner
308
                }
309
              }
310
              this.platServices =  this.platServices.concat($info);
298
              this.platServices = this.isFormSearch ? this.platServices.concat($info) : $info;
311 299
              this.isFormSearch = true;
312 300
              if ($info.length < this.rows) {
313 301
                this.loadingModalShow = false;
@ -342,7 +330,7 @@
342 330
            if ($info.length > 0) {
343 331
              this.dataO.resPublishTime = $info[$info.length - 1].publishTime;
344 332
              this.dataO.resShareId = $info[$info.length - 1].shareId;
345
              this.platResources = this.platResources.concat($info);
333
              this.platResources = this.isFormSearch2 ? this.platResources.concat($info) : $info;
346 334
              this.isFormSearch2 = true;
347 335
              if ($info.length < this.rows) {
348 336
                this.loadingModalShow2 = false;