|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div :style="{ top: showPositionTop + 'px', left: showPositionLeft + 'px' }">
|
|
|
<div style="display:flex;justify-content: space-between;align-items: center;">
|
|
|
- <div >
|
|
|
+ <div :style="{'visibility':this.taskId?'visible':'hidden'}">
|
|
|
<el-tooltip class="item" effect="dark" content="返回任务页面" placement="top-start">
|
|
|
<el-button type="primary" size="small" @click="goBack"> 返回 </el-button>
|
|
|
</el-tooltip>
|
|
@@ -219,6 +219,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ params:{},
|
|
|
imgList:[],
|
|
|
reportType:'',
|
|
|
patentStatus:{
|
|
@@ -328,6 +329,7 @@ export default {
|
|
|
created() {
|
|
|
},
|
|
|
mounted() {
|
|
|
+ this.params = this.$s.getSession('params')
|
|
|
window.selectMark = this.selectMark
|
|
|
this.signPatentNo = this.$s.getSession('params').signPatentNo
|
|
|
// console.log(this.$s.getSession('params'))
|
|
@@ -479,6 +481,7 @@ if(index!=-1){
|
|
|
type:this.type
|
|
|
}
|
|
|
})
|
|
|
+ this.$s.setSession('params',this.params)
|
|
|
window.open(router.href, '_blank');
|
|
|
},
|
|
|
|