Pārlūkot izejas kodu

页面崩溃修改

lipengtao 6 gadi atpakaļ
vecāks
revīzija
5d38a40bb0

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

@ -0,0 +1,32 @@
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
  

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

@ -73,7 +73,7 @@
73 73
                  </el-row>
74 74
                </div>
75 75
              </div>
76
              <div class="inner-wrapper" v-if="platOnePatents && platOnePatents.lnegth">
76
              <div class="inner-wrapper" v-if="platOnePatents && platOnePatents.length">
77 77
                <div class="content-title">
78 78
                  <span>专利</span>
79 79
                  <span class="content-more" @click="activeName='third'">更多</span>
@ -210,7 +210,7 @@
210 210
  import collectCo from '@/components/CollectCo';
211 211
  import contactChat from '@/components/ContactChat';
212 212
  import baseService from '@/components/subTemplate/BaseServices';
213
  import baseResult from '@/components/subTemplate/BaseResult';
213
  import baseResult from '@/components/subTemplate/BaseResults';
214 214
215 215
  export default {
216 216
    data() {
@ -374,6 +374,9 @@
374 374
            if ($info.length > 0) {
375 375
              this.dataO.patTime = $info[$info.length - 1].assTime;
376 376
              this.dataO.patId = $info[$info.length - 1].id;
377
              for(let i = 0; i < $info.length; i++) {
378
                $info[i].authors = $info[i].authors.substr(0, $info[i].authors.length - 1);
379
              }
377 380
              this.platPatents = this.isFormSearch2 ? this.platPatents.concat($info) : $info;
378 381
              this.isFormSearch2 = true;
379 382
              if ($info.length < this.rows) {