Commit 5bcb1a74 authored by 前端-彭佳文's avatar 前端-彭佳文

Merge branch 'fix418' into 'v2-220418'

固定请购单模块表格的列 See merge request linkseeks-design/pro-platform!519
parents c027dc4f 49d6bed6
......@@ -73,6 +73,11 @@ const FirstApprovedBill: React.FC<FirstApprovedBillProps> = () => {
}}
/>
}
tableProps={{
scroll: {
x: '100%'
}
}}
/>
</Card>
</PageHeaderWrapper>
......
......@@ -137,6 +137,7 @@ export const useSelfTable = () => {
dataIndex: 'ctl',
key: 'ctl',
width: 128,
fixed: 'right',
render: (text: any, record: any) => renderOptionButton(record)
}
])
......
......@@ -140,6 +140,8 @@ const RequestBill: React.FC<RequestBillProps> = () => {
align: 'center',
dataIndex: 'ctl',
key: 'ctl',
width: 128,
fixed: 'right',
render: (text, record) => renderOptionButton(record),
},
]);
......@@ -192,7 +194,9 @@ const RequestBill: React.FC<RequestBillProps> = () => {
/>
}
tableProps={{
scroll: 'y'
scroll: {
x: '100%'
}
}}
/>
</Card>
......
......@@ -98,6 +98,11 @@ const ReadyAddBill: React.FC<ReadyAddBillProps> = () => {
}}
/>
}
tableProps={{
scroll: {
x: '100%'
}
}}
/>
</Card>
</PageHeaderWrapper>
......
......@@ -163,6 +163,7 @@ export const useSelfTable = () => {
dataIndex: 'ctl',
key: 'ctl',
width: 128,
fixed: 'right',
render: (text: any, record: any) => renderOptionButton(record)
}
])
......
......@@ -71,6 +71,11 @@ const ReadySubmitBill: React.FC<ReadySubmitBillProps> = () => {
}}
/>
}
tableProps={{
scroll: {
x: '100%'
}
}}
/>
</Card>
......
......@@ -139,6 +139,7 @@ export const useSelfTable = () => {
dataIndex: 'ctl',
key: 'ctl',
width: 128,
fixed: 'right',
render: (text: any, record: any) => renderOptionButton(record)
}
])
......
......@@ -76,6 +76,11 @@ const RequisitionOrder: React.FC<RequisitionOrderProps> = () => {
}}
/>
}
tableProps={{
scroll: {
x: '100%'
}
}}
/>
{/* <StandardTable
fetchTableData={params => fetchTableData(params)}
......
......@@ -139,6 +139,7 @@ export const useSelfTable = () => {
dataIndex: 'ctl',
key: 'ctl',
width: 128,
fixed: 'right',
render: (text: any, record: any) => renderOptionButton(record)
}
])
......
......@@ -71,6 +71,11 @@ const SecondApprovedBill: React.FC<SecondApprovedBillProps> = () => {
}}
/>
}
tableProps={{
scroll: {
x: '100%'
}
}}
/>
</Card>
</PageHeaderWrapper>
......
......@@ -138,6 +138,7 @@ export const useSelfTable = () => {
dataIndex: 'ctl',
key: 'ctl',
width: 128,
fixed: 'right',
render: (text: any, record: any) => renderOptionButton(record)
}
])
......
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