|
@@ -201,7 +201,8 @@ export default {
|
|
|
},
|
|
|
// 查看(确认)结果
|
|
|
taskWorkRemakBtn(ev,row) {
|
|
|
- //console.log(ev, row);
|
|
|
+ // console.log(ev, row);
|
|
|
+
|
|
|
if (ev == 1) {
|
|
|
if (row.reportType==4) {
|
|
|
let queryParams = {
|
|
@@ -217,15 +218,17 @@ export default {
|
|
|
this.$api.reTaskPatents(queryParams).then(res => {
|
|
|
//console.log(res);
|
|
|
if (res.code == 200) {
|
|
|
- var b = {
|
|
|
- taskId:row.id,
|
|
|
- type:row.type,
|
|
|
- reportId:row.reportId,
|
|
|
- patentNo:res.data.records[0].patentNo,
|
|
|
- reportType : row.reportType,
|
|
|
- reportStatus: "",
|
|
|
- }
|
|
|
- this.$s.setSession('params',b)
|
|
|
+ // var b = {
|
|
|
+ // taskId:row.id,
|
|
|
+ // type:row.type,
|
|
|
+ // reportId:row.reportId,
|
|
|
+ // patentNo:res.data.records[0].patentNo,
|
|
|
+ // reportType : row.reportType,
|
|
|
+ // reportStatus: "",
|
|
|
+ // }
|
|
|
+ row.patentNo = res.data.records[0].patentNo
|
|
|
+ row.taskId = row.id
|
|
|
+ this.$s.setSession('params',row)
|
|
|
let a = this.$router.resolve({
|
|
|
path: '/FTOContrast/' + res.data.records[0].id,
|
|
|
query: {
|
|
@@ -243,6 +246,7 @@ export default {
|
|
|
path: '/Incomplete',
|
|
|
query: {
|
|
|
taskId: row.id,
|
|
|
+ reportName:row.reportName,
|
|
|
reportId: row.reportId,
|
|
|
type: row.type,
|
|
|
taskWorkRemak:0,
|
|
@@ -253,6 +257,7 @@ export default {
|
|
|
// path: '/Incomplete'+`taskId=470&reportId=350&type=3&reportType=${}`,
|
|
|
// path: '/customer_review',
|
|
|
})
|
|
|
+ this.$s.setSession('params',row)
|
|
|
window.open(a.href, "_blank")
|
|
|
}
|
|
|
|