feat(settle): 拨比列表添加见点收益和区域收益字段
This commit is contained in:
parent
8e20e8cc4b
commit
60e56295fa
|
@ -209,7 +209,7 @@
|
|||
align="center"
|
||||
prop="globalPoints"
|
||||
width="130"
|
||||
:label="'见点收益'"
|
||||
:label="'复购见点收益'"
|
||||
:formatter="stateFormat"
|
||||
/>
|
||||
<el-table-column
|
||||
|
@ -217,7 +217,7 @@
|
|||
align="center"
|
||||
prop="storeIncome"
|
||||
width="130"
|
||||
:label="'区域收益'"
|
||||
:label="'复购区域收益'"
|
||||
:formatter="stateFormat"
|
||||
/>
|
||||
|
||||
|
|
|
@ -265,49 +265,49 @@ export default {
|
|||
},
|
||||
{
|
||||
id: 3,
|
||||
text: `${'注册专区'}(¥)`,
|
||||
text: `${'注册专区'}`,
|
||||
checked: true,
|
||||
prop: 'mainRegAmount',
|
||||
total: 'mainRegAmountSum'
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
text: `${'升级专区'}(¥)`,
|
||||
text: `${'升级专区'}`,
|
||||
checked: true,
|
||||
prop: 'mainUpAmount',
|
||||
total: 'mainUpAmountSum'
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
text: `${'首购金额'}(¥)`,
|
||||
text: `${'首购金额'}`,
|
||||
checked: true,
|
||||
prop: 'firstPurchaseAll',
|
||||
total: 'firstPurchaseAllSum'
|
||||
},
|
||||
{
|
||||
id: 8,
|
||||
text: `${'直推收益'}(¥)`,
|
||||
text: `${'直推收益'}`,
|
||||
checked: true,
|
||||
prop: 'introduceBonus',
|
||||
total: 'introduceBonusSum'
|
||||
},
|
||||
{
|
||||
id: 9,
|
||||
text: `${'拓展收益'}(¥)`,
|
||||
text: `${'拓展收益'}`,
|
||||
checked: true,
|
||||
prop: 'orgBonus',
|
||||
total: 'orgBonusSum'
|
||||
},
|
||||
{
|
||||
id: 10,
|
||||
text: `${'辅导收益'}(¥)`,
|
||||
text: `${'辅导收益'}`,
|
||||
checked: true,
|
||||
prop: 'leaderBonus',
|
||||
total: 'leaderBonusSum'
|
||||
},
|
||||
{
|
||||
id: 12,
|
||||
text: `${'服务补贴'}(¥)`,
|
||||
text: `${'服务补贴'}`,
|
||||
checked: true,
|
||||
prop: 'serviceBonus',
|
||||
total: 'serviceBonusSum'
|
||||
|
@ -315,42 +315,56 @@ export default {
|
|||
|
||||
{
|
||||
id: 16,
|
||||
text: `${'复购专区'}(¥)`,
|
||||
text: `${'复购专区'}`,
|
||||
checked: true,
|
||||
prop: 'mainRepurAmount',
|
||||
total: 'mainRepurAmountSum'
|
||||
},
|
||||
{
|
||||
id: 18,
|
||||
text: `${'复购金额'}(¥)`,
|
||||
text: `${'复购金额'}`,
|
||||
checked: false,
|
||||
prop: 'repurchaseAllAmount',
|
||||
total: 'repurchaseAllAmountSum'
|
||||
},
|
||||
{
|
||||
id: 19,
|
||||
text: `${'复购级差收益'}(¥)`,
|
||||
text: `${'复购级差收益'}`,
|
||||
checked: false,
|
||||
prop: 'repurRangeBonus',
|
||||
total: 'repurRangeBonusSum'
|
||||
},
|
||||
{
|
||||
id: 20,
|
||||
text: `${'复购拓展收益'}(¥)`,
|
||||
text: `${'复购拓展收益'}`,
|
||||
checked: false,
|
||||
prop: 'repurOrgBonus',
|
||||
total: 'repurOrgBonusSum'
|
||||
},
|
||||
{
|
||||
id: 20,
|
||||
text: `${'复购辅导收益'}(¥)`,
|
||||
text: `${'复购辅导收益'}`,
|
||||
checked: false,
|
||||
prop: 'repurLeaderBonus',
|
||||
total: 'repurLeaderBonusSum'
|
||||
},
|
||||
{
|
||||
id: 20,
|
||||
text: `${'复购见点收益'}`,
|
||||
checked: false,
|
||||
prop: 'globalPointsBonus',
|
||||
total: 'globalPointsBonusSum'
|
||||
},
|
||||
{
|
||||
id: 20,
|
||||
text: `${'复购区域收益'}`,
|
||||
checked: false,
|
||||
prop: 'storeIncomeBonus',
|
||||
total: 'storeIncomeBonusSum'
|
||||
},
|
||||
{
|
||||
id: 21,
|
||||
text: `${'首购拨出金额'}(¥)`,
|
||||
text: `${'首购拨出金额'}`,
|
||||
checked: false,
|
||||
prop: 'mainBonus',
|
||||
total: 'mainBonusSum'
|
||||
|
@ -364,7 +378,7 @@ export default {
|
|||
},
|
||||
{
|
||||
id: 23,
|
||||
text: `${'复购拨出金额'}(¥)`,
|
||||
text: `${'复购拨出金额'}`,
|
||||
checked: false,
|
||||
prop: 'repurBonus',
|
||||
total: 'repurBonusSum'
|
||||
|
@ -378,7 +392,7 @@ export default {
|
|||
},
|
||||
{
|
||||
id: 25,
|
||||
text: `${'总拨出金额'}(¥)`,
|
||||
text: `${'总拨出金额'}`,
|
||||
checked: false,
|
||||
prop: 'totalBonus',
|
||||
total: 'totalBonusSum'
|
||||
|
|
|
@ -224,91 +224,105 @@ export default {
|
|||
},
|
||||
{
|
||||
id: 3,
|
||||
text: `${'注册专区'}(¥)`,
|
||||
text: `${'注册专区'}`,
|
||||
checked: true,
|
||||
prop: 'mainRegAmount',
|
||||
total: 'mainRegAmountSum'
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
text: `${'升级专区'}(¥)`,
|
||||
text: `${'升级专区'}`,
|
||||
checked: true,
|
||||
prop: 'mainUpAmount',
|
||||
total: 'mainUpAmountSum'
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
text: `${'首购金额'}(¥)`,
|
||||
text: `${'首购金额'}`,
|
||||
checked: true,
|
||||
prop: 'firstPurchaseAll',
|
||||
total: 'firstPurchaseAllSum'
|
||||
},
|
||||
{
|
||||
id: 8,
|
||||
text: `${'直推收益'}(¥)`,
|
||||
text: `${'直推收益'}`,
|
||||
checked: true,
|
||||
prop: 'introduceBonus',
|
||||
total: 'introduceBonusSum'
|
||||
},
|
||||
{
|
||||
id: 9,
|
||||
text: `${'拓展收益'}(¥)`,
|
||||
text: `${'拓展收益'}`,
|
||||
checked: true,
|
||||
prop: 'orgBonus',
|
||||
total: 'orgBonusSum'
|
||||
},
|
||||
{
|
||||
id: 10,
|
||||
text: `${'辅导收益'}(¥)`,
|
||||
text: `${'辅导收益'}`,
|
||||
checked: true,
|
||||
prop: 'leaderBonus',
|
||||
total: 'leaderBonusSum'
|
||||
},
|
||||
{
|
||||
id: 12,
|
||||
text: `${'服务补贴'}(¥)`,
|
||||
text: `${'服务补贴'}`,
|
||||
checked: true,
|
||||
prop: 'serviceBonus',
|
||||
total: 'serviceBonusSum'
|
||||
},
|
||||
{
|
||||
id: 16,
|
||||
text: `${'复购专区'}(¥)`,
|
||||
text: `${'复购专区'}`,
|
||||
checked: true,
|
||||
prop: 'mainRepurAmount',
|
||||
total: 'mainRepurAmountSum'
|
||||
},
|
||||
{
|
||||
id: 18,
|
||||
text: `${'复购金额'}(¥)`,
|
||||
text: `${'复购金额'}`,
|
||||
checked: false,
|
||||
prop: 'repurchaseAllAmount',
|
||||
total: 'repurchaseAllAmountSum'
|
||||
},
|
||||
{
|
||||
id: 19,
|
||||
text: `${'复购级差收益'}(¥)`,
|
||||
text: `${'复购级差收益'}`,
|
||||
checked: false,
|
||||
prop: 'repurRangeBonus',
|
||||
total: 'repurRangeBonusSum'
|
||||
},
|
||||
{
|
||||
id: 20,
|
||||
text: `${'复购拓展收益'}(¥)`,
|
||||
text: `${'复购拓展收益'}`,
|
||||
checked: false,
|
||||
prop: 'repurOrgBonus',
|
||||
total: 'repurOrgBonusSum'
|
||||
},
|
||||
{
|
||||
id: 'repurLeaderBonus',
|
||||
text: `${'复购辅导收益'}(¥)`,
|
||||
text: `${'复购辅导收益'}`,
|
||||
checked: false,
|
||||
prop: 'repurLeaderBonus',
|
||||
total: 'repurLeaderBonusSum'
|
||||
},
|
||||
{
|
||||
id: 20,
|
||||
text: `${'复购见点收益'}`,
|
||||
checked: false,
|
||||
prop: 'globalPointsBonus',
|
||||
total: 'globalPointsBonusSum'
|
||||
},
|
||||
{
|
||||
id: 20,
|
||||
text: `${'复购区域收益'}`,
|
||||
checked: false,
|
||||
prop: 'storeIncomeBonus',
|
||||
total: 'storeIncomeBonusSum'
|
||||
},
|
||||
{
|
||||
id: 21,
|
||||
text: `${'首购拨出金额'}(¥)`,
|
||||
text: `${'首购拨出金额'}`,
|
||||
checked: false,
|
||||
prop: 'mainBonus',
|
||||
total: 'mainBonusSum'
|
||||
|
@ -322,7 +336,7 @@ export default {
|
|||
},
|
||||
{
|
||||
id: 23,
|
||||
text: `${'复购拨出金额'}(¥)`,
|
||||
text: `${'复购拨出金额'}`,
|
||||
checked: false,
|
||||
prop: 'repurBonus',
|
||||
total: 'repurBonusSum'
|
||||
|
@ -336,7 +350,7 @@ export default {
|
|||
},
|
||||
{
|
||||
id: 25,
|
||||
text: `${'总拨出金额'}(¥)`,
|
||||
text: `${'总拨出金额'}`,
|
||||
checked: false,
|
||||
prop: 'totalBonus',
|
||||
total: 'totalBonusSum'
|
||||
|
|
|
@ -299,6 +299,16 @@ export default {
|
|||
text: '复购辅导拨比(%)',
|
||||
prop: 'repurLeaderBonusRate'
|
||||
},
|
||||
{
|
||||
|
||||
text: `${'复购见点收益'}`,
|
||||
prop: 'globalPointsBonus'
|
||||
},
|
||||
{
|
||||
|
||||
text: `${'复购区域收益'}`,
|
||||
prop: 'storeIncomeBonus'
|
||||
},
|
||||
{
|
||||
text: `拓展平均碰次`,
|
||||
prop: 'orgAvTouch'
|
||||
|
|
Loading…
Reference in New Issue