|
@@ -22,7 +22,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
<el-input type="textarea" autosize v-model="scope.row.content" v-if="isEdit" @blur="changeClaimOptionType($event,scope.row)"></el-input>
|
|
|
- <span v-else v-html="scope.row.content"></span>
|
|
|
+ <span :class="getClaimDel(scope.row)?'del':''" v-else v-html="scope.row.content"></span>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -136,6 +136,17 @@ export default {
|
|
|
this.getList()
|
|
|
},
|
|
|
methods: {
|
|
|
+ //是否有删除权要
|
|
|
+ getClaimDel(row){
|
|
|
+ if(row.patentClaimHistoryList){
|
|
|
+ return row.patentClaimHistoryList.find(item=>{
|
|
|
+ return item.operateType == 1
|
|
|
+ })
|
|
|
+ }else{
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
//导入数据
|
|
|
refreshData(){
|
|
|
this.$confirm('重置权利要求', '提示', {
|