kevin_zhangl 3 rokov pred
rodič
commit
55dab0e307

+ 8 - 8
backendApi/modules/v1/controllers/BonusController.php

@@ -943,20 +943,20 @@ class BonusController extends BaseController {
             'LAST_CON_REAL_NAME' => 'CB.LAST_CON_REAL_NAME',
             'BONUS_BD' => 'CB.BONUS_BD',
             'BONUS_TG' => 'CB.BONUS_TG',
-            'BONUS_XF' => 'CB.BONUS_XF',
-            'BONUS_YJ' => 'CB.BONUS_YJ',
-            'BONUS_GX' => 'CB.BONUS_GX',
-            'BONUS_GL' => 'CB.BONUS_GL',
+//            'BONUS_XF' => 'CB.BONUS_XF',
+//            'BONUS_YJ' => 'CB.BONUS_YJ',
+//            'BONUS_GX' => 'CB.BONUS_GX',
+//            'BONUS_GL' => 'CB.BONUS_GL',
             // 'BONUS_GL' => 'CB.BONUS_BS',
             'BONUS_QY' => 'CB.BONUS_QY',
-            'BONUS_YC' => 'CB.BONUS_YC',
-            'ORI_BONUS_STANDARD' => 'CB.ORI_BONUS_STANDARD',
+//            'BONUS_YC' => 'CB.BONUS_YC',
+//            'ORI_BONUS_STANDARD' => 'CB.ORI_BONUS_STANDARD',
             'PV_1L' => 'CB.PV_1L',
             'SURPLUS_1L' => 'CB.SURPLUS_1L',
             'PV_2L' => 'CB.PV_2L',
             'SURPLUS_2L' => 'CB.SURPLUS_2L',
-            'PV_3L' => 'CB.PV_3L',
-            'SURPLUS_3L' => 'CB.SURPLUS_3L',
+//            'PV_3L' => 'CB.PV_3L',
+//            'SURPLUS_3L' => 'CB.SURPLUS_3L',
             'CALCULATED_AT' => 'CB.CALCULATED_AT',
             'CALC_MONTH' => 'CB.CALC_MONTH',
             'BONUS_QY_MONTH' => 'CB.BONUS_QY_MONTH',

+ 109 - 102
backendApi/modules/v1/models/lists/bonus/PeriodBonusList.php

@@ -56,6 +56,7 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
             foreach ($this->listData['list'] as $key => $value) {
                 $this->listData['list'][$key]['LAST_DEC_LV_NAME'] = Cache::getDecLevelConfig()[$value['LAST_DEC_LV']]['LEVEL_NAME'];
                 $this->listData['list'][$key]['LAST_EMP_LV_NAME'] = Cache::getEmpLevelConfig()[$value['LAST_EMP_LV']]['LEVEL_NAME'];
+                $this->listData['list'][$key]['LAST_STAR_LV_NAME'] = Cache::getStarCrownLevelConfig()[$value['LAST_STAR_LV']]['LEVEL_NAME'];
                 $this->listData['list'][$key]['LAST_STATUS_NAME'] = \Yii::$app->params['userStatus'][$value['LAST_STATUS']]['label'];
 
                 $this->listData['list'][$key]['LAST_REC_USER_NAME'] = Info::getUserNameByUserId($value['REC_UID']);
@@ -122,6 +123,12 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                         'width' => '140',
                     ],
                 ],
