Commit 6e56d661 authored by 陈智峰's avatar 陈智峰

Merge branch 'feng-jinfa-20221102' into 'jinfa-20221102'

fix: getFieldValue无效取值导致无法带出字段,回显有n个formitem解决 See merge request project/jinfa-platform!447
parents 00ddcc63 52ebbb8b
......@@ -548,9 +548,10 @@ const FormList = (props: any) => {
nowList.map((i, k) => {
i.newId = i.newId || i.prpId
i.isHasTax = form.getFieldValue('isHasTax' + i.newId) || undefined
i.taxRate = form.getFieldValue('taxRate' + i.newId) || ''
i.price = form.getFieldValue('price' + i.newId) || ''
val_taxPoint(i)
// i.isHasTax = form.getFieldValue('isHasTax' + i.newId) || undefined
// i.taxRate = form.getFieldValue('taxRate' + i.newId) || ''
// i.price = form.getFieldValue('price' + i.newId) || ''
i.bidAmount = (i.bidCount && i.price) ? new BigNumber(+i.bidCount).multipliedBy(i.price).toNumber().toFixed(2) : ''
})
......
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