|
@@ -44,11 +44,11 @@
|
|
|
<div class="patent-abstract-title">
|
|
|
<el-link :disabled="!$permission('/workspace/details')"
|
|
|
:class="$permission('/workspace/details') ? '' : 'jinzhi'" type="success"
|
|
|
- @click.native="handleLink(patent, index)">
|
|
|
+ @click.native="handleClick(patent, index)">
|
|
|
<span v-html="getView(patent, 'patentNo')"></span>
|
|
|
</el-link>
|
|
|
<el-tag class="margin-left_10" type="primary" effect="dark" size="small" v-if="patent.simpleStatus">{{
|
|
|
- patent.simpleStatus }}</el-tag>
|
|
|
+ simple_status[patent.simpleStatus] }}</el-tag>
|
|
|
</div>
|
|
|
<div style="font-size: 13px;">
|
|
|
<el-row>
|
|
@@ -88,12 +88,12 @@
|
|
|
<el-col :span="24">
|
|
|
<span class="patent-abstract_label">权利人:</span>
|
|
|
<span class="patent-abstract_text" v-if="patent.rightHolder">
|
|
|
- <span v-for="(item) in patent.rightHolder.filter(a => a.dataType === 1)" :key="item.name">
|
|
|
+ <!-- <span v-for="(item) in patent.rightHolder.filter(a => a.dataType === 1)" :key="item.name"> -->
|
|
|
<el-link type="primary">
|
|
|
- <span v-html="getView(item.name)"></span>
|
|
|
+ <span v-html="getView(patent,'rightHolder')"></span>
|
|
|
</el-link>
|
|
|
<span class="patent-abstract_semicolon">;</span>
|
|
|
- </span>
|
|
|
+ <!-- </span> -->
|
|
|
</span>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -101,12 +101,12 @@
|
|
|
<el-col :span="24">
|
|
|
<span class="patent-abstract_label">申请人:</span>
|
|
|
<span class="patent-abstract_text" v-if="patent.applicant">
|
|
|
- <span v-for="(item) in patent.applicant.filter(a => a.dataType === 2)" :key="item.name">
|
|
|
+ <!-- <span v-for="(item) in patent.applicant.filter(a => a.dataType === 2)" :key="item.name"> -->
|
|
|
<el-link type="primary">
|
|
|
- <span v-html="getView(item.name)"></span>
|
|
|
+ <span v-html="getView(patent,'applicant')"></span>
|
|
|
</el-link>
|
|
|
<span class="patent-abstract_semicolon">;</span>
|
|
|
- </span>
|
|
|
+ <!-- </span> -->
|
|
|
</span>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
@@ -114,12 +114,12 @@
|
|
|
<el-col :span="24">
|
|
|
<span class="patent-abstract_label">发明人:</span>
|
|
|
<span class="patent-abstract_text">
|
|
|
- <span v-for="(item) in patent.inventor" :key="item.name">
|
|
|
+ <!-- <span v-for="(item) in patent.inventor" :key="item.name">-->
|
|
|
<el-link type="primary">
|
|
|
- <span v-html="getView(item.name)"></span>
|
|
|
+ <span v-html="getView(patent, 'inventor')"></span>
|
|
|
</el-link>
|
|
|
<span class="patent-abstract_semicolon">;</span>
|
|
|
- </span>
|
|
|
+ <!-- </span> -->
|
|
|
</span>
|
|
|
</el-col>
|
|
|
</el-row>
|