|
@@ -18,6 +18,17 @@
|
|
|
<m-button type="primary" text @click="onEdit(row)">编辑</m-button>
|
|
|
<m-button type="danger" text @click="onDelete(row)">删除</m-button>
|
|
|
</template> -->
|
|
|
+ <template #salaryAmount-header>
|
|
|
+ 固定薪资
|
|
|
+ <el-popover
|
|
|
+ placement="top-start"
|
|
|
+ title="计算公式"
|
|
|
+ width="300"
|
|
|
+ trigger="hover"
|
|
|
+ content="固定薪资 = 工资系数 * 基础工资系数">
|
|
|
+ <span slot="reference" class="el-icon-question"></span>
|
|
|
+ </el-popover>
|
|
|
+ </template>
|
|
|
</m-table>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -40,6 +51,8 @@ export default {
|
|
|
{ label: '岗位名称', prop: 'postName' },
|
|
|
{ label: '人员类别', prop: 'personnelCategory' },
|
|
|
{ label: '职务层级', prop: 'jobLevel' },
|
|
|
+ { label: '工资系数', prop: 'coefficient' },
|
|
|
+ { label: '基础工资系数', prop: 'basicSalary' },
|
|
|
{ label: '薪酬档次', prop: 'salaryCategory', align: 'center' },
|
|
|
{ label: '薪酬等级', prop: 'salaryLevel', align: 'center' },
|
|
|
{ label: '固定薪资', prop: 'salaryAmount', align: 'center' }
|