ソースを参照

被无效历史加上所属报告

zhuliu 1 年間 前
コミット
34776d2d25

+ 5 - 0
src/views/project/patentDetails/components/patentMessage/history/InvalidHistory.vue

@@ -14,6 +14,11 @@
                         <span>{{scope.row.invalidCaseNum}}</span>
                     </template>
                 </el-table-column>
+                <el-table-column label="所属报告" prop="reportName" align="center">
+                    <template slot-scope="scope">
+                        <el-link v-if="!scope.row.ifAdd" type="primary" @click="checkReport(scope.row.reportVO)">{{scope.row.reportVO.reportName || scope.row.reportVO.signPatentNo}}</el-link>
+                    </template>
+                </el-table-column>
                 <el-table-column label="无效请求人" prop="invalidApplicant" align="center">
                     <template slot-scope="scope">
                         <span>{{scope.row.invalidApplicant}}</span>

+ 12 - 0
src/views/project/patentDetails/components/patentMessage/history/mixins/index.js

@@ -54,5 +54,17 @@ export default{
                 this.save(row)
             })
         },
+        checkReport(row){
+            this.$router.push({
+                path: '/reportDetails',
+                query: {
+                  projectId: row.projectId,
+                  patentNo:row.signPatentNo,
+                  signPatentNo:row.signPatentNo,
+                  reportType: row.reportType,
+                  status:row.status,
+                }
+            })
+        },
     },
 }