|
|
@@ -29,7 +29,7 @@
|
|
|
<el-table-column
|
|
|
align="center"
|
|
|
prop="expiryAt"
|
|
|
- label="有效期"
|
|
|
+ label="适任证书有效期"
|
|
|
min-width="120"
|
|
|
>
|
|
|
<template v-slot="scope">
|
|
|
@@ -39,7 +39,9 @@
|
|
|
<el-table-column align="center" label="详情" min-width="120">
|
|
|
<template #default="scope">
|
|
|
<div class="df aic jcc">
|
|
|
- <el-button type="primary">查看详情</el-button>
|
|
|
+ <el-button type="primary" @click="shipOwnerDetail(scope.row.id)">
|
|
|
+ 查看详情
|
|
|
+ </el-button>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
@@ -301,6 +303,15 @@ async function auditAbnormalShip(mediaId) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+async function shipOwnerDetail(shipOwnerId) {
|
|
|
+ router.push({
|
|
|
+ path: "/shipOwnerManage/shipOwnerDetail",
|
|
|
+ query: {
|
|
|
+ shipOwnerId,
|
|
|
+ },
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
async function deleteCrew(shipCrewId) {
|
|
|
ElMessageBox.confirm("是否删除该船员信息?", "提示", {
|
|
|
confirmButtonText: "确定",
|