Commit c3dea809 by sunhaiwei

生产计划页面添加炉数字段

parent 7ec34d23
......@@ -150,6 +150,8 @@ export interface MesProductionPlanProductModel {
modifyDate: string;
modifyUserId: string;
ls: string;
}
/**
......
......@@ -801,6 +801,33 @@ export const formProps: FormProps = {
},
},
{
key: 'dd4d2ce6ada84bc4b7d27503bc0f5cd6',
title: '炉数',
dataIndex: 'ls',
componentType: 'InputNumber',
defaultValue: '',
componentProps: {
width: '100%',
span: '',
defaultValue: '',
min: 0,
max: 100,
step: 1,
maxlength: null,
disabled: false,
showLabel: true,
controls: true,
required: false,
subTotal: false,
isShow: true,
rules: [{ pattern: '/^[1-9]\\d*?$/', message: '请输入整数' }],
events: {},
placeholder: '请输入炉数',
tooltipConfig: { visible: false, title: '提示文本' },
listStyle: "return 'width:100%'",
},
},
{
key: '3b80cb19086e49e1a746cf9ace3f938e',
title: '质量/KG',
dataIndex: 'zl',
......
......@@ -274,6 +274,21 @@ export const permissionList = [
isSaveTable: false,
showChildren: false,
tableName: 'mesProductionPlanProductList',
fieldName: '炉数',
fieldId: 'ls',
type: 'InputNumber',
key: 'dd4d2ce6ada84bc4b7d27503bc0f5cd6',
children: [],
},
{
required: true,
view: true,
edit: true,
disabled: false,
isSubTable: false,
isSaveTable: false,
showChildren: false,
tableName: 'mesProductionPlanProductList',
fieldName: '质量/KG',
fieldId: 'zl',
type: 'InputNumber',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment