|
@@ -393,7 +393,7 @@ export default {
|
|
|
this.resDate.map((item, index) => {
|
|
|
resData.push({
|
|
|
configType: 1,
|
|
|
- userType: Number(item.customer),
|
|
|
+ beneficiary: Number(item.customer),
|
|
|
feeType: Number(item.expenseType),
|
|
|
beneficiary: Number(item.payee),
|
|
|
})
|
|
@@ -401,7 +401,7 @@ export default {
|
|
|
this.bill.map((item, index) => {
|
|
|
resData.push({
|
|
|
configType: 2,
|
|
|
- userType: Number(item.commission),
|
|
|
+ beneficiary: Number(item.commission),
|
|
|
feeType: Number(item.expenseType),
|
|
|
commissionMethod: Number(item.commissionPlatform),
|
|
|
divideIntoValues: Number(item.commissionPlatform) == '2' ? Number(item.platformAmount) / 100 : Number(item.platformAmount),
|
|
@@ -426,7 +426,7 @@ export default {
|
|
|
this.url = '/czc-community/payConfig/update'
|
|
|
data.billConfig.map((item, index) => {
|
|
|
this.resDate.push({
|
|
|
- customer: item.userType + '',
|
|
|
+ customer: item.beneficiary + '',
|
|
|
expenseType: item.feeType + '',
|
|
|
payee: item.beneficiary + '',
|
|
|
configType: '1'
|
|
@@ -435,7 +435,7 @@ export default {
|
|
|
|
|
|
data.divideSettings.map((item, index) => {
|
|
|
this.bill.push({
|
|
|
- commission: item.userType + '',
|
|
|
+ commission: item.beneficiary + '',
|
|
|
configType: '2',
|
|
|
expenseType: item.feeType + '',
|
|
|
commissionPlatform: item.commissionMethod + '',
|