|
|
@@ -115,7 +115,7 @@
|
|
|
<el-table-column label="操作" min-width="80" align="center">
|
|
|
<template v-slot="scope">
|
|
|
<el-button
|
|
|
- @click="shipOwnerDetail(scope.row.userId, tableData)"
|
|
|
+ @click="shipOwnerDetail(scope.row.id, tableData)"
|
|
|
link
|
|
|
type="primary"
|
|
|
size="small"
|
|
|
@@ -643,11 +643,11 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- function shipOwnerDetail(userId) {
|
|
|
+ function shipOwnerDetail(shipOwnerId) {
|
|
|
router.push({
|
|
|
path: "/shipOwnerManage/shipOwnerDetail",
|
|
|
query: {
|
|
|
- userId,
|
|
|
+ shipOwnerId,
|
|
|
},
|
|
|
});
|
|
|
}
|