|
@@ -67,7 +67,7 @@
|
|
|
align="center"
|
|
|
width="300px">
|
|
|
<template slot-scope="scope" >
|
|
|
- {{scope.row.content.trim()}}
|
|
|
+ {{scope.row.content}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
@@ -675,10 +675,10 @@ export default {
|
|
|
res.data.patentRightVos[i].features[m].pContentOut = res.data.patentRightVos[i].contentOut
|
|
|
res.data.patentRightVos[i].features[m].comResult = '公开'
|
|
|
if (!res.data.patentRightVos[i].features[m].hasOwnProperty("explainText")) {//hasOwnProperty判断属性是否存在
|
|
|
- res.data.patentRightVos[i].features[m].explainText=res.data.patentRightVos[i].features[m].contentOut.trim()
|
|
|
+ res.data.patentRightVos[i].features[m].explainText=res.data.patentRightVos[i].features[m].contentOut
|
|
|
} else {
|
|
|
if (res.data.patentRightVos[i].features[m].explainText=="") {//属性存在等于空
|
|
|
- res.data.patentRightVos[i].features[m].explainText=res.data.patentRightVos[i].features[m].contentOut.trim()
|
|
|
+ res.data.patentRightVos[i].features[m].explainText=res.data.patentRightVos[i].features[m].contentOut
|
|
|
}
|
|
|
}
|
|
|
|