Commit e60d6ed4 by CaIon

feat(settings): 移除单位美元额度设置项,为后续修改作准备

parent cde212a6
...@@ -130,17 +130,19 @@ export default function GeneralSettings(props) { ...@@ -130,17 +130,19 @@ export default function GeneralSettings(props) {
showClear showClear
/> />
</Col> </Col>
<Col xs={24} sm={12} md={8} lg={8} xl={8}> {inputs.QuotaPerUnit !== '500000' && inputs.QuotaPerUnit !== 500000 && (
<Form.Input <Col xs={24} sm={12} md={8} lg={8} xl={8}>
field={'QuotaPerUnit'} <Form.Input
label={t('单位美元额度')} field={'QuotaPerUnit'}
initValue={''} label={t('单位美元额度')}
placeholder={t('一单位货币能兑换的额度')} initValue={''}
onChange={handleFieldChange('QuotaPerUnit')} placeholder={t('一单位货币能兑换的额度')}
showClear onChange={handleFieldChange('QuotaPerUnit')}
onClick={() => setShowQuotaWarning(true)} showClear
/> onClick={() => setShowQuotaWarning(true)}
</Col> />
</Col>
)}
<Col xs={24} sm={12} md={8} lg={8} xl={8}> <Col xs={24} sm={12} md={8} lg={8} xl={8}>
<Form.Input <Form.Input
field={'USDExchangeRate'} field={'USDExchangeRate'}
......
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 sign in to comment