diff --git a/src/api/basicdata/basicdataVehicleInfo.js b/src/api/basicdata/basicdataVehicleInfo.js new file mode 100644 index 00000000..69f38048 --- /dev/null +++ b/src/api/basicdata/basicdataVehicleInfo.js @@ -0,0 +1,19 @@ +import request from '@/axios'; + +/** 车辆类型list */ +export const getList = params => { + return request({ + url: '/api/logpm-basic/carModel/list', + method: 'get', + params, + }); +}; + +/** 保存 */ +export const postSave = data => { + return request({ + url: '/api/logpm-basic/carModel/save', + method: 'post', + data, + }); +}; diff --git a/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue b/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue index cff83b7b..ff2e89eb 100644 --- a/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue +++ b/src/components/ArteryPrintTemplate/ArteryPrintTemplate.vue @@ -10,7 +10,7 @@ 暂无图片 干 线 装 载 清 单 - +
{{ renderInfo.carsNo }}
@@ -23,16 +23,16 @@ '' }} - + 目的站:{{ renderInfo.endWarehouseNames.slice(-1)[0] }} 司机:{{ renderInfo.assistantName || '' }} - 司机联系电话:{{ renderInfo.assistantMobile || '' }} + 司机电话:{{ renderInfo.assistantMobile || '' }} 车牌号:{{ renderInfo.carNumber || '' }} 卸车完成时间: {{ renderInfo.unloadDate || '年 月 日' }} - 卸车人员签字 + 卸车人员签字 序号 @@ -48,7 +48,7 @@ 计划件数 货位 装车产品明细 - 合计件数 + 卸车件数 卸车网点 卸车时间 @@ -92,7 +92,7 @@ {{ value.smallTotal }} - {{ value.smallTotal }} + {{ value.unloadNum }} @@ -110,9 +110,9 @@ {{ totalPlanNum }} - - {{ totalNum }} + + {{ totalUnLoadNum }} @@ -120,7 +120,7 @@ - + 投诉电话:4000184668 营业部电话:4000184668 系统单调度:4000184668 diff --git a/src/option/basicdata/basicdataVehicleInfo.js b/src/option/basicdata/basicdataVehicleInfo.js new file mode 100644 index 00000000..58673a1a --- /dev/null +++ b/src/option/basicdata/basicdataVehicleInfo.js @@ -0,0 +1,88 @@ +export const columnList = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'vehicleModelName', + label: '车辆类型', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'vehicleCommander', + label: '车长(M)', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'vehicleHeight', + label: '外廓高', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'approvedVolume', + label: '核定体积', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'vehicleQuality', + label: '车辆总质量(T)', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'curbWeight', + label: '整备质量(T)', + type: 2, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: '', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: true, + }, +]; diff --git a/src/option/distribution/addVehicleStowage.js b/src/option/distribution/addVehicleStowage.js index 52bf3da0..85809b9c 100644 --- a/src/option/distribution/addVehicleStowage.js +++ b/src/option/distribution/addVehicleStowage.js @@ -604,6 +604,16 @@ export const newColumnList = [ fixed: false, sortable: true, }, + { + prop: 'warehouseEntryTimeEnd', + label: '入库时间', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'remark', label: '运单备注', diff --git a/src/views/basicdata/brand/basicClient.vue b/src/views/basicdata/brand/basicClient.vue index b3c026de..a3d8e421 100644 --- a/src/views/basicdata/brand/basicClient.vue +++ b/src/views/basicdata/brand/basicClient.vue @@ -521,7 +521,7 @@ - + @@ -928,7 +928,7 @@ export default { { prop: 'clientName', label: '客户名称', - type: 2, + type: 1, values: '', width: '150', checkarr: [], @@ -939,7 +939,7 @@ export default { { prop: 'operator', label: '操作人', - type: 2, + type: 1, values: '', width: '150', checkarr: [], @@ -950,7 +950,7 @@ export default { { prop: 'content', label: '操作描述', - type: 2, + type: 1, values: '', width: '500', checkarr: [], @@ -961,7 +961,7 @@ export default { { prop: 'createTime', label: '操作时间', - type: 2, + type: 1, values: '', width: '150', checkarr: [], @@ -1181,14 +1181,14 @@ export default { const { code, data } = res.data; if (code !== 200) return; - this.logData = data; + this.logData = data || []; // this.openAcountform.name = row.linkman; // this.openAcountform.phone = row.phone; // this.openAcountStatus = true; this.popUpShow.logVisted = true; await this.$nextTick(); - console.log(this.$refs.tableLogNode.$el); + setNodeHeight(this.$refs.tableLogNode.$el, '50vh'); // getClientLogList } catch (error) { console.log('error :>> ', error); diff --git a/src/views/basicdata/vehicle/basicdataVehicleInfo.vue b/src/views/basicdata/vehicle/basicdataVehicleInfo.vue new file mode 100644 index 00000000..85345664 --- /dev/null +++ b/src/views/basicdata/vehicle/basicdataVehicleInfo.vue @@ -0,0 +1,474 @@ + + + + + diff --git a/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation copy.vue b/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation copy.vue new file mode 100644 index 00000000..41bb13b4 --- /dev/null +++ b/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation copy.vue @@ -0,0 +1,377 @@ + + + + + diff --git a/src/views/distribution/artery/AddVehicleStowage.vue b/src/views/distribution/artery/AddVehicleStowage.vue index be6c22f2..c27b03ae 100644 --- a/src/views/distribution/artery/AddVehicleStowage.vue +++ b/src/views/distribution/artery/AddVehicleStowage.vue @@ -336,7 +336,7 @@ -->