Skip to content

Commit e582fee

Browse files
committed
feat(Person): 新增员工管理模块
1 parent 65d81db commit e582fee

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

src/icons/svg/menu/员工管理.svg

Lines changed: 1 addition & 0 deletions
Loading

src/views/person/Person.vue

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!--
2+
* @file: 员工管理
3+
* @author: BoBo
4+
* @copyright: BoBo
5+
* @Date: 2020年12月18日16:54:49
6+
-->
7+
8+
<template>
9+
<div class="page-container">
10+
<CrudTable
11+
ref="table"
12+
tableName="person"
13+
tableTitle="员工管理"
14+
fullHeight
15+
orderCondition="timestamp desc"
16+
:visibleList="{
17+
btnDel: true,
18+
}"
19+
/>
20+
</div>
21+
</template>
22+
23+
<script>
24+
import { Vue, Component } from 'vue-property-decorator';
25+
26+
@Component({
27+
name: 'Person',
28+
})
29+
export default class Person extends Vue {}
30+
</script>

0 commit comments

Comments
 (0)