|
@@ -1,9 +1,9 @@
|
|
|
<template>
|
|
|
<div style="top:0px;left:0px;">
|
|
|
<div style="display:flex;justify-content: space-between;align-items: center;">
|
|
|
- <div :style="{visibility: !coordinationA?'visible':'hidden'}">
|
|
|
+ <div :style="{visibility: !coordinationA&&!isShow1?'visible':'hidden'}" >
|
|
|
<el-tooltip class="item" effect="dark" content="返回任务页面" placement="top-start">
|
|
|
- <el-button type="primary" size="small" @click="goBack"> 返回 </el-button>
|
|
|
+ <el-button type="primary" size="small" @click="goBack" > 返回 </el-button>
|
|
|
</el-tooltip>
|
|
|
</div>
|
|
|
<div style="background:white;display:flex; justify-content:flex-end;align-items: center;height: 50px;">
|
|
@@ -11,13 +11,13 @@
|
|
|
style="cursor: pointer" @click="changeStatus(patentStatus2)">{{ patentStatus[patentStatus2] }}</el-tag> -->
|
|
|
<!-- <el-button type="primary" size="small" @click="checkResult" style="margin-top:20px;margin-right:10px;height:32px;"> 查看结果 </el-button> -->
|
|
|
<el-button v-if="reportType==4 && !taskId" @click="taskWork" type="primary" size="small" style="height: 32px;"> 协同办公 </el-button>
|
|
|
- <el-popover placement="bottom" title="关键词高亮" width="320" trigger="click" style="margin-left: 20px;">
|
|
|
+ <!-- <el-popover placement="bottom" title="关键词高亮" width="320" trigger="click" style="margin-left: 20px;">
|
|
|
<patent-keywords-highlight :project-id="projectId" />
|
|
|
<el-button slot="reference" size="small" type="primary"
|
|
|
class="margin-right_10">
|
|
|
高亮<i class="el-icon-arrow-down el-icon--right"></i>
|
|
|
</el-button>
|
|
|
- </el-popover>
|
|
|
+ </el-popover> -->
|
|
|
<el-switch v-model="value"
|
|
|
inactive-text="查看详情" active-color="#00BFFF" inactive-color="#D3D3D3">
|
|
|
</el-switch>
|
|
@@ -163,7 +163,7 @@ import ProductMessage from './ProductMessage.vue'
|
|
|
|
|
|
export default {
|
|
|
mixins: [patentKeywordsHighlight, changeTranslation],
|
|
|
- props: ['patentNo', 'taskId1', 'location', "taskWorkRemak",'state',"reportId1","coordination",],
|
|
|
+ props: ['patentNo', 'taskId1', 'location', "taskWorkRemak",'state',"reportId1","coordination",'isShow'],
|
|
|
components: {
|
|
|
PatentFeatures,
|
|
|
PatentMessage,
|
|
@@ -191,6 +191,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ isShow1:this.isShow,
|
|
|
isEdit:true,
|
|
|
row:{},
|
|
|
showProduct:false,
|
|
@@ -328,7 +329,7 @@ export default {
|
|
|
// this.reportId = this.$s.getSession('params').reportId
|
|
|
},
|
|
|
mounted() {
|
|
|
- console.log(this.location, this.reportType, this.state,this.taskWorkRemakA);
|
|
|
+ console.log(this.location, this.reportType, this.isShow,this.taskWorkRemakA);
|
|
|
this.getPatent(this.patentNo)
|
|
|
console.log(this.reportId, this.$s.getSession('params'));
|
|
|
},
|