瀏覽代碼

update hidden checkbox and text in online only

CR013B2
Alex Cheung 2 週之前
父節點
當前提交
10ee4d9633
共有 1 個文件被更改,包括 23 次插入15 次删除
  1. +23
    -15
      src/pages/Proof/Reply_Public/ProofForm.js

+ 23
- 15
src/pages/Proof/Reply_Public/ProofForm.js 查看文件

@@ -427,21 +427,28 @@ const FormPanel = ({ formData }) => {
<table style={tabelStyle}>
<tbody>
<tr style={tabelStyle}>
<th style={tabelStyle} width="50" align="left"></th>
{!isOnlyOnlinePayment?
<th style={tabelStyle} width="50" align="left"></th>
:
null
}
<th style={tabelStyle} width="300" align="left"><FormattedMessage id="paymentMeans" /></th>
<th style={tabelStyle} width="300" align="left"><FormattedMessage id="commentDeadline" /></th>
<th style={tabelStyle} width="300" align="left"><FormattedMessage id="confirmingDealine" /></th>
<th style={tabelStyle} width="400" align="left"><FormattedMessage id="PaymentCoonpletDealine" /></th>
</tr>
<tr>
<td style={tabelStyle}>
<Checkbox
checked={paymentMethod == "online"}
onChange={() => {
set_paymentMethod("online")
}}
/>
</td>
{!isOnlyOnlinePayment?
<td style={tabelStyle}>
<Checkbox
checked={paymentMethod == "online"}
onChange={() => {
set_paymentMethod("online")
}}
/>
</td>
:null
}
<td style={tabelStyle}>
<FormattedMessage id="payOnline" />
{checkPaymentSuspention()?
@@ -579,12 +586,13 @@ const FormPanel = ({ formData }) => {
<div style={{ padding: 12 }} dangerouslySetInnerHTML={{ __html: intl.formatMessage({ id: "proofNote" }) }} />
</Typography>
</Grid> */}

<Grid item xs={12}>
<Typography variant="h6" height="100%" >
<div style={{ padding: 12 }} dangerouslySetInnerHTML={{ __html: intl.formatMessage({ id: "proofImportant" }) }} />
</Typography>
</Grid>
{!isOnlyOnlinePayment?
<Grid item xs={12}>
<Typography variant="h6" height="100%" >
<div style={{ padding: 12 }} dangerouslySetInnerHTML={{ __html: intl.formatMessage({ id: "proofImportant" }) }} />
</Typography>
</Grid>:null
}
</>
:
actionValue ?


Loading…
取消
儲存