|
|
@@ -162,6 +162,7 @@
|
|
|
<el-table-column label="操作" width="200" align="center" fixed="right">
|
|
|
<template #default="scope">
|
|
|
<el-button link type="primary" @click="handleDetail(scope.row)">删除</el-button>
|
|
|
+ <el-button link type="primary" @click="handleAssociateInvoice(scope.row)">关联发票</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
@@ -768,6 +769,14 @@ const handleDetail = (type) => {
|
|
|
.catch(() => {
|
|
|
})
|
|
|
}
|
|
|
+const handleAssociateInvoice = (row) => {
|
|
|
+ router.push({
|
|
|
+ path: '/receivable/private/invoiceRecord',
|
|
|
+ query: {
|
|
|
+ invoiceId: row.invoiceId
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
const handleOrderDetail = (type: any) => {
|
|
|
router.push({
|
|
|
path: '/insurancePolicy/order/insurancePolicyOrderDetail',
|