|
|
@@ -155,7 +155,7 @@
|
|
|
<el-table-column prop="dockingPerson" label="对接人" width="100"></el-table-column>
|
|
|
<el-table-column label="操作" width="120" fixed="right">
|
|
|
<template #default="scope">
|
|
|
- <el-button link type="primary">编辑</el-button>
|
|
|
+ <el-button link type="primary" @click="toEdit(scope.row)">编辑</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
@@ -308,7 +308,7 @@
|
|
|
<el-table-column prop="a" label="对接人" width="100"></el-table-column>
|
|
|
<el-table-column label="操作" width="120" fixed="right">
|
|
|
<template #default="scope">
|
|
|
- <el-button link type="primary">编辑</el-button>
|
|
|
+ <el-button link type="primary" @click="toEdit(scope.row)">编辑</el-button>
|
|
|
<el-dropdown class="width-100" trigger="click" placement="bottom" @command="dropdownCommand">
|
|
|
<el-button class="radius-2px width-100">
|
|
|
更多 <el-icon>
|
|
|
@@ -825,7 +825,16 @@ const initDept = () => {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
-
|
|
|
+// 编辑
|
|
|
+const toEdit = (row: any) => {
|
|
|
+ console.log(row)
|
|
|
+ myRouter.push({
|
|
|
+ path: '/insurancePolicy/order/insurancePolicyOrderDetail',
|
|
|
+ query: {
|
|
|
+ orderNo: row.orderNo
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
// 车险列表
|
|
|
const getPlatFormReceivableList = () => {
|
|
|
|