|
|
@@ -91,19 +91,26 @@
|
|
|
</div>
|
|
|
<div class="panel" v-if="permission.hasPermission(`config/bonus-dec-level`)">
|
|
|
<div class="panel-heading">
|
|
|
- 团队奖
|
|
|
+ 绩效奖
|
|
|
</div>
|
|
|
<div class="panel-wrapper">
|
|
|
<div class="panel-body">
|
|
|
<el-table :data="decLevelTableData" stripe style="width: 100%;">
|
|
|
<el-table-column prop="LEVEL_NAME" label="级别名称"></el-table-column>
|
|
|
- <el-table-column label="拿奖比例(%)">
|
|
|
+ <el-table-column label="拿奖比例">
|
|
|
<template slot-scope="scope">
|
|
|
<el-input v-model="scope.row.QY_PERCENT" min="0" max="100">
|
|
|
<template slot="append">%</template>
|
|
|
</el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="个人封顶值">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-input v-model="scope.row.INCOME_CAP" min="0">
|
|
|
+ <template slot="append">$</template>
|
|
|
+ </el-input>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
<div class="panel-footer">
|