|
@@ -146,7 +146,7 @@ export const columns = (props: { authList?: any[], labelList?: any[], enumList?:
|
|
|
align: 'center',
|
|
|
hideInSearch: true,
|
|
|
render: (a: any, b: any) => {
|
|
|
- let arr = getDescriptions(enumList?.PAYMENT_TYPE?.values || [], [b?.paymentType] || [])
|
|
|
+ let arr = getDescriptions(enumList?.PAYMENT_TYPE?.values || [], b?.paymentType ? [b?.paymentType] : [])
|
|
|
let arr1 = new Map(enumList?.PAYMENT_OPTION?.values?.map(({ value, description }: any) => [value, description]))
|
|
|
return <Space size={[0, 5]} wrap>
|
|
|
{
|
|
@@ -216,7 +216,7 @@ export const columns = (props: { authList?: any[], labelList?: any[], enumList?:
|
|
|
render: (a: any, b: any) => {
|
|
|
return <Space>
|
|
|
<a onClick={() => { closeForm(true, b) }}>付费配置</a>
|
|
|
- <BookExtend shortBookId={b?.bookId} bookName={b?.shortBookInfoVO?.bookName}/>
|
|
|
+ <BookExtend shortBookId={b?.bookId} bookName={b?.shortBookInfoVO?.bookName} />
|
|
|
</Space>
|
|
|
}
|
|
|
},
|