截止‘运力管理’模块

This commit is contained in:
2026-07-20 11:26:51 +08:00
parent e66b4a3680
commit c6dffb5d97
98 changed files with 19429 additions and 176 deletions

View File

@@ -0,0 +1,113 @@
export const option = {
height: 'auto',
calcHeight: 32,
tip: false,
searchShow: true,
searchMenuSpan: 6,
border: true,
index: true,
selection: true,
addBtn: false,
editBtn: false,
delBtn: false,
viewBtn: false,
menuWidth: 180,
dialogClickModal: false,
column: [
{
label: '车牌号',
prop: 'plateNo',
search: true,
slot: true,
width: 120,
},
{
label: '所属组织',
prop: 'organizationName',
search: true,
width: 150,
},
{
label: '车辆类型',
prop: 'vehicleType',
search: true,
type: 'select',
dicData: [
{ label: '厢式', value: '厢式' },
{ label: '高栏', value: '高栏' },
{ label: '平板', value: '平板' },
{ label: '仓栅', value: '仓栅' },
{ label: '牵引车', value: '牵引车' },
],
width: 110,
align: 'center',
},
{
label: '业务关系',
prop: 'businessRelation',
search: true,
type: 'select',
dicData: [
{ label: '自有', value: '自有' },
{ label: '业务合作', value: '业务合作' },
{ label: '管理挂靠', value: '管理挂靠' },
],
width: 120,
align: 'center',
},
{
label: '能源类型',
prop: 'energyType',
search: true,
type: 'select',
dicData: [
{ label: '柴油', value: '柴油' },
{ label: '汽油', value: '汽油' },
{ label: '新能源', value: '新能源' },
{ label: '天然气', value: '天然气' },
],
width: 110,
align: 'center',
},
{
label: '核定载质量(KG)',
prop: 'approvedLoadKg',
width: 140,
align: 'right',
},
{
label: '状态',
prop: 'status',
search: true,
type: 'select',
slot: true,
dicData: [
{ label: '启用', value: 1 },
{ label: '停用', value: 2 },
],
width: 90,
align: 'center',
},
{
label: '行驶证有效期',
prop: 'drivingLicenseEndDate',
slot: true,
width: 140,
align: 'center',
},
{
label: '道路运输证有效期',
prop: 'roadTransportCertEndDate',
slot: true,
width: 160,
align: 'center',
},
{
label: '年审有效期',
prop: 'annualReviewEndDate',
slot: true,
width: 130,
align: 'center',
},
],
};