23 lines
397 B
Vue
23 lines
397 B
Vue
|
<!--
|
||
|
* @Author: Kane
|
||
|
* @Date: 2023-01-12 14:43:46
|
||
|
* @LastEditors: Kane
|
||
|
* @LastEditTime: 2023-01-12 14:43:48
|
||
|
* @FilePath: \admin_system\src\views\info\StaffInfo.vue
|
||
|
* @Description:
|
||
|
*
|
||
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||
|
-->
|
||
|
<template>
|
||
|
<div>员工信息查询</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "staff-info",
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|