|
@@ -40,7 +40,7 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="专利名称" align="center" show-overflow-tooltip>
|
|
<el-table-column label="专利名称" align="center" show-overflow-tooltip>
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <span v-html="getViewDom(scope.row, 'title')"></span>
|
|
|
|
|
|
+ <span v-html="getView(scope.row, 'title')"></span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="申请人" align="center" show-overflow-tooltip>
|
|
<el-table-column label="申请人" align="center" show-overflow-tooltip>
|
|
@@ -65,10 +65,10 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
</el-main>
|
|
</el-main>
|
|
- <el-footer class="pagination">
|
|
|
|
|
|
+ <!-- <el-footer class="pagination">
|
|
<el-pagination :current-page.sync="queryParams2.pageNum" :page-size="queryParams2.pageSize" :total="total"
|
|
<el-pagination :current-page.sync="queryParams2.pageNum" :page-size="queryParams2.pageSize" :total="total"
|
|
@current-change="handleCurrentChange" layout="total, prev, pager, next, jumper" background></el-pagination>
|
|
@current-change="handleCurrentChange" layout="total, prev, pager, next, jumper" background></el-pagination>
|
|
- </el-footer>
|
|
|
|
|
|
+ </el-footer> -->
|
|
</el-container>
|
|
</el-container>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
@@ -79,7 +79,7 @@ export default {
|
|
mixins: [patentDetails],
|
|
mixins: [patentDetails],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
- type: '',
|
|
|
|
|
|
+ type: 'inpadoc',
|
|
queryParams2: {
|
|
queryParams2: {
|
|
// familyId: 0,
|
|
// familyId: 0,
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
@@ -90,15 +90,9 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
- patentId() {
|
|
|
|
|
|
+ patentNo() {
|
|
this.queryParams2.pageNum = 1
|
|
this.queryParams2.pageNum = 1
|
|
this.onChange()
|
|
this.onChange()
|
|
- },
|
|
|
|
- patentNo() {
|
|
|
|
- if (this.outside) {
|
|
|
|
- this.queryParams2.pageNum = 1
|
|
|
|
- this.onChange()
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
@@ -113,12 +107,10 @@ export default {
|
|
type: this.type,//同族类型
|
|
type: this.type,//同族类型
|
|
}
|
|
}
|
|
this.$api.selectKinByPatentNo(params).then(response => {
|
|
this.$api.selectKinByPatentNo(params).then(response => {
|
|
- if(response.data.data){
|
|
|
|
- this.tableData2 = response.data.data
|
|
|
|
- this.total = response.data.total
|
|
|
|
|
|
+ if(response.data){
|
|
|
|
+ this.tableData2 = response.data
|
|
}else{
|
|
}else{
|
|
this.tableData2 = []
|
|
this.tableData2 = []
|
|
- this.total = 0
|
|
|
|
}
|
|
}
|
|
this.loading = false
|
|
this.loading = false
|
|
}).catch(error=>{
|
|
}).catch(error=>{
|