diff --git a/src/api/basic/basicMaterial.js b/src/api/basic/basicMaterial.js index fa13c012..8ef9e7c4 100644 --- a/src/api/basic/basicMaterial.js +++ b/src/api/basic/basicMaterial.js @@ -1,6 +1,6 @@ import request from '@/axios'; -export const getList = (current, size, params) => { +export const getList = params => { return request({ url: '/api/logpm-basic/material/list', method: 'get', @@ -8,9 +8,18 @@ export const getList = (current, size, params) => { ...params, current, size, - } - }) -} + }, + }); +}; + +/** 获取物料列表 */ +export const getMaterialList = params => { + return request({ + url: '/api/logpm-basic/material/list', + method: 'get', + params, + }); +}; export const getListMaterial = (current, size, params) => { return request({ @@ -20,59 +29,57 @@ export const getListMaterial = (current, size, params) => { ...params, current, size, - } - }) -} + }, + }); +}; -export const materialList= (params) => { +export const materialList = params => { return request({ url: '/api/logpm-basic/material/materialList', method: 'get', - params - }) -} - + params, + }); +}; -export const $_getListMaterial = (params) => { +export const $_getListMaterial = params => { return request({ url: '/api/logpm-basic/material//findPidList', method: 'get', params, - }) -} -export const getDetail = (id) => { + }); +}; +export const getDetail = id => { return request({ url: '/api/logpm-basic/material/detail', method: 'get', params: { - id - } - }) -} + id, + }, + }); +}; -export const remove = (ids) => { +export const remove = ids => { return request({ url: '/api/logpm-basic/material/remove', method: 'post', params: { ids, - } - }) -} + }, + }); +}; -export const add = (row) => { +export const add = row => { return request({ url: '/api/logpm-basic/material/submit', method: 'post', - data: row - }) -} + data: row, + }); +}; -export const update = (row) => { +export const update = row => { return request({ url: '/api/logpm-basic/material/submit', method: 'post', - data: row - }) -} - + data: row, + }); +}; diff --git a/src/option/basic/basicMaterial1.js b/src/option/basic/basicMaterial1.js new file mode 100644 index 00000000..046b26db --- /dev/null +++ b/src/option/basic/basicMaterial1.js @@ -0,0 +1,354 @@ +/** 物料管理表头 */ +export const columnList = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + label: '产品编码', + prop: 'productCode', + width: '130', + type: 2, + values: '', + checkarr: [], + fixed: false, + sortable: true, + isTitleSearch: true, + }, + { + label: '物品sku', + prop: 'sku', + width: '130', + type: 2, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '计量单位', + prop: 'logpmUnit', + width: '130', + type: 3, + values: '', + checkarr: [], + fixed: false, + sortable: true, + isTitleSearch: true, + }, + { + label: '名称', + prop: 'name', + width: '130', + type: 2, + values: '', + checkarr: [], + fixed: false, + sortable: true, + isTitleSearch: true, + }, + { + label: '属性', + prop: 'property', + width: '130', + type: 'input', + type: 2, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '包装规格', + prop: 'packingSpecification', + type: 'input', + width: '130', + type: 2, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '包装数量', + prop: 'packageNum', + width: '130', + type: 1, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '包装材质', + prop: 'packagingMaterial', + width: '130', + type: 2, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '长', + prop: 'extent', + width: '130', + type: 1, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '宽', + prop: 'breadth', + width: '130', + type: 1, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '高度', + prop: 'altitude', + width: '130', + type: 1, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '体积', + prop: 'volume', + width: '130', + type: 1, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '重量', + prop: 'weight', + width: '130', + type: 1, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '备注', + prop: 'remark', + width: '130', + type: 2, + values: '', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: '', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + }, +]; + +/** 新增 | 编辑 物料字段 */ +export const formOptions = [ + { + label: '产品编码', + prop: 'productCode', + type: 'input', + rules: [ + { + required: true, + message: '请输入产品编码', + trigger: ['blur', 'change'], + }, + { + pattern: /^[a-zA-Z0-9]{1,50}$/, + message: '产品编码只能包含字母和数字,长度不能超过50位', + trigger: ['blur', 'change'], + }, + ], + overHidden: true, + }, + { + label: '物品sku', + prop: 'sku', + type: 'input', + rules: [ + { + required: true, + message: '请输入物品sku', + trigger: ['blur', 'change'], + }, + { + pattern: /^[a-zA-Z0-9]{1,50}$/, + message: '物品sku只能包含字母和数字,长度不能超过50位', + trigger: ['blur', 'change'], + }, + ], + overHidden: true, + }, + { + label: '计量单位', + prop: 'logpmUnit', + type: 'select', + rules: [ + { + required: true, + message: '请选择计量单位', + trigger: ['blur', 'change'], + }, + ], + checkarr: [], + }, + { + label: '名称', + prop: 'name', + type: 'input', + rules: [ + { + required: true, + message: '请输入名称', + trigger: ['blur', 'change'], + }, + ], + overHidden: true, + }, + { + label: '属性', + prop: 'property', + rules: [ + { + required: true, + message: '请输入属性', + trigger: ['blur', 'change'], + }, + ], + type: 'input', + }, + { + label: '包装规格', + prop: 'packingSpecification', + type: 'input', + rules: [ + { + required: true, + message: '请输入包装规格', + trigger: ['blur', 'change'], + }, + ], + }, + { + label: '包装数量', + prop: 'packageNum', + type: 'number', + min: 0, + precision: 0, + max: 100000, + controls: false, + rules: [ + { + required: true, + message: '请输入包装数量', + trigger: ['blur', 'change'], + }, + ], + }, + { + label: '包装材质', + prop: 'packagingMaterial', + type: 'input', + rules: [ + { + required: true, + message: '请输入包装材质', + trigger: ['blur', 'change'], + }, + ], + }, + { + label: '长', + prop: 'extent', + type: 'input', + overHidden: true, + rules: [ + { + required: true, + message: '请输入长度', + trigger: ['blur', 'change'], + }, + ], + }, + { + label: '宽', + prop: 'breadth', + type: 'input', + rules: [ + { + required: true, + message: '请输入宽度', + trigger: ['blur', 'change'], + }, + ], + overHidden: true, + }, + { + label: '高度', + prop: 'altitude', + type: 'input', + rules: [ + { + required: true, + message: '请输入高度', + trigger: ['blur', 'change'], + }, + ], + overHidden: true, + }, + { + label: '体积', + prop: 'volume', + type: 'input', + rules: [ + { + required: true, + message: '请输入体积', + trigger: ['blur', 'change'], + }, + ], + overHidden: true, + }, + { + label: '重量', + prop: 'weight', + type: 'input', + }, + { + label: '备注', + prop: 'remark', + type: 'input', + }, +]; + +export default columnList; diff --git a/src/option/distribution/VehicleArrivalManagement.js b/src/option/distribution/VehicleArrivalManagement.js index a247324b..df08a80d 100644 --- a/src/option/distribution/VehicleArrivalManagement.js +++ b/src/option/distribution/VehicleArrivalManagement.js @@ -16,7 +16,7 @@ export const columnList = [ }, { prop: 'carsNo', - label: '批次号', + label: '车次号', type: 13, values: '', width: '150', diff --git a/src/option/distribution/VehicleStowage.js b/src/option/distribution/VehicleStowage.js index d8206c88..4b30abb8 100644 --- a/src/option/distribution/VehicleStowage.js +++ b/src/option/distribution/VehicleStowage.js @@ -16,7 +16,7 @@ export const columnList = [ }, { prop: 'carsNo', - label: '批次号', + label: '车次号', type: 13, values: '', width: '150', diff --git a/src/views/basic/material/basicMaterial2.vue b/src/views/basic/material/basicMaterial2.vue new file mode 100644 index 00000000..9920a1a4 --- /dev/null +++ b/src/views/basic/material/basicMaterial2.vue @@ -0,0 +1,646 @@ + + + + + diff --git a/src/views/basicdata/driverArtery/basicdataDriverArtery.vue b/src/views/basicdata/driverArtery/basicdataDriverArtery.vue index 6514cb5c..658e80b4 100644 --- a/src/views/basicdata/driverArtery/basicdataDriverArtery.vue +++ b/src/views/basicdata/driverArtery/basicdataDriverArtery.vue @@ -3,14 +3,19 @@
- -
- + + - + -
-
- + 搜 索 清 空 - -
- +
@@ -669,16 +670,16 @@ export default { :deep(.header_search .el-date-editor.el-input__wrapper) { height: 100% !important; } -.header_search{ +.header_search { display: flex; flex-wrap: wrap; - .header_search_left{ - display: flex; - flex: 1; -} -.header_search_right{ -width: auto; -} + .header_search_left { + display: flex; + flex: 1; + } + .header_search_right { + width: auto; + } } // 标题 @@ -687,4 +688,8 @@ width: auto; font-weight: bold; color: var(--el-color-primary); } + +:deep(.el-input-number) { + width: 100%; +} diff --git a/src/views/distribution/artery/VehicleArrivalManagement.vue b/src/views/distribution/artery/VehicleArrivalManagement.vue index c69cfbd8..f266370b 100644 --- a/src/views/distribution/artery/VehicleArrivalManagement.vue +++ b/src/views/distribution/artery/VehicleArrivalManagement.vue @@ -199,15 +199,13 @@ :isselectfun="CanOperate" :tableRowClassName=" (row, rowIndex) => { - console.log('row :>> ', row); - console.log('rowIndex :>> ', rowIndex); if (rowIndex === 0) return 'denger'; else return ''; } " >