Skip to content

Commit

Permalink
feat(Person): 新增员工管理模块
Browse files Browse the repository at this point in the history
  • Loading branch information
BoBoooooo committed Dec 18, 2020
1 parent 65d81db commit e582fee
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/icons/svg/menu/员工管理.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions src/views/person/Person.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!--
* @file: 员工管理
* @author: BoBo
* @copyright: BoBo
* @Date: 2020年12月18日16:54:49
-->

<template>
<div class="page-container">
<CrudTable
ref="table"
tableName="person"
tableTitle="员工管理"
fullHeight
orderCondition="timestamp desc"
:visibleList="{
btnDel: true,
}"
/>
</div>
</template>

<script>
import { Vue, Component } from 'vue-property-decorator';
@Component({
name: 'Person',
})
export default class Person extends Vue {}
</script>

0 comments on commit e582fee

Please sign in to comment.