From 29692b6c32c8c9d3f5070b810b68bf6bdd07343c Mon Sep 17 00:00:00 2001
From: qb <1191961160@qq.com>
Date: Fri, 18 Oct 2024 22:02:05 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/basic/basicMaterial.js | 73 +-
src/option/basic/basicMaterial1.js | 354 ++++++++++
.../distribution/VehicleArrivalManagement.js | 2 +-
src/option/distribution/VehicleStowage.js | 2 +-
src/views/basic/material/basicMaterial2.vue | 646 ++++++++++++++++++
.../driverArtery/basicdataDriverArtery.vue | 41 +-
.../artery/VehicleArrivalManagement.vue | 25 +-
.../distribution/artery/VehicleStowage.vue | 31 +-
.../artery/truckLoadingDetails.vue | 4 +-
.../distribution/inventory/BookingNote.vue | 3 +-
src/views/waybill/WaybillOrderList.vue | 4 +-
11 files changed, 1120 insertions(+), 65 deletions(-)
create mode 100644 src/option/basic/basicMaterial1.js
create mode 100644 src/views/basic/material/basicMaterial2.vue
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 @@
+
+