1、大量页面调整

2、完善运力模块
3、完善规范、需求卡
This commit is contained in:
2026-07-31 01:32:41 +08:00
parent ccaca521d3
commit 81b2a3e99b
54 changed files with 5641 additions and 1965 deletions

View File

@@ -5,7 +5,7 @@ export const option = {
searchShow: true,
searchMenuSpan: 24,
searchIcon: true,
searchIndex: 8,
searchIndex: 4,
searchMenuPosition: 'right',
border: true,
index: true,
@@ -17,29 +17,49 @@ export const option = {
menuWidth: 210,
dialogClickModal: false,
column: [
{ label: '船舶名', prop: 'shipName', search: true, slot: true, width: 130 },
{ label: '船舶识别号', prop: 'shipIdentifierNo', search: true, width: 140 },
{ label: '所属组织', prop: 'organizationName', search: true, width: 160 },
{ label: '船检登记号', prop: 'shipInspectionNo', search: true, width: 130 },
{ label: '船舶名', prop: 'shipName', search: true, searchOrder: 5, slot: true, width: 130 },
{
label: '船舶识别号',
prop: 'shipIdentifierNo',
search: true,
searchOrder: 4,
width: 140,
},
{
label: '船检登记号',
prop: 'shipInspectionNo',
search: true,
searchOrder: 3,
width: 130,
},
{
label: '船舶类型',
prop: 'shipType',
search: true,
searchOrder: 2,
type: 'select',
dicData: [
{ label: '干货船', value: '干货船' },
{ label: '集装箱船', value: '集装箱船' },
{ label: '散货船', value: '散货船' },
{ label: '集装箱船', value: '集装箱船' },
{ label: '杂货船', value: '杂货船' },
{ label: '油船', value: '油船' },
{ label: '拖轮', value: '拖轮' },
],
width: 110,
align: 'center',
},
{
label: '所属组织',
prop: 'organizationName',
search: true,
searchOrder: 1,
type: 'select',
filterable: true,
dicData: [],
width: 160,
},
{
label: '状态',
prop: 'status',
search: true,
type: 'select',
slot: true,
dicData: [
@@ -49,7 +69,13 @@ export const option = {
width: 90,
align: 'center',
},
{ label: '国籍证有效期至', prop: 'nationalityCertEndDate', slot: true, width: 150, align: 'center' },
{
label: '国籍证有效期至',
prop: 'nationalityCertEndDate',
slot: true,
width: 150,
align: 'center',
},
{
label: '最低安全配员证书有效期至',
prop: 'safeManningCertEndDate',