diff --git a/src/api/basicdata/basicdataVehicle.js b/src/api/basicdata/basicdataVehicle.js index 2f2cdde7..3e19fb54 100644 --- a/src/api/basicdata/basicdataVehicle.js +++ b/src/api/basicdata/basicdataVehicle.js @@ -11,15 +11,13 @@ export const getList = (current, size, params) => { }, }); }; -export const getPage = (current, size, params) => { + +/** 获取车辆列表 */ +export const getPage = params => { return request({ url: '/api/logpm-basicdata/vehicle/page', method: 'get', - params: { - ...params, - current, - size, - }, + params, }); }; export const getVehicle = () => { diff --git a/src/option/basicdata/basicdataVehicle2.js b/src/option/basicdata/basicdataVehicle2.js index 62a85adc..981a55dd 100644 --- a/src/option/basicdata/basicdataVehicle2.js +++ b/src/option/basicdata/basicdataVehicle2.js @@ -1,342 +1,474 @@ -export default { - expand: false, - index: true, - border: true, - selection: true, - column: [ - { - label: "主键", - prop: "id", - display: false, - hide: true, - }, - { - label: "租户号", - prop: "tenantId", - display: false, - hide: true, - }, - { - label: "创建人", - prop: "createUser", - display: false, - hide: true, - }, - { - label: "创建时间", - prop: "createTime", - display: false, - hide: true, - }, - { - label: "更新人", - prop: "updateUser", - display: false, - hide: true, - }, - { - label: "更新时间", - prop: "updateTime", - display: false, - hide: true, - }, - { - label: "状态", - prop: "status", - display: false, - hide: true, - }, - { - label: "是否已删除;1-未删除,2-已删除", - prop: "isDeleted", - display: false, - hide: true, - }, - { - label: "创建部门", - prop: "createDept", - display: false, - hide: true, - }, - { - label: "车牌号", - prop: "vehicleNub", - search: true, - width:"100px" - }, - { - label: "车辆来源", - prop: "vehicleSource", - search: true, - width:"100px" - }, - { - label: "是否车头", - prop: "isHead", - width:"100px" - }, - { - label: "挂车类型", - prop: "trailerType", - search: true, - width:"100px" - }, - { - label: "车辆类型", - prop: "vehicleModel", - search: true, - width:"100px" - }, - { - label: "车厢类型", - prop: "carType", - width:"100px" - }, - { - label: "车长(M)", - prop: "vehicleCommander", - width:"100px" - }, - { - label: "外廓高(M)", - prop: "vehicleHeight", - width:"100px" - }, - { - label: "付款方式", - prop: "paymentMethod", - search: true, - width:"100px" - }, - { - label: "核定体积", - prop: "approvedVolume", - width:"100px" - }, - { - label: "车牌颜色", - prop: "licensePlateColor", - width:"100px" - }, - { - label: "车身颜色", - prop: "vehicleColor", - width:"100px" - }, - { - label: "能源类型", - prop: "energyType", - width:"100px" - }, - { - label: "车牌类型", - prop: "licensePlateType", - width:"100px" - }, - { - label: "备注", - prop: "notes", - width:"100px" - }, - { - label: "车辆所属人", - prop: "vehicleOwner", - width:"120px" - }, - { - label: "品牌型号", - prop: "vehicleBrand", - width:"100px" - }, - { - label: "车辆代号", - prop: "vehicleCode", - width:"100px" - }, - { - label: "发动机型号", - prop: "engineCode", - width:"120px" - }, - { - label: "车辆总质量(T)", - prop: "vehicleQuality", - width:"120px" - }, - { - label: "整备质量(T)", - prop: "curbWeight", - width:"120px" - }, - { - label: "载荷质量(T)", - prop: "loadMass", - width:"120px" - }, - { - label: "外廓宽(M)", - prop: "outerWidth", - width:"120px" - }, - { - label: "到期时间", - prop: "expirationTime", - format: "yyyy-MM-dd", - valueFormat: "yyyy-MM-dd", - width:"120px" - }, - { - label: "道路运输证号", - prop: "roadTransport", - width:"120px" - }, - { - label: "经营许可证号", - prop: "businessLicense", - width:"120px" - }, - { - label: "车辆所属单位", - prop: "vehicleUnit", - width:"120px" - }, - { - label: "车辆所属单位电话", - prop: "vehicleUnitPhone", - width:"180px" - }, - { - label: "车辆所属人手机号", - prop: "vehicleOwnerPhone", - width:"180px" - }, - { - label: "车辆所属人身份证号", - prop: "vehicleOwnerCard", - width:"180px" - }, - // { - // label: "行驶证正面照片", - // prop: "drivingLicensePhoto", - // }, - // { - // label: "行驶证照片反面", - // prop: "drivingLicensePhotoBack", - // }, - // { - // label: "许可证照片", - // prop: "licensePhoto", - // }, - // { - // label: "车辆照片(最新)", - // prop: "vehiclePhoto", - // }, - // { - // label: "车尾照片", - // prop: "vehicleRearPhoto", - // }, - // { - // label: "道路运输照片", - // prop: "roadTransportPhoto", - // }, - // { - // label: "人车合影照片", - // prop: "vehiclePeoplePhoto", - // }, - // { - // label: "保险卡照片", - // prop: "insuranceCardPhoto", - // }, - { - label: "承运商", - prop: "carrierId", - width:"100px" - }, - { - label: "车辆年审时间", - prop: "reviewTime", - format: "yyyy-MM-dd", - valueFormat: "yyyy-MM-dd", - width:"150px" - }, - { - label: "车辆年审有效期(月)", - prop: "reviewValidity", - width:"180px" - }, - { - label: "车辆保险开始时间", - prop: "insuranceStartTime", - format: "yyyy-MM-dd", - valueFormat: "yyyy-MM-dd", - width:"180px" - }, - { - label: "车辆保险结束时间", - prop: "insuranceEndTime", - format: "yyyy-MM-dd", - valueFormat: "yyyy-MM-dd", - width:"180px" - }, - { - label: "有无车身广告", - prop: "bodyAdvertising", - width:"180px" - }, - { - label: "车身广告跟新时间", - prop: "advertisementsNewTimes", - width:"180px" - }, - { - label: "车辆挂靠公司", - prop: "vehicleParkingCompany", - width:"120px" - }, - { - label: "是否有GPS", - prop: "withGps", - width:"100px" - }, - { - label: "GPS服务商", - prop: "gpsServiceProvider", - width:"100px" - }, - { - label: "GPS型号", - prop: "gpsModel", - width:"100px" - }, - { - label: "预留1", - prop: "reserve1", - display: false, - hide: true, - }, - { - label: "预留2", - prop: "reserve2", - display: false, - hide: true, - }, - { - label: "预留3", - prop: "reserve3", - display: false, - hide: true, - }, - { - label: "预留4", - prop: "reserve4", - display: false, - hide: true, - }, - { - label: "预留5", - prop: "reserve5", - display: false, - hide: true, - }, - ] -} +export default [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + label: '车牌号', + prop: 'vehicleNub', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆来源', + prop: 'vehicleSource', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '是否车头', + prop: 'isHead', + type: 1, + values: '', + width: '150', + checkarr: [ + { + label: '是', + value: '1', + }, + { + label: '否', + value: '0', + }, + ], + fixed: false, + sortable: true, + }, + { + label: '挂车类型', + prop: 'trailerType', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆类型', + prop: 'vehicleModel', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车厢类型', + prop: 'carType', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车长(M)', + prop: 'vehicleCommander', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '外廓高(M)', + prop: 'vehicleHeight', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '付款方式', + prop: 'paymentMethod', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '核定体积', + prop: 'approvedVolume', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车牌颜色', + prop: 'licensePlateColor', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车身颜色', + prop: 'vehicleColor', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '能源类型', + prop: 'energyType', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车牌类型', + prop: 'licensePlateType', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '备注', + prop: 'notes', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '品牌型号', + prop: 'vehicleBrand', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆代号', + prop: 'vehicleCode', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '发动机型号', + prop: 'engineCode', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆总质量(T)', + prop: 'vehicleQuality', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '整备质量(T)', + prop: 'curbWeight', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '载荷质量(T)', + prop: 'loadMass', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '外廓宽(M)', + prop: 'outerWidth', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '到期时间', + prop: 'expirationTime', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '道路运输证号', + prop: 'roadTransport', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '经营许可证号', + prop: 'businessLicense', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆所属单位', + prop: 'vehicleUnit', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆所属单位电话', + prop: 'vehicleUnitPhone', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆所属人手机号', + prop: 'vehicleOwnerPhone', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆所属人身份证号', + prop: 'vehicleOwnerCard', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '承运商', + prop: 'carrierId', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆年审时间', + prop: 'reviewTime', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆年审有效期', + prop: 'reviewValidity', + type: 1, + values: '', + width: '200', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆保险开始时间', + prop: 'insuranceStartTime', + type: 1, + values: '', + width: '200', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆保险结束时间', + prop: 'insuranceEndTime', + type: 1, + values: '', + width: '200', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '有无车身广告', + prop: 'bodyAdvertising', + type: 1, + values: '', + width: '150', + checkarr: [ + { + label: '是', + value: '1', + }, + { + label: '否', + value: '0', + }, + ], + fixed: false, + sortable: true, + }, + { + label: '车身广告更新时间', + prop: 'advertisementsNewTimes', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '是否有GPS', + prop: 'withGps', + type: 1, + values: '', + width: '150', + checkarr: [ + { + label: '是', + value: '1', + }, + { + label: '否', + value: '0', + }, + ], + fixed: false, + sortable: true, + }, + { + label: 'GPS服务商', + prop: 'gpsServiceProvider', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: 'GPS型号', + prop: 'gpsModel', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆照片(最新)', + prop: 'vehiclePhoto', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车尾照片', + prop: 'vehicleRearPhoto', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '车辆历史照片', + prop: 'historicPhotos', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '操作', + prop: '', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: true, + }, +]; diff --git a/src/router/views/index.js b/src/router/views/index.js index 71a97626..81ce9ac5 100644 --- a/src/router/views/index.js +++ b/src/router/views/index.js @@ -66,15 +66,15 @@ export default [ { path: '/basicdata', component: Layout, - redirect: '/basicdata/vehicle/basicdtaVehicleAddForm', + redirect: '/basicdata/vehicle/basicdataVehicleAddForm', children: [ { - path: 'vehicle/basicdtaVehicleAddForm', + path: 'vehicle/basicdataVehicleAddForm', name: '车辆添加', meta: { i18n: 'dict', }, - component: () => import('@/views/basicdata/vehicle/basicdtaVehicleAddForm.vue'), + component: () => import('@/views/basicdata/vehicle/basicdataVehicleAddForm.vue'), }, ], }, @@ -1524,7 +1524,6 @@ export default [ ], }, - { path: '/aftersales/DataSynchronization', component: Layout, diff --git a/src/views/basicdata/vehicle/basicdataVehicle.vue b/src/views/basicdata/vehicle/basicdataVehicle.vue index f883b5a4..6dff6377 100644 --- a/src/views/basicdata/vehicle/basicdataVehicle.vue +++ b/src/views/basicdata/vehicle/basicdataVehicle.vue @@ -1,84 +1,117 @@