|
@@ -404,7 +404,7 @@ export default {
|
|
|
userType: Number(item.commission),
|
|
|
feeType: Number(item.expenseType),
|
|
|
commissionMethod: Number(item.commissionPlatform),
|
|
|
- divideIntoValues: Number(item.commissionPlatform) == '2' ? Number(item.platformAmount) * 100 : Number(item.platformAmount),
|
|
|
+ divideIntoValues: Number(item.commissionPlatform) == '2' ? Number(item.platformAmount) / 100 : Number(item.platformAmount),
|
|
|
})
|
|
|
})
|
|
|
|
|
@@ -439,7 +439,7 @@ export default {
|
|
|
configType: '2',
|
|
|
expenseType: item.feeType + '',
|
|
|
commissionPlatform: item.commissionMethod + '',
|
|
|
- platformAmount: item.divideIntoValues
|
|
|
+ platformAmount: item.commissionMethod == '1' ? item.divideIntoValues : item.divideIntoValues * 100
|
|
|
|
|
|
})
|
|
|
})
|