转岗管理问题修改

dev-scheduling
zhangdi 3 months ago
parent 284aa1f121
commit 9269db7634
  1. 5
      src/views/workLicense/personnelEquipment.vue
  2. 24
      src/views/workLicense/workLicense.vue

@ -36,6 +36,9 @@
<template #dataBirth="scope">
{{ scope.row.dataBirth ?scope.row.dataBirth.substring(0, 10) : ''}}
</template>
<template #validityPeriodExpire="scope">
{{ scope.row.validityPeriodExpire ?scope.row.validityPeriodExpire.substring(0, 10) : ''}}
</template>
</avue-crud>
<!-- 设备维护 -->
@ -273,7 +276,7 @@ export default {
},
{
label: '设备到期日期',
prop: 'deviceDueDate',
prop: 'validityPeriodExpire',
span: 24,
width: 150,
labelWidth: 140,

@ -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: '宇航到期日期',

Loading…
Cancel
Save