|
|
|
|
@ -50,6 +50,9 @@ |
|
|
|
|
<template #astronautDateExpire="scope"> |
|
|
|
|
{{ scope.row.astronautDateExpire ? scope.row.astronautDateExpire.substring(0, 10) : '' }} |
|
|
|
|
</template> |
|
|
|
|
<template #astronautValidityPeriod="scope"> |
|
|
|
|
{{ scope.row.astronautValidityPeriod ? scope.row.astronautValidityPeriod.substring(0, 10) : '' }} |
|
|
|
|
</template> |
|
|
|
|
</avue-crud> |
|
|
|
|
<!-- 证书维护 --> |
|
|
|
|
<maintain-dialog |
|
|
|
|
@ -242,7 +245,7 @@ export default { |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '上岗证日期', |
|
|
|
|
label: '证件日期', |
|
|
|
|
prop: 'certificateDate', |
|
|
|
|
span: 24, |
|
|
|
|
width: 150, |
|
|
|
|
@ -257,7 +260,7 @@ export default { |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '上岗证有效期(年)', |
|
|
|
|
label: '证件有效期(年)', |
|
|
|
|
prop: 'validityPeriod', |
|
|
|
|
span: 24, |
|
|
|
|
width: 150, |
|
|
|
|
@ -272,7 +275,7 @@ export default { |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '到期日期', |
|
|
|
|
label: '证件到期日期', |
|
|
|
|
prop: 'conExpDate', |
|
|
|
|
span: 24, |
|
|
|
|
width: 150, |
|
|
|
|
@ -346,6 +349,21 @@ export default { |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '宇航有效期(年)', |
|
|
|
|
prop: 'astronautValidityPeriod', |
|
|
|
|
span: 24, |
|
|
|
|
width: 150, |
|
|
|
|
overflow: true, |
|
|
|
|
search: false, |
|
|
|
|
rules: [ |
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: '请输入宇航有效期(年)', |
|
|
|
|
trigger: 'blur', |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
label: '宇航到期日期', |
|
|
|
|
|