员工列表渲染和分页功能

This commit is contained in:
jiutianzhiyu 2021-03-30 05:21:24 +08:00
parent 3bab0c3f8a
commit ff74112724
2 changed files with 74 additions and 4 deletions

View File

@ -5,3 +5,13 @@ export function getEmployeeSimple() {
url: '/sys/user/simple' url: '/sys/user/simple'
}) })
} }
/**
* 获取员工的综合列表数据
* ***/
export function getEmployeeList(params) {
return request({
url: '/sys/user',
params
})
}

View File

@ -1,16 +1,76 @@
<template> <template>
<div class="dashboard-container"> <div class="dashboard-container">
<div class="app-container"> <div class="app-container">
<h2> <page-tools :show-before="true">
员工 <span slot="before">共166条记录</span>
</h2> <template slot="after">
<el-button size="small" type="warning">导入</el-button>
<el-button size="small" type="danger">导出</el-button>
<el-button size="small" type="primary">新增员工</el-button>
</template>
</page-tools>
<!-- 放置表格和分页 -->
<el-card v-loading="loading">
<el-table border :data="list" :default-sort="{prop:'workNumber',order:'ascending'}">
<el-table-column label="序号" sortable="" type="index" />
<el-table-column label="姓名" sortable="" prop="username" />
<el-table-column label="工号" sortable prop="workNumber" />
<el-table-column label="手机号" sortable="" prop="mobile" />
<el-table-column label="聘用形式" sortable="" prop="formOfEmployment" />
<el-table-column label="部门" sortable="" prop="departmentName" />
<el-table-column label="入职时间" sortable="" prop="timeOfEntry" />
<el-table-column label="账户状态" sortable="" prop="enableState" />
<el-table-column label="操作" fixed="right" width="280">
<template>
<el-button type="text" size="small">查看</el-button>
<el-button type="text" size="small">转正</el-button>
<el-button type="text" size="small">调岗</el-button>
<el-button type="text" size="small">离职</el-button>
<el-button type="text" size="small">角色</el-button>
<el-button type="text" size="small">删除</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<el-row type="flex" justify="center" align="middle" style="height: 60px">
<el-pagination layout="prev, pager, next" :page-size="page.size" :current-page="page.page" :total="page.total" @current-change="changePage" />
</el-row>
</el-card>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
import { getEmployeeList } from '@/api/employees'
export default { export default {
data() {
return {
list: [], //
page: {
page: 1, //
size: 10, //
total: 0 //
}
}
},
created() {
this.getEmployeeList()
},
methods: {
//
changePage(newPage) {
this.page.page = newPage
this.getEmployeeList()
},
//
async getEmployeeList() {
this.loading = true
const { total, rows } = await getEmployeeList(this.page)
this.page.total = total
this.list = rows
this.loading = false
}
}
} }
</script> </script>