Commit 60ae9d3e authored by 黄奎's avatar 黄奎

页面修改

parent f2facf90
......@@ -639,6 +639,29 @@ export function RemoveBonusPlan(data) {
});
}
/**
* 生成人头奖励
*/
export function CreateEmpBonus(data) {
return request({
url: '/Bonus/CreateEmpBonus',
method: 'post',
data
});
}
/**
* 获取人头奖励分页列表
*/
export function queryPersonnelPeriodPage(data) {
return request({
url: '/Bonus/GetPersonnelPeriodPage',
method: 'post',
data
});
}
/**
* 获取人头奖金配置
*/
......
<style>
</style>
<template>
</template>
<script>
import {
getSchoolDropdown
} from '../../../api/school/index'
export default {
meta: {
title: "员工人头奖励"
},
props: {},
components: {
selectTree
},
data() {
return {
loading: false,
//列表数据参数
msg: {
PageIndex: 1,
PageSize: 10,
},
}
},
created() {
let userinfo = this.getLocalStorage();
},
mounted() {
},
methods: {
},
}
</script>
<style lang="sass">
@import url('~assets/css/table.sass')
</style>
\ No newline at end of file
......@@ -744,16 +744,11 @@ const routes = [{
component: () =>
import("pages/financial/market/marketStatistics.vue")
},
{
path: "/financial/market/empBonus", // 员工人头奖励
component: () =>
import("pages/financial/market/empBonus.vue")
},
{
path: "/administration/document", //行政公告
component: () =>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment