|
@@ -14,6 +14,14 @@
|
|
<el-col :span="24" class="name textOver">
|
|
<el-col :span="24" class="name textOver">
|
|
{{ detailInfo.name }}
|
|
{{ detailInfo.name }}
|
|
</el-col>
|
|
</el-col>
|
|
|
|
+ <el-col :span="24">
|
|
|
|
+ <el-col :span="5" class="otherInfo textOver">
|
|
|
|
+ 申请号
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="19" class="otherInfo textOver">
|
|
|
|
+ {{ detailInfo.app_number || '暂无' }}
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-col>
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
<el-col :span="5" class="otherInfo textOver">
|
|
<el-col :span="5" class="otherInfo textOver">
|
|
申请日
|
|
申请日
|
|
@@ -22,7 +30,6 @@
|
|
{{ detailInfo.create_date || '暂无' }}
|
|
{{ detailInfo.create_date || '暂无' }}
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
-
|
|
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
<el-col :span="5" class="otherInfo textOver">
|
|
<el-col :span="5" class="otherInfo textOver">
|
|
公开(公告)号
|
|
公开(公告)号
|
|
@@ -39,13 +46,17 @@
|
|
{{ detailInfo.complete_date || '暂无' }}
|
|
{{ detailInfo.complete_date || '暂无' }}
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
-
|
|
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
- <el-col :span="5" class="otherInfo textOver">
|
|
|
|
- 发明人
|
|
|
|
- </el-col>
|
|
|
|
|
|
+ <el-col :span="5" class="otherInfo textOver"> 发明人</el-col>
|
|
<el-col :span="19" class="otherInfo textOver">
|
|
<el-col :span="19" class="otherInfo textOver">
|
|
- {{ detailInfo.inventor || '暂无' }}
|
|
|
|
|
|
+ <span v-if="detailInfo.inventor.length > 43">
|
|
|
|
+ <el-tooltip :content="detailInfo.inventor" placement="top">
|
|
|
|
+ <p class="tooltip textOver">{{ detailInfo.inventor || '暂无' }}</p>
|
|
|
|
+ </el-tooltip>
|
|
|
|
+ </span>
|
|
|
|
+ <span v-else>
|
|
|
|
+ {{ detailInfo.inventor || '暂无' }}
|
|
|
|
+ </span>
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
@@ -118,10 +129,10 @@ export default {
|
|
border: 1px solid #ccc;
|
|
border: 1px solid #ccc;
|
|
.el-image {
|
|
.el-image {
|
|
width: 100%;
|
|
width: 100%;
|
|
- height: 320px;
|
|
|
|
|
|
+ height: 360px;
|
|
}
|
|
}
|
|
.noImage {
|
|
.noImage {
|
|
- height: 320px;
|
|
|
|
|
|
+ height: 360px;
|
|
p:nth-child(1) {
|
|
p:nth-child(1) {
|
|
font-size: 25px;
|
|
font-size: 25px;
|
|
text-align: left;
|
|
text-align: left;
|
|
@@ -129,7 +140,7 @@ export default {
|
|
}
|
|
}
|
|
p:nth-child(2) {
|
|
p:nth-child(2) {
|
|
text-align: center;
|
|
text-align: center;
|
|
- padding: 25% 0;
|
|
|
|
|
|
+ padding: 30% 0;
|
|
font-size: 35px;
|
|
font-size: 35px;
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
color: #ff0000;
|
|
color: #ff0000;
|
|
@@ -155,6 +166,10 @@ export default {
|
|
border-right: 1px solid #ccc;
|
|
border-right: 1px solid #ccc;
|
|
border-bottom: 1px solid #ccc;
|
|
border-bottom: 1px solid #ccc;
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
|
|
+ .tooltip {
|
|
|
|
+ float: left;
|
|
|
|
+ width: 98%;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|