sunhao 1 month ago
parent 606ccd2712
commit 8f475c7f73

@ -160,7 +160,7 @@ const HotCoolingSpeed = () => {
const headerButtons = () => ( const headerButtons = () => (
<Space size={8}> <Space size={8}>
<Button <Button
disabled // disabled
type="primary" type="primary"
size="small" size="small"
icon={<PlusCircleOutlined />} icon={<PlusCircleOutlined />}
@ -172,7 +172,7 @@ const HotCoolingSpeed = () => {
</Button> </Button>
<Button <Button
disabled // disabled
type="primary" type="primary"
size="small" size="small"
icon={<CopyTwoTone />} icon={<CopyTwoTone />}
@ -184,7 +184,7 @@ const HotCoolingSpeed = () => {
</Button> </Button>
<Button <Button
disabled // disabled
type="primary" type="primary"
size="small" size="small"
icon={<FormOutlined />} icon={<FormOutlined />}
@ -196,7 +196,7 @@ const HotCoolingSpeed = () => {
</Button> </Button>
<Button <Button
disabled // disabled
danger danger
size="small" size="small"
icon={<MinusCircleOutlined />} icon={<MinusCircleOutlined />}

@ -190,7 +190,7 @@ const PlateIntoFurnace = () => {
const headerButtons = () => ( const headerButtons = () => (
<Space size={8}> <Space size={8}>
<Button <Button
disabled // disabled
type="primary" type="primary"
size="small" size="small"
icon={<PlusCircleOutlined />} icon={<PlusCircleOutlined />}
@ -202,7 +202,7 @@ const PlateIntoFurnace = () => {
</Button> </Button>
<Button <Button
disabled // disabled
type="primary" type="primary"
size="small" size="small"
icon={<CopyTwoTone />} icon={<CopyTwoTone />}
@ -214,7 +214,7 @@ const PlateIntoFurnace = () => {
</Button> </Button>
<Button <Button
disabled // disabled
type="primary" type="primary"
size="small" size="small"
icon={<FormOutlined />} icon={<FormOutlined />}
@ -226,7 +226,7 @@ const PlateIntoFurnace = () => {
</Button> </Button>
<Button <Button
disabled // disabled
danger danger
size="small" size="small"
icon={<MinusCircleOutlined />} icon={<MinusCircleOutlined />}

@ -296,6 +296,63 @@ const Main = () => {
}; };
const onDeleteClick3 = () => {
if (dataSource.length == 0 || selectedRow.length == 0 || selectedRowKeys.length == 0) {
message.warn('请至少选中一条数据!');
return;
}
console.log(dataSource)
console.log(selectedRow)
console.log(selectedRowKeys)
Modal.confirm({
title: '该标准确认维护?',
icon: <ExclamationCircleOutlined />,
onOk: async () => {
const res = request.post(`/ipdPsApi/Save_YCTD_WH_NO`, selectedRow).then((res) => {
if (res.data.code == '1') {
message.success('操作成功!');
setSelectedRowKeys([]);
setVisible(false);
onSearchClick();
} else {
message.error(res.data.msg);
setVisible(false);
}
});
},
});
};
const onDeleteClick4 = () => {
if (dataSource.length == 0 || selectedRow.length == 0 || selectedRowKeys.length == 0) {
message.warn('请至少选中一条数据!');
return;
}
console.log(dataSource)
console.log(selectedRow)
console.log(selectedRowKeys)
Modal.confirm({
title: '该标准确认仅一次替代?',
icon: <ExclamationCircleOutlined />,
onOk: async () => {
const res = request.post(`/ipdPsApi/Only_YCTD_WH_NO`, selectedRow).then((res) => {
if (res.data.code == '1') {
message.success('操作成功!');
setSelectedRowKeys([]);
setVisible(false);
onSearchClick();
} else {
message.error(res.data.msg);
setVisible(false);
}
});
},
});
};
//删除不维护标准 //删除不维护标准
const onDeleteClick2 = () => { const onDeleteClick2 = () => {
if (dataSource.length == 0 || selectedRow.length == 0 || selectedRowKeys.length == 0) { if (dataSource.length == 0 || selectedRow.length == 0 || selectedRowKeys.length == 0) {
@ -525,6 +582,29 @@ const Main = () => {
</Button> </Item> </Button> </Item>
<Item style={{ textAlign: 'center' }}>
<Button
danger
icon={<PlusCircleOutlined />}
onClick={(event) => {
event.stopPropagation();
onDeleteClick3();
}}
>
</Button> </Item>
<Item style={{ textAlign: 'center' }}>
<Button
danger
icon={<PlusCircleOutlined />}
onClick={(event) => {
event.stopPropagation();
onDeleteClick4();
}}
>
</Button> </Item>
<Item style={{ textAlign: 'center' }}> <Item style={{ textAlign: 'center' }}>
<Button <Button

@ -356,7 +356,7 @@ const Main = () => {
</Item> </Item>
</Col> </Col>
<Space style={{ position: 'absolute', right: 25 }} size={8}> <Space style={{ position: 'absolute', right: 25 }} size={8}>
<Item style={{ textAlign: 'center' }}> {/* <Item style={{ textAlign: 'center' }}>
<Button <Button
type="primary" type="primary"
icon={<PlayCircleOutlined />} icon={<PlayCircleOutlined />}
@ -364,7 +364,7 @@ const Main = () => {
> >
</Button> </Button>
</Item> </Item> */}
<Item style={{ textAlign: 'center' }}> <Item style={{ textAlign: 'center' }}>
<Button <Button
htmlType="submit" htmlType="submit"

@ -1451,8 +1451,8 @@ const SubHistory = () => {
</Item> </Item>
</Col> </Col>
<Col span={4}> <Col span={3}>
<Item label="序列号" name="ORD_ITEM" style={{ marginLeft: -44 }}> <Item label="序列号" name="ORD_ITEM" style={{ marginLeft: -30 }}>
<Input <Input
prefix={<SearchOutlined />} prefix={<SearchOutlined />}
style={{ color: '#ccc', width: 100 }} style={{ color: '#ccc', width: 100 }}
@ -1462,7 +1462,7 @@ const SubHistory = () => {
/> />
</Item> </Item>
</Col> </Col>
<Col span={5} style={{ marginLeft: '-128px' }}> <Col span={5} style={{ marginLeft: '-50px' }}>
<Form.Item label="替代时间" name=""> <Form.Item label="替代时间" name="">
<RangePicker <RangePicker
onChange={onRangeChange} onChange={onRangeChange}
@ -1499,26 +1499,7 @@ const SubHistory = () => {
/> />
</Item> </Item>
</Col> </Col>
<Col span={4}>
<Item label="状态" name="PROC_CD" style={{ marginLeft: '-25px' }}>
<Select
mode="multiple"
showArrow={true}
placeholder="请选择"
value={selectedItems}
allowClear
onChange={setSelectedItems}
style={{ width: '174px' }}
>
{filteredOptions.map((item) => (
<Select.Option key={item} value={item}>
{item}
</Select.Option>
))}
</Select>
</Item>
</Col>
</Row> </Row>
<Row <Row
gutter={[16, 8]} gutter={[16, 8]}
@ -1558,9 +1539,9 @@ const SubHistory = () => {
<Col span={3} style={{ marginLeft: '-71px' }}> <Col span={3} style={{ marginLeft: '-71px' }}>
<Item <Item
label="是否分板" label="分板"
name="DIVISION" name="DIVISION"
style={{ marginLeft: '26px', width: 300 }} style={{ marginLeft: '26px', width: 150 }}
> >
<Dictionary <Dictionary
placeholder="请选择" placeholder="请选择"
@ -1571,6 +1552,26 @@ const SubHistory = () => {
/> />
</Item> </Item>
</Col> </Col>
<Col span={5}>
<Item label="状态" name="PROC_CD" style={{ marginLeft: '-10px' }}>
<Select
mode="multiple"
showArrow={true}
placeholder="请选择"
value={selectedItems}
allowClear
onChange={setSelectedItems}
style={{ width: '174px' }}
>
{filteredOptions.map((item) => (
<Select.Option key={item} value={item}>
{item}
</Select.Option>
))}
</Select>
</Item>
</Col>
</Row> </Row>
</Panel> </Panel>
</Collapse> </Collapse>

@ -89,6 +89,17 @@ const UnreplaOrd = () => {
}, },
}; };
// const [serialNumber, setSerialNumber] = useState("");
// const handleChange = (e) => {
// const value = e.target.value;
// // 使用正则表达式检查输入是否为数字
// if (/^\d*$/.test(value)) { // 只允许输入数字
// setSerialNumber(value);
// }
// };
const handleImpotedJson = (jsonArr: any, file: any) => { const handleImpotedJson = (jsonArr: any, file: any) => {
jsonArr.splice(0, 1); // 去掉表头 jsonArr.splice(0, 1); // 去掉表头
const jsonArrData = jsonArr.map((item: any, index: number) => { const jsonArrData = jsonArr.map((item: any, index: number) => {
@ -351,14 +362,14 @@ const UnreplaOrd = () => {
); );
const columns = [ const columns = [
{ title: '订单号', dataIndex: 'ORD_NO', key: 'ORD_NO', width: 319 }, { title: '订单号', dataIndex: 'ORD_NO', key: 'ORD_NO',ellipsis: true, width: 319 },
{ title: '序列号', dataIndex: 'ORD_ITEM', key: 'ORD_ITEM', width: 119 }, { title: '序列号', dataIndex: 'ORD_ITEM', key: 'ORD_ITEM',ellipsis: true, width: 119 },
{ title: '订单状态', dataIndex: 'ORD_FLG', key: 'ORD_FLG', width: 119 }, { title: '订单状态', dataIndex: 'ORD_FLG', key: 'ORD_FLG', ellipsis: true,width: 119 },
{ title: '是否完全替代', dataIndex: 'IS_FULL', key: 'IS_FULL', width: 219 }, { title: '是否完全替代', dataIndex: 'IS_FULL', key: 'IS_FULL', ellipsis: true,width: 219 },
{ title: '是否部分替代', dataIndex: 'IS_PART', key: 'IS_PART', width: 219 }, { title: '是否部分替代', dataIndex: 'IS_PART', key: 'IS_PART', ellipsis: true,width: 219 },
{ title: '备注', dataIndex: 'ORD_CON', key: 'ORD_CON', width: 260 }, { title: '备注', dataIndex: 'ORD_CON', key: 'ORD_CON',ellipsis: true, width: 260 },
// { title: '录入人员', dataIndex: 'INS_EMP', key: 'INS_EMP', width: 100 }, // { title: '录入人员', dataIndex: 'INS_EMP', key: 'INS_EMP', width: 100 },
{ title: '录入日期', dataIndex: 'INS_DATE', key: 'INS_DATE', className: 'last_lt' }, { title: '录入日期', dataIndex: 'INS_DATE', key: 'INS_DATE', ellipsis: true,className: 'last_lt' },
// { title: '修改时间', dataIndex: 'UPD_DATE', key: 'UPD_DATE', width: 176 }, // { title: '修改时间', dataIndex: 'UPD_DATE', key: 'UPD_DATE', width: 176 },
// { title: '修改人员', dataIndex: 'UPD_EMP', key: 'UPD_EMP', width: 100 }, // { title: '修改人员', dataIndex: 'UPD_EMP', key: 'UPD_EMP', width: 100 },
@ -572,8 +583,11 @@ const UnreplaOrd = () => {
</Form.Item> </Form.Item>
</Col> </Col>
<Col span={24 / formRow}> <Col span={24 / formRow}>
<Form.Item label="序列号" name="ORD_ITEM" rules={[{ required: true, message: '必填' }]}> <Form.Item label="序列号" name="ORD_ITEM" rules={[{ required: true,pattern:/^\d*$/, message: '必填(只能输入数字)' }]}>
<Input placeholder="请输入" /> <Input
placeholder="请输入"
/>
</Form.Item> </Form.Item>
</Col> </Col>
<Col span={24 / formRow}> <Col span={24 / formRow}>

@ -351,14 +351,14 @@ const UnreplaOrd = () => {
); );
const columns = [ const columns = [
{ title: '订单号', dataIndex: 'ORD_NO', key: 'ORD_NO', width: 319 }, { title: '订单号', dataIndex: 'ORD_NO', key: 'ORD_NO', ellipsis: true,width: 319 },
{ title: '序列号', dataIndex: 'ORD_ITEM', key: 'ORD_ITEM', width: 119 }, { title: '序列号', dataIndex: 'ORD_ITEM', key: 'ORD_ITEM', ellipsis: true,width: 119 },
{ title: '订单状态', dataIndex: 'ORD_FLG', key: 'ORD_FLG', width: 119 }, { title: '订单状态', dataIndex: 'ORD_FLG', key: 'ORD_FLG', ellipsis: true,width: 119 },
{ title: '是否完全替代', dataIndex: 'IS_FULL', key: 'IS_FULL', width: 219 }, { title: '是否完全替代', dataIndex: 'IS_FULL', key: 'IS_FULL', ellipsis: true,width: 219 },
{ title: '是否部分替代', dataIndex: 'IS_PART', key: 'IS_PART', width: 219 }, { title: '是否部分替代', dataIndex: 'IS_PART', key: 'IS_PART',ellipsis: true, width: 219 },
{ title: '备注', dataIndex: 'ORD_CON', key: 'ORD_CON', width: 119 }, { title: '备注', dataIndex: 'ORD_CON', key: 'ORD_CON', ellipsis: true,width: 119 },
// { title: '录入人员', dataIndex: 'INS_EMP', key: 'INS_EMP', width: 100 }, // { title: '录入人员', dataIndex: 'INS_EMP', key: 'INS_EMP', width: 100 },
{ title: '录入日期', dataIndex: 'INS_DATE', key: 'INS_DATE', className: 'last_lt' }, { title: '录入日期', dataIndex: 'INS_DATE', key: 'INS_DATE',ellipsis: true, className: 'last_lt' },
// { title: '修改时间', dataIndex: 'UPD_DATE', key: 'UPD_DATE', width: 176 }, // { title: '修改时间', dataIndex: 'UPD_DATE', key: 'UPD_DATE', width: 176 },
// { title: '修改人员', dataIndex: 'UPD_EMP', key: 'UPD_EMP', width: 100 }, // { title: '修改人员', dataIndex: 'UPD_EMP', key: 'UPD_EMP', width: 100 },

@ -353,7 +353,9 @@ const UnreplaOrd = () => {
const columns = [ const columns = [
{ title: '板坯号', dataIndex: 'SLAB_NO', key: 'SLAB_NO', width: 150 }, { title: '板坯号', dataIndex: 'SLAB_NO', key: 'SLAB_NO', width: 150 },
{ title: '钢种', dataIndex: 'STLGRD', key: 'STLGRD', width: 150 },
{ title: '规格', dataIndex: 'SPECIFICATION', key: 'SPECIFICATION', width: 150 },
{ title: '仓库', dataIndex: 'CUR_INV', key: 'CUR_INV', width: 150 },
{ title: '备注', dataIndex: 'REMARK', key: 'REMATK', width: 100}, { title: '备注', dataIndex: 'REMARK', key: 'REMATK', width: 100},
{ title: '工厂', dataIndex: 'PLT', key: 'PLT', width: 100}, { title: '工厂', dataIndex: 'PLT', key: 'PLT', width: 100},
{ title: '是否替代', dataIndex: 'ORD_FL', key: 'ORD_FL', width: 100}, { title: '是否替代', dataIndex: 'ORD_FL', key: 'ORD_FL', width: 100},
@ -444,7 +446,8 @@ const UnreplaOrd = () => {
/> />
</Item> </Item>
</Col> */} </Col> */}
<Space size={16}> <Space size={6}>
<Item label="板坯号" name="SLAB_NO"> <Item label="板坯号" name="SLAB_NO">
<Input <Input
prefix={<SearchOutlined />} prefix={<SearchOutlined />}
@ -454,9 +457,26 @@ const UnreplaOrd = () => {
placeholder="请输入" placeholder="请输入"
/> />
</Item> </Item>
</Space> </Space>
<Space size={6}>
<Item
label="替代区分"
name="ORD_FL"
labelCol={{ span: 10 }}
style={{ marginLeft: 10 }}
>
<Dictionary
placeholder="请选择"
dict="BTD"
form={form}
valueName="ORD_FL"
labelName="ORD_FL"
/>
</Item>
</Space>
<Space style={{ position: 'absolute', right: 25 }} size={8} align="start"> <Space style={{ position: 'absolute', right: 25 }} size={8} align="start">
<Button htmlType="submit" type="primary" icon={<SearchOutlined />}> <Button htmlType="submit" type="primary" icon={<SearchOutlined />}>

@ -351,27 +351,27 @@ const UnreplaOrd = () => {
); );
const columns = [ const columns = [
{ title: '订单号', dataIndex: 'ORD_NO', key: 'ORD_NO', width: 150 }, { title: '订单号', dataIndex: 'ORD_NO', key: 'ORD_NO', ellipsis: true,width: 150 },
{ title: '序列号', dataIndex: 'ORD_ITEM', key: 'ORD_ITEM', width: 80 }, { title: '序列号', dataIndex: 'ORD_ITEM', key: 'ORD_ITEM', ellipsis: true,width: 80 },
{title: '状态',dataIndex: 'ORD_STS',key: 'ORD_STS', width: 80}, {title: '状态',dataIndex: 'ORD_STS',key: 'ORD_STS', ellipsis: true,width: 80},
{ title: '标准', dataIndex: 'STDSPEC', key: 'STDSPEC', width: 100}, { title: '标准', dataIndex: 'STDSPEC', key: 'STDSPEC', ellipsis: true,width: 100},
{ title: '钢种', dataIndex: 'STLGRD', key: 'STLGRD', width: 100}, { title: '钢种', dataIndex: 'STLGRD', key: 'STLGRD', ellipsis: true,width: 100},
{ title: '厚度',dataIndex: 'ORD_THK',key: 'ORD_THK', width: 100}, { title: '厚度',dataIndex: 'ORD_THK',key: 'ORD_THK',ellipsis: true, width: 100},
{ title: '宽度',dataIndex: 'ORD_WID',key: 'ORD_WID', width: 100}, { title: '宽度',dataIndex: 'ORD_WID',key: 'ORD_WID', ellipsis: true,width: 100},
{ title: '长度', dataIndex: 'ORD_LEN', key: 'ORD_LEN', width: 100}, { title: '长度', dataIndex: 'ORD_LEN', key: 'ORD_LEN',ellipsis: true, width: 100},
{ title: '重量', dataIndex: 'ORD_WGT', key: 'ORD_WGT', width: 100}, { title: '重量', dataIndex: 'ORD_WGT', key: 'ORD_WGT', ellipsis: true,width: 100},
{ title: '定尺区分', dataIndex: 'SIZE_KND', key: 'SIZE_KND', width: 100}, { title: '定尺区分', dataIndex: 'SIZE_KND', key: 'SIZE_KND', ellipsis: true,width: 100},
{ title: '交货期', dataIndex: 'DEL_TO_DATE', key: 'DEL_TO_DATE', width: 100}, { title: '交货期', dataIndex: 'DEL_TO_DATE', key: 'DEL_TO_DATE',ellipsis: true, width: 100},
{ title: '订单量', dataIndex: 'PROD_WGT', key: 'PROD_WGT', width: 100}, { title: '订单量', dataIndex: 'PROD_WGT', key: 'PROD_WGT', ellipsis: true,width: 100},
{ title: '订单量上限', dataIndex: 'DEL_TOL_MAX', key: 'DEL_TOL_MAX',width: 100}, { title: '订单量上限', dataIndex: 'DEL_TOL_MAX', key: 'DEL_TOL_MAX',ellipsis: true,width: 100},
{ title: '订单量下限', dataIndex: 'DEL_TOL_MIN', key: 'DEL_TOL_MIN',width: 100}, { title: '订单量下限', dataIndex: 'DEL_TOL_MIN', key: 'DEL_TOL_MIN',ellipsis: true,width: 100},
{ title: '炼钢', dataIndex: 'SMS_TOT_WGT', key: 'SMS_TOT_WGT',width: 100},// SMS_TOT_WGT 炼钢 { title: '炼钢', dataIndex: 'SMS_TOT_WGT', key: 'SMS_TOT_WGT',ellipsis: true,width: 100},// SMS_TOT_WGT 炼钢
{ title: '连铸', dataIndex: 'CCM_TOT_WGT', key: 'CCM_TOT_WGT',width: 100},// CCM_TOT_WGT 连铸 { title: '连铸', dataIndex: 'CCM_TOT_WGT', key: 'CCM_TOT_WGT',ellipsis: true,width: 100},// CCM_TOT_WGT 连铸
{ title: '轧钢等待', dataIndex: 'ZGDD', key: 'ZGDD',width: 100},// ZGDD 轧钢等待 { title: '轧钢等待', dataIndex: 'ZGDD', key: 'ZGDD',ellipsis: true,width: 100},// ZGDD 轧钢等待
{ title: 'CAD坯料', dataIndex: 'CADPL', key: 'CADPL',width: 100},// CADPL CAD坯料 { title: 'CAD坯料', dataIndex: 'CADPL', key: 'CADPL',ellipsis: true,width: 100},// CADPL CAD坯料
{ title: '工厂', dataIndex: 'CFM_MILL_PLT', key: 'CFM_MILL_PLT', width: 100}, { title: '工厂', dataIndex: 'CFM_MILL_PLT', key: 'CFM_MILL_PLT',ellipsis: true, width: 100},
{ title: '备注', dataIndex: 'COLOR_STROKE', key: 'COLOR_STROKE', width: 100}, { title: '备注', dataIndex: 'COLOR_STROKE', key: 'COLOR_STROKE', ellipsis: true,width: 100},
{ title: '客户代码', dataIndex: 'CUST_CD', key: 'CUST_CD', width: 100}, { title: '客户代码', dataIndex: 'CUST_CD', key: 'CUST_CD', ellipsis: true,width: 100},
// { title: '备注', dataIndex: 'ORD_CON', key: 'ORD_CON', width: 277 }, // { title: '备注', dataIndex: 'ORD_CON', key: 'ORD_CON', width: 277 },
// { title: '录入人员', dataIndex: 'INS_EMP', key: 'INS_EMP', width: 277 }, // { title: '录入人员', dataIndex: 'INS_EMP', key: 'INS_EMP', width: 277 },
// { title: '录入日期', dataIndex: 'INS_DATE', key: 'INS_DATE', className: 'last_lt' }, // { title: '录入日期', dataIndex: 'INS_DATE', key: 'INS_DATE', className: 'last_lt' },

@ -227,16 +227,16 @@ const CcmLoss = () => {
); );
const columns = [ const columns = [
{ title: '工厂', dataIndex: 'PLT', key: 'PLT', width: 250 }, { title: '工厂', dataIndex: 'PLT', key: 'PLT',ellipsis: true, width: 100 },
{ title: '机号', dataIndex: 'PRC_LINE', key: 'PRC_LINE', width: 250 }, { title: '机号', dataIndex: 'PRC_LINE', key: 'PRC_LINE', ellipsis: true,width: 100 },
{ title: '厚度', dataIndex: 'THK', key: 'THK', width: 250 }, { title: '厚度', dataIndex: 'THK', key: 'THK', ellipsis: true,width: 100 },
{ title: '钢种', dataIndex: 'STLGRD', key: 'STLGRD', width: 142 }, { title: '钢种', dataIndex: 'STLGRD', key: 'STLGRD',ellipsis: true, width: 142 },
{ title: '损失率', dataIndex: 'CCM_LOSS', key: 'CCM_LOSS', width: 80 }, { title: '损失率', dataIndex: 'CCM_LOSS', key: 'CCM_LOSS',ellipsis: true, width: 80 },
{ title: '录入日期', dataIndex: 'INS_DATE', key: 'INS_DATE', width: 176 }, { title: '录入日期', dataIndex: 'INS_DATE', key: 'INS_DATE',ellipsis: true, width: 176 },
// { title: '录入时间', dataIndex: 'INS_TIME', key: 'INS_TIME' }, // { title: '录入时间', dataIndex: 'INS_TIME', key: 'INS_TIME' },
{ title: '录入人员', dataIndex: 'INS_EMP', key: 'INS_EMP', width: 100 }, { title: '录入人员', dataIndex: 'INS_EMP', key: 'INS_EMP',ellipsis: true, width: 100 },
{ title: '修改时间', dataIndex: 'UPD_DATE', key: 'UPD_DATE', width: 176 }, { title: '修改时间', dataIndex: 'UPD_DATE', key: 'UPD_DATE',ellipsis: true, width: 176 },
{ title: '修改人员', dataIndex: 'UPD_EMP', key: 'UPD_EMP', className: 'last_lt' }, { title: '修改人员', dataIndex: 'UPD_EMP', key: 'UPD_EMP',ellipsis: true, className: 'last_lt' , width: 100},
]; ];
//页面初始化 //页面初始化
const onIniClick = (): any => { const onIniClick = (): any => {
@ -340,7 +340,7 @@ const CcmLoss = () => {
labelName="PLT" labelName="PLT"
/> />
</Item> </Item>
<Item label="钢种" name="STLGRD" style={{ marginLeft: '-44px' }}> <Item label="钢种" name="STLGRD" style={{ marginLeft: '-10px' }}>
<Steelgrade <Steelgrade
placeholder="请选择" placeholder="请选择"
dict="" dict=""

Loading…
Cancel
Save