Browse Source

update ui

master
Anna Ho 1 year ago
parent
commit
074035399e
2 changed files with 5 additions and 5 deletions
  1. +3
    -3
      src/pages/PublicNotice/Details_GLD/tabTableDetail/TabTable.js
  2. +2
    -2
      src/pages/PublicNotice/Details_Public/tabTableDetail/TabTable.js

+ 3
- 3
src/pages/PublicNotice/Details_GLD/tabTableDetail/TabTable.js View File

@@ -76,9 +76,9 @@ const PublicNotice = ({ applicationDetailData, proofList, paymentList }) => {
<TabContext value={selectedTab}>
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
<TabList onChange={handleChange} aria-label="lab API tabs example">
<Tab label={"Proof(" + _proofList?.length??0 + ")"} value="1" />
<Tab label={"Payment(" + _paymentList.length + ")"} value="2" />
<Tab label={"Status History(" + statusHistoryList.length + ")"} value="3" />
<Tab label={"Proof(" + _proofList?.length + ") "} value="1" />
<Tab label={"Payment(" + _paymentList.length + ") "} value="2" />
<Tab label={"Status History(" + statusHistoryList.length + ") "} value="3" />
</TabList>
</Box>
<TabPanel value="1">


+ 2
- 2
src/pages/PublicNotice/Details_Public/tabTableDetail/TabTable.js View File

@@ -55,8 +55,8 @@ const PublicNotice = ({ proofList, paymentList }) => {
<TabContext value={selectedTab}>
<Box sx={{ borderBottom: 1, borderColor: 'divider' }}>
<TabList onChange={handleChange} aria-label="lab API tabs example">
<Tab label={"校對記錄(" + _proofList.length + ")"} value="1" />
<Tab label={"付款記錄(" + _paymentList.length + ")"} value="2" />
<Tab label={"校對記錄(" + _proofList.length + ") "} value="1" />
<Tab label={"付款記錄(" + _paymentList.length + ") "} value="2" />
</TabList>
</Box>


Loading…
Cancel
Save