+                'LAST_STAR_LV_NAME' => [
+                    'header' => 'Member star at settlement',//结算时会员聘级
+                    'headerOther' => [
+                        'width' => '140',
+                    ],
+                ],
                 'LAST_MOBILE' => [
                     'header' => 'phone number',//手机号码
                     'headerOther' => [
@@ -152,7 +159,7 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                 'LAST_REC_REAL_NAME' => [
                     'header' => 'Pioneer name',//开拓者姓名
                     'headerOther' => [
-                        'width' => '100',
+                        'width' => '120',
                     ],
                 ],
                 'LAST_CON_USER_NAME' => [
@@ -164,7 +171,7 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                 'LAST_CON_REAL_NAME' => [
                     'header' => 'Superior name',//上级姓名
                     'headerOther' => [
-                        'width' => '100',
+                        'width' => '120',
                     ],
                 ],
 //                'PV_1L' => [
@@ -276,19 +283,19 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
 //                    ],
 //                ],
                 'BONUS_TG' => [
-                    'header' => 'Sales bonus',//销售奖金
+                    'header' => 'Welcome Bonus',//销售奖金
                     'value' => function($row) {
                         return (new Price([
                             'value' => $row['BONUS_TG'],
                         ]))->result();
                     },
                     'headerOther' => [
-                        'width' => '120',
+                        'width' => '130',
                         'prop'=>'BONUS_TG',
                     ],
                 ],
                 'ORI_BONUS_TG' => [
-                    'header' => 'Original amount of sales bonus',//销售奖金原金额
+                    'header' => 'Original amount of Welcome Bonus',//销售奖金原金额
                     'value' => function($row) {
                         return (new Price([
                             'value' => $row['ORI_BONUS_TG'],
@@ -300,7 +307,7 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                     ],
                 ],
                 'BONUS_QY' => [
-                    'header' => 'achievement bonus',//绩效奖金
+                    'header' => 'Team Bonus',//绩效奖金
                     'value' => function($row) {
                         return (new Price([
                             'value' => $row['BONUS_QY'],
@@ -312,7 +319,7 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                     ],
                 ],
                 'ORI_BONUS_QY' => [
-                    'header' => 'Original amount of performance bonus',//绩效奖金原金额
+                    'header' => 'Original amount of Team Bonus',//绩效奖金原金额
                     'value' => function($row) {
                         return (new Price([
                             'value' => $row['ORI_BONUS_QY'],
@@ -324,7 +331,7 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                     ],
                 ],
                 'ORI_CAPPED_BONUS_QY' => [
-                    'header' => 'Uncapped amount of Performance Award',//绩效奖未封顶金额
+                    'header' => 'Uncapped amount of Team Award',//绩效奖未封顶金额
                     'value' => function($row) {
                         return (new Price([
                             'value' => $row['ORI_CAPPED_BONUS_QY'],
@@ -335,102 +342,102 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                         'prop'=>'ORI_CAPPED_BONUS_QY',
                     ],
                 ],
-                'ORI_BONUS_QY_BD' => [
-                    'header' => 'Original amount of declaration Team Award',//报单团队奖原金额
-                    'value' => function($row) {
-                        return (new Price([
-                            'value' => $row['ORI_BONUS_QY_BD'],
-                        ]))->result();
-                    },
-                    'headerOther' => [
-                        'width' => '120',
-                        'prop'=>'ORI_BONUS_QY_BD',
-                    ],
-                ],
-//                'BONUS_BS' => [
-//                    'header' => '蓝星管理奖',
-//                    'value' => function($row) {
-//                        return (new Price([
-//                            'value' => $row['BONUS_BS'],
-//                        ]))->result();
-//                    },
-//                    'headerOther' => [
-//                        'width' => '120',
-//                        'prop'=>'BONUS_BS',
-//                    ],
-//                ],
-//                'ORI_BONUS_BS' => [
-//                    'header' => '蓝星管理奖原金额',
+//                'ORI_BONUS_QY_BD' => [
+//                    'header' => 'Original amount of declaration Team Award',//报单团队奖原金额
 //                    'value' => function($row) {
 //                        return (new Price([
-//                            'value' => $row['ORI_BONUS_BS'],
+//                            'value' => $row['ORI_BONUS_QY_BD'],
 //                        ]))->result();
 //                    },
 //                    'headerOther' => [
 //                        'width' => '120',
-//                        'prop'=>'ORI_BONUS_BS',
+//                        'prop'=>'ORI_BONUS_QY_BD',
 //                    ],
 //                ],
-                // 'REAL_BONUS_BS' => [
-                //     'header' => '实发蓝星管理奖',
-                //     'value' => function($row) {
-                //         return (new Price([
-                //             'value' => $row['REAL_BONUS_BS'],
-                //         ]))->result();
-                //     },
-                //     'headerOther' => [
-                //         'width' => '120',
-                //         'prop'=>'REAL_BONUS_BS',
-                //     ],
-                // ],
-                'BONUS_BS_MNT' => [
-                    'header' => 'Bluestar Management Award',//蓝星管理奖
-                    'value' => function($row) {
-                        return (new Price([
-                            'value' => $row['BONUS_BS_MNT'],
-                        ]))->result();
-                    },
-                    'headerOther' => [
-                        'width' => '120',
-                        'prop' => 'BONUS_BS_MNT',
-                    ],
-                ],
-                'ORI_BONUS_BS_MNT' => [
-                    'header' => 'Original amount of Bluestar Management Award',//蓝星管理奖原金额
-                    'value' => function($row) {
-                        return (new Price([
-                            'value' => $row['ORI_BONUS_BS_MNT'],
-                        ]))->result();
-                    },
-                    'headerOther' => [
-                        'width' => '120',
-                        'prop' => 'ORI_BONUS_BS_MNT',
-                    ],
-                ],
-                'BONUS_BS_ABBR' => [
-                    'header' => 'Blue star performance award',//蓝星业绩奖
+                'BONUS_BS' => [
+                    'header' => 'Director Bonus',// 管理奖/蓝星奖
                     'value' => function($row) {
                         return (new Price([
-                            'value' => $row['BONUS_BS_ABBR'],
+                            'value' => $row['BONUS_BS'],
                         ]))->result();
                     },
                     'headerOther' => [
                         'width' => '120',
-                        'prop' => 'BONUS_BS_ABBR',
+                        'prop'=>'BONUS_BS',
                     ],
                 ],
-                'ORI_BONUS_BS_ABBR' => [
-                    'header' => 'Original amount of blue star performance award',//蓝星业绩奖原金额
+                'ORI_BONUS_BS' => [
+                    'header' => 'Original amount of Director Bonus',
                     'value' => function($row) {
                         return (new Price([
-                            'value' => $row['ORI_BONUS_BS_ABBR'],
+                            'value' => $row['ORI_BONUS_BS'],
                         ]))->result();
                     },
                     'headerOther' => [
                         'width' => '120',
-                        'prop' => 'ORI_BONUS_BS_ABBR',
+                        'prop'=>'ORI_BONUS_BS',
                     ],
                 ],
+                // 'REAL_BONUS_BS' => [
+                //     'header' => '实发蓝星管理奖',
+                //     'value' => function($row) {
+                //         return (new Price([
+                //             'value' => $row['REAL_BONUS_BS'],
+                //         ]))->result();
+                //     },
+                //     'headerOther' => [
+                //         'width' => '120',
+                //         'prop'=>'REAL_BONUS_BS',
+                //     ],
+                // ],
+//                'BONUS_BS_MNT' => [
+//                    'header' => 'Bluestar Management Award',//蓝星管理奖
+//                    'value' => function($row) {
+//                        return (new Price([
+//                            'value' => $row['BONUS_BS_MNT'],
+//                        ]))->result();
+//                    },
+//                    'headerOther' => [
+//                        'width' => '120',
+//                        'prop' => 'BONUS_BS_MNT',
+//                    ],
+//                ],
+//                'ORI_BONUS_BS_MNT' => [
+//                    'header' => 'Original amount of Bluestar Management Award',//蓝星管理奖原金额
+//                    'value' => function($row) {
+//                        return (new Price([
+//                            'value' => $row['ORI_BONUS_BS_MNT'],
+//                        ]))->result();
+//                    },
+//                    'headerOther' => [
+//                        'width' => '120',
+//                        'prop' => 'ORI_BONUS_BS_MNT',
+//                    ],
+//                ],
+//                'BONUS_BS_ABBR' => [
+//                    'header' => 'Blue star performance award',//蓝星业绩奖
+//                    'value' => function($row) {
+//                        return (new Price([
+//                            'value' => $row['BONUS_BS_ABBR'],
+//                        ]))->result();
+//                    },
+//                    'headerOther' => [
+//                        'width' => '120',
+//                        'prop' => 'BONUS_BS_ABBR',
+//                    ],
+//                ],
+//                'ORI_BONUS_BS_ABBR' => [
+//                    'header' => 'Original amount of blue star performance award',//蓝星业绩奖原金额
+//                    'value' => function($row) {
+//                        return (new Price([
+//                            'value' => $row['ORI_BONUS_BS_ABBR'],
+//                        ]))->result();
+//                    },
+//                    'headerOther' => [
+//                        'width' => '120',
+//                        'prop' => 'ORI_BONUS_BS_ABBR',
+//                    ],
+//                ],
 //                'BONUS_GX' => [
 //                    'header' => '共享奖',
 //                    'value' => function($row) {
@@ -492,7 +499,7 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
 //                    ],
 //                ],
                 'BONUS_REAL' => [
-                    'header' => 'Actual bonus',//实发奖金
+                    'header' => 'Actual Bonus',//实发奖金
                     'value' => function($row) {
                         return (new Price([
                             'value' => $row['BONUS_REAL'],
@@ -504,7 +511,7 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                     ],
                 ],
                 'BONUS_TOTAL' => [
-                    'header' => 'Total bonus',//总奖金
+                    'header' => 'Total Bonus',//总奖金
                     'value' => function($row) {
                         return (new Price([
                             'value' => $row['BONUS_TOTAL'],
@@ -515,18 +522,18 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                         'prop'=>'BONUS_TOTAL',
                     ],
                 ],
-                'MANAGE_TAX' => [
-                    'header' => 'Management Expense',//管理费
-                    'value' => function($row) {
-                        return (new Price([
-                            'value' => $row['MANAGE_TAX'],
-                        ]))->result();
-                    },
-                    'headerOther' => [
-                        'width' => '120',
-                        'prop'=>'MANAGE_TAX',
-                    ],
-                ],
+//                'MANAGE_TAX' => [
+//                    'header' => 'Management Expense',//管理费
+//                    'value' => function($row) {
+//                        return (new Price([
+//                            'value' => $row['MANAGE_TAX'],
+//                        ]))->result();
+//                    },
+//                    'headerOther' => [
+//                        'width' => '120',
+//                        'prop'=>'MANAGE_TAX',
+//                    ],
+//                ],
 //                'RECONSUME_POINTS' => [
 //                    'header' => '复销积分',
 //                    'value' => function($row) {
@@ -756,17 +763,17 @@ class PeriodBonusList extends \common\libs\dataList\DataList implements DataList
                 'SURPLUS_1L'=> ['isUserTable'=> false, 'name'=> 'I. market balance performance'],//一市场结余业绩
                 'PV_2L'=> ['isUserTable'=> false, 'name'=> 'II. new market performance'],//二市场新增业绩
                 'SURPLUS_2L'=> ['isUserTable'=> false, 'name'=> 'II. market balance performance'],//二市场结余业绩
-                'PV_3L'=> ['isUserTable'=> false, 'name'=> 'III. new market performance'],//三市场新增业绩
-                'SURPLUS_3L'=> ['isUserTable'=> false, 'name'=> 'III. market balance performance'],//三市场结余业绩
+//                'PV_3L'=> ['isUserTable'=> false, 'name'=> 'III. new market performance'],//三市场新增业绩
+//                'SURPLUS_3L'=> ['isUserTable'=> false, 'name'=> 'III. market balance performance'],//三市场结余业绩
                 'BONUS_BD'=> ['isUserTable'=> false, 'name'=> 'Service Award'],//服务奖
-                'BONUS_TG'=> ['isUserTable'=> false, 'name'=> 'Promotion Award'],//推广奖
-                'BONUS_XF'=> ['isUserTable'=> false, 'name'=> 'Consumption Award'],//消费奖
-                'BONUS_YJ'=> ['isUserTable'=> false, 'name'=> 'Performance Award'],//业绩奖
-                'BONUS_GX'=> ['isUserTable'=> false, 'name'=> 'Sharing Award'],//共享奖
+//                'BONUS_TG'=> ['isUserTable'=> false, 'name'=> 'Promotion Award'],//推广奖
+//                'BONUS_XF'=> ['isUserTable'=> false, 'name'=> 'Consumption Award'],//消费奖
+//                'BONUS_YJ'=> ['isUserTable'=> false, 'name'=> 'Performance Award'],//业绩奖
+//                'BONUS_GX'=> ['isUserTable'=> false, 'name'=> 'Sharing Award'],//共享奖
                 'BONUS_GL'=> ['isUserTable'=> false, 'name'=> 'Management Award'],//管理奖
                 'BONUS_QY'=> ['isUserTable'=> false, 'name'=> 'Team award'],//团队奖
-                'BONUS_YC'=> ['isUserTable'=> false, 'name'=> 'Honor Award'],//荣衔奖
-                'ORI_BONUS_STANDARD'=> ['isUserTable'=> false, 'name'=> 'Team growth Award'],//团队成长奖
+//                'BONUS_YC'=> ['isUserTable'=> false, 'name'=> 'Honor Award'],//荣衔奖
+//                'ORI_BONUS_STANDARD'=> ['isUserTable'=> false, 'name'=> 'Team growth Award'],//团队成长奖
                 'CALC_MONTH'=> ['isUserTable'=> false, 'name'=> 'Settlement month'],//结算月
             ];
         }

+ 2 - 0
frontendApi/modules/v1/controllers/BonusController.php

@@ -275,6 +275,7 @@ class BonusController extends BaseController {
 //                $data[] = ['name' => '服务奖金', 'value' => Tool::formatPrice($calcBonus['ORI_BONUS_BD'])];
 //            }
             // 管理奖金 就是新的蓝星奖
+            $data['ORI_BONUS_BS'] = ['name' => '管理奖金', 'value' => Tool::formatPrice($calcBonus['ORI_BONUS_BS'])];
             $data['ORI_BONUS_BS_MNT'] = ['name' => '管理奖金', 'value' => Tool::formatPrice($calcBonus['ORI_BONUS_BS_MNT'])];
             $data['ORI_BONUS_BS_ABBR'] = ['name' => '绩效奖金', 'value' => Tool::formatPrice($calcBonus['ORI_BONUS_BS_ABBR'])];
 
@@ -391,6 +392,7 @@ class BonusController extends BaseController {
 //                    $calcBonus[$key]['BONUS_BD'] = ['name' => '服务奖金', 'value' => Tool::formatPrice($calcBonus[$key]['ORI_BONUS_BD'])];
 //                }
                 // 管理奖金 就是新的蓝星奖
+                $calcBonus[$key]['ORI_BONUS_BS'] = ['name' => '管理奖金', 'value' => Tool::formatPrice($calcBonus[$key]['ORI_BONUS_BS'])];
                 $calcBonus[$key]['ORI_BONUS_BS_MNT'] = ['name' => '管理奖金', 'value' => Tool::formatPrice($calcBonus[$key]['ORI_BONUS_BS_MNT'])];
                 $calcBonus[$key]['ORI_BONUS_BS_ABBR'] = ['name' => '绩效奖金', 'value' => Tool::formatPrice($calcBonus[$key]['ORI_BONUS_BS_ABBR'])];
 

+ 1 - 1
frontendEle/index.html

@@ -3,7 +3,7 @@
   <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
-    <title>请稍后</title>
+    <title>Member Management System</title>
   </head>
   <body>
     <div id="app"></div>

+ 11 - 24
frontendEle/src/views/bonus/other.vue

@@ -4,23 +4,17 @@
       <el-table class="table-box" :data="tableData" style="width: 100%;">
         <el-table-column label="Pay cycle" prop="PERIOD_NUM.value" width="100"><!-- 期数 -->
         </el-table-column>
-        <el-table-column label="Welcome Bonus" prop="BONUS_TG.value" width="130"><!-- 销售奖金 -->
+        <el-table-column label="Welcome Bonus" prop="BONUS_TG.value" width="170"><!-- 销售奖金 -->
         </el-table-column>
-<!--        <el-table-column label="业绩奖金" prop="ORI_BONUS_QY.value">&lt;!&ndash; 业绩奖金 &ndash;&gt;-->
-<!--        </el-table-column>-->
-        <el-table-column label="Director Bonus" prop="ORI_BONUS_BS_MNT.value" width="125"><!-- 管理奖金 -->
+        <el-table-column label="Team Bonus" prop="ORI_BONUS_QY.value" width="170"><!-- 绩效奖 -->
         </el-table-column>
-        <el-table-column label="Team Bonus" prop="ORI_BONUS_BS_ABBR.value" width="120"><!-- 绩效奖金 -->
+        <el-table-column label="Director Bonus" prop="ORI_BONUS_BS.value" width="170"><!-- 蓝星奖金/管理奖 -->
         </el-table-column>
-        <el-table-column label="quarterly bonus" prop="ORI_BONUS_QUARTER.value" width="190px"><!-- 季度分红 -->
+        <el-table-column label="Quarterly Bonus" prop="ORI_BONUS_QUARTER.value" width="170"><!-- 季度分红 -->
         </el-table-column>
-<!--        <el-table-column label="Travel" prop="BONUS_TOURISM.value">&lt;!&ndash; 旅游奖 &ndash;&gt;-->
-<!--        </el-table-column>-->
-<!--        <el-table-column label="Car/Villa" prop="BONUS_GARAGE.value">&lt;!&ndash; 豪宅奖 &ndash;&gt;-->
-<!--        </el-table-column>-->
-        <el-table-column label="Total bonus" prop="BONUS_TOTAL.value" width="100"><!-- 合计 -->
+        <el-table-column label="Total Bonus" prop="BONUS_TOTAL.value" width="170"><!-- 合计 -->
         </el-table-column>
-        <el-table-column label="Actual bonus" prop="BONUS_REAL.value" width="110"><!-- 实发 -->
+        <el-table-column label="Actual Bonus" prop="BONUS_REAL.value" width="170"><!-- 实发 -->
         </el-table-column>
         <el-table-column >
           <template slot-scope="scope">
@@ -30,27 +24,20 @@
 
       </el-table>
     </div>
-    <el-dialog :title="`${periodNum}期奖金`" :visible.sync="dialogFlowVisible" width="70%">
-
+    <el-dialog :title="`Period ${periodNum} bonus`" :visible.sync="dialogFlowVisible" width="70%"><!-- 100期奖金 -->
         <el-descriptions title="" class="bonus-list" v-if="newData" :column="2" border>
           <el-descriptions-item class="bonus-item" label="Pay cycle">{{newData.PERIOD_NUM.value}}</el-descriptions-item><!-- 期数 -->
           <el-descriptions-item class="bonus-item" label="Member Level">{{newData.LAST_DEC_LV.value}}</el-descriptions-item><!-- 会员等级 -->
           <el-descriptions-item class="bonus-item" label="Welcome Bonus">{{newData.ORI_BONUS_TG.value}}</el-descriptions-item><!-- 销售奖金 -->
-<!--          <el-descriptions-item class="bonus-item" label="业绩奖金">{{newData.ORI_BONUS_QY.value}}</el-descriptions-item>&lt;!&ndash; 业绩奖金 &ndash;&gt;-->
-          <el-descriptions-item class="bonus-item" label="Director Bonus">{{newData.ORI_BONUS_BS_MNT.value}}</el-descriptions-item><!-- 管理奖金 -->
-          <el-descriptions-item class="bonus-item" label="Team Bonus">{{newData.ORI_BONUS_BS_ABBR.value}}</el-descriptions-item><!-- 绩效奖金 -->
-          <el-descriptions-item class="bonus-item" label="quarterly bonus">{{newData.ORI_BONUS_QUARTER.value}}</el-descriptions-item><!-- 季度分红 -->
-<!--          <el-descriptions-item class="bonus-item" label="Travel">{{newData.BONUS_TRAVEL.value}}</el-descriptions-item>&lt;!&ndash; 旅游奖 &ndash;&gt;-->
-<!--          <el-descriptions-item class="bonus-item" label="Car House">{{newData.BONUS_GARAGE.value}}</el-descriptions-item>&lt;!&ndash; 车房奖 &ndash;&gt;-->
-          <el-descriptions-item class="bonus-item" label="Total bonus">{{newData.BONUS_TOTAL.value}}</el-descriptions-item><!-- 合计 -->
-
+          <el-descriptions-item class="bonus-item" label="Team Bonus">{{newData.ORI_BONUS_QY.value}}</el-descriptions-item><!-- 绩效奖 -->
+          <el-descriptions-item class="bonus-item" label="Director Bonus">{{newData.ORI_BONUS_BS.value}}</el-descriptions-item><!-- 蓝星奖金/管理奖 -->
+          <el-descriptions-item class="bonus-item" label="Quarterly Bonus">{{newData.ORI_BONUS_QUARTER.value}}</el-descriptions-item><!-- 季度分红 -->
+          <el-descriptions-item class="bonus-item" label="Total Bonus">{{newData.BONUS_TOTAL.value}}</el-descriptions-item><!-- 合计 -->
           <el-descriptions-item class="bonus-item" label="Actual bonus">{{newData.BONUS_REAL.value}}</el-descriptions-item><!-- 实发奖金 -->
           <el-descriptions-item class="bonus-item" label="Left newly increased performance">{{newData.PV_1L.value}}</el-descriptions-item><!-- 一市场新增 -->
           <el-descriptions-item class="bonus-item" label="Left surplus performance">{{newData.SURPLUS_1L.value}}</el-descriptions-item><!-- 一市场结余 -->
           <el-descriptions-item class="bonus-item" label="Right newly increased performance">{{newData.PV_2L.value}}</el-descriptions-item><!-- 二市场新增 -->
           <el-descriptions-item class="bonus-item" label="Right surplus performance">{{newData.SURPLUS_2L.value}}</el-descriptions-item><!-- 二市场结余 -->
-<!--          <el-descriptions-item class="bonus-item" label="三市场新增">{{newData.PV_3L.value}}</el-descriptions-item>&lt;!&ndash; 三市场新增 &ndash;&gt;-->
-<!--          <el-descriptions-item class="bonus-item" label="三市场结余">{{newData.SURPLUS_3L.value}}</el-descriptions-item>&lt;!&ndash; 三市场结余 &ndash;&gt;-->
         </el-descriptions>
     </el-dialog>
   </div>