|
|
|
@ -19,8 +19,8 @@ |
|
|
|
> |
|
|
|
> |
|
|
|
<!-- :span-method="spanMethod" --> |
|
|
|
<!-- :span-method="spanMethod" --> |
|
|
|
<template #menu-left> |
|
|
|
<template #menu-left> |
|
|
|
<el-button type="danger" @click="handleDeletes">批量删除</el-button> |
|
|
|
|
|
|
|
<el-button type="primary" @click="handleMaintain">证书维护</el-button> |
|
|
|
<el-button type="primary" @click="handleMaintain">证书维护</el-button> |
|
|
|
|
|
|
|
<el-button type="danger" @click="handleDeletes">批量删除</el-button> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<template #menu-right> |
|
|
|
<template #menu-right> |
|
|
|
<el-button type="primary" @click="handleImport">导 入</el-button> |
|
|
|
<el-button type="primary" @click="handleImport">导 入</el-button> |
|
|
|
@ -42,7 +42,11 @@ |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<template #airworthinessDateExpire="scope"> |
|
|
|
<template #airworthinessDateExpire="scope"> |
|
|
|
{{ scope.row.airworthinessDateExpire ? scope.row.airworthinessDateExpire.substring(0, 10) : '' }} |
|
|
|
{{ |
|
|
|
|
|
|
|
scope.row.airworthinessDateExpire |
|
|
|
|
|
|
|
? scope.row.airworthinessDateExpire.substring(0, 10) |
|
|
|
|
|
|
|
: '' |
|
|
|
|
|
|
|
}} |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<template #astronautDate="scope"> |
|
|
|
<template #astronautDate="scope"> |
|
|
|
{{ scope.row.astronautDate ? scope.row.astronautDate.substring(0, 10) : '' }} |
|
|
|
{{ scope.row.astronautDate ? scope.row.astronautDate.substring(0, 10) : '' }} |
|
|
|
@ -51,7 +55,11 @@ |
|
|
|
{{ scope.row.astronautDateExpire ? scope.row.astronautDateExpire.substring(0, 10) : '' }} |
|
|
|
{{ scope.row.astronautDateExpire ? scope.row.astronautDateExpire.substring(0, 10) : '' }} |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<template #astronautValidityPeriod="scope"> |
|
|
|
<template #astronautValidityPeriod="scope"> |
|
|
|
{{ scope.row.astronautValidityPeriod ? scope.row.astronautValidityPeriod.substring(0, 10) : '' }} |
|
|
|
{{ |
|
|
|
|
|
|
|
scope.row.astronautValidityPeriod |
|
|
|
|
|
|
|
? scope.row.astronautValidityPeriod.substring(0, 10) |
|
|
|
|
|
|
|
: '' |
|
|
|
|
|
|
|
}} |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</avue-crud> |
|
|
|
</avue-crud> |
|
|
|
<!-- 证书维护 --> |
|
|
|
<!-- 证书维护 --> |
|
|
|
|