feat : 岗位数据入库监测 新增字段

This commit is contained in:
bin
2025-11-07 15:00:54 +08:00
parent 2c0bd8c617
commit 2175fd2020
3 changed files with 20 additions and 0 deletions

View File

@@ -61,6 +61,7 @@ const StorageEdit: React.FC<StorageFormProps> = (props) => {
<ProDescriptions.Item dataIndex="storageDate" label="采集入库日期" />
<ProDescriptions.Item dataIndex="storageNumber" label="采集入库数量" />
<ProDescriptions.Item dataIndex="storageResult" label="采集入库结果" />
<ProDescriptions.Item dataIndex="websiteName" label="入库数据来源名称" />
<ProDescriptions.Item dataIndex="storageDetail" label="入库数据详情" span={2} />
</ProDescriptions>
</ModalForm>
@@ -111,6 +112,13 @@ const StorageEdit: React.FC<StorageFormProps> = (props) => {
/>
</ProForm.Group>
<ProForm.Group>
<ProFormText
width="md"
name="websiteName"
label="入库数据来源名称"
placeholder="请输入入库数据来源名称"
rules={[{ required: true, message: '请输入入库数据来源名称!' }]}
/>
<ProFormTextArea
width="lg"
name="storageDetail"

View File

@@ -87,6 +87,14 @@ function StorageDetectionList() {
align: 'center',
hideInSearch: true,
},
{
title: '入库数据来源名称',
dataIndex: 'websiteName',
valueType: 'text',
align: 'center',
hideInSearch: true,
ellipsis: true,
},
{
title: '入库数据详情',
dataIndex: 'storageDetail',
@@ -95,6 +103,7 @@ function StorageDetectionList() {
hideInSearch: true,
ellipsis: true,
},
{
title: '操作',
hideInSearch: true,