浏览代码

fix payment UI, proof to payment bugs

master
Anna Ho 1年前
父节点
当前提交
e16913447f
共有 5 个文件被更改,包括 5 次插入5 次删除
  1. +1
    -1
      src/pages/Payment/Details_GLD/DataGrid.js
  2. +1
    -1
      src/pages/Payment/Details_Public/DataGrid.js
  3. +1
    -1
      src/pages/Proof/Payment/Pay.js
  4. +1
    -1
      src/pages/PublicNotice/ListPanel/PendingPaymentTab.js
  5. +1
    -1
      src/pages/PublicNotice/ListPanel/SearchPublicNoticeTable.js

+ 1
- 1
src/pages/Payment/Details_GLD/DataGrid.js 查看文件

@@ -45,7 +45,7 @@ export default function SearchPublicNoticeTable({ recordList }) {
];

return (
<div style={{ height: 400, width: '100%' }}>
<div style={{ minHeight: 400, width: '100%' }}>

<FiDataGrid
rowHeight={80}


+ 1
- 1
src/pages/Payment/Details_Public/DataGrid.js 查看文件

@@ -45,7 +45,7 @@ export default function SearchPublicNoticeTable({ recordList }) {
];

return (
<div style={{ height: 400, width: '100%' }}>
<div style={{ minHeight:400, width: '100%' }}>

<FiDataGrid
rowHeight={80}


+ 1
- 1
src/pages/Proof/Payment/Pay.js 查看文件

@@ -69,7 +69,7 @@ const Index = () => {

function doPayment() {
setIsPopUp(false);
navigate('/paymentPage', { state: { amount: fee, appIdList: [record.id] } });
navigate('/paymentPage', { state: { amount: fee, appIdList: [record?.appId] } });
}

return (


+ 1
- 1
src/pages/PublicNotice/ListPanel/PendingPaymentTab.js 查看文件

@@ -152,7 +152,7 @@ export default function SubmittedTab({ rows }) {
columns={columns}
initialState={{
pagination: {
paginationModel: { page: 0, pageSize: 5 },
paginationModel: { page: 0, pageSize: 20 },
},
}}
onRowSelectionModelChange={(newSelection) => {


+ 1
- 1
src/pages/PublicNotice/ListPanel/SearchPublicNoticeTable.js 查看文件

@@ -101,7 +101,7 @@ export default function SearchPublicNoticeTable({ recordList }) {
columns={columns}
initialState={{
pagination: {
paginationModel: { page: 0, pageSize: 10 },
paginationModel: { page: 0, pageSize: 20 },
},
}}
onRowDoubleClick={handleRowDoubleClick}


正在加载...
取消
保存