修复业务模块bug

This commit is contained in:
2026-08-13 14:07:04 +08:00
parent 6554ad80dd
commit f62e36e846
15 changed files with 941 additions and 186 deletions
+15 -3
View File
@@ -15,8 +15,6 @@ const templateTypeOptions = [
export const config = {
title: '发货模板',
permission: 'shipping_template',
exportUrl: '/blade-transport/shipping-template/export-shipping-template',
exportName: '发货模板',
tableColumnOrder: [
'templateCode',
'templateName',
@@ -31,7 +29,7 @@ export const config = {
{ prop: 'templateCode', label: '模板编号' },
{ prop: 'templateName', label: '模板名称' },
{ prop: 'templateType', label: '模板类型' },
{ prop: 'transportType', label: '运输类型' },
{ prop: 'transportType', label: '运输方式' },
{ prop: 'createUserName', label: '创建人' },
{ prop: 'remark', label: '备注' },
{ prop: 'updateTime', label: '更新时间' },
@@ -173,6 +171,19 @@ export const option = {
rules: selectRule('运输方式'),
display: true,
},
{
label: '备注',
prop: 'basicRemark',
type: 'textarea',
minRows: 3,
span: 24,
order: 315,
minWidth: 180,
maxlength: 200,
showWordLimit: true,
rules: textRule('备注', 200),
display: true,
},
{
label: '',
prop: 'shippingInfoTitle',
@@ -259,4 +270,5 @@ export const option = {
])
),
dialogWidth: '96%',
dialogTop: '10px',
};