保存进度!

This commit is contained in:
2023-01-13 15:15:57 +08:00
parent dcab19a765
commit 8d72241618
4 changed files with 61 additions and 17 deletions

View File

@@ -2,22 +2,59 @@
* @Author: Kane
* @Date: 2023-01-12 14:43:46
* @LastEditors: Kane
* @LastEditTime: 2023-01-12 14:43:48
* @LastEditTime: 2023-01-13 14:05:21
* @FilePath: \admin_system\src\views\info\StaffInfo.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
<div>员工信息查询</div>
<div class="query_box">
<el-row :gutter="10" class="el-row">
<el-col :span="6" class="el-label"><label>工号或P13账号</label></el-col>
<el-col :span="10">
<el-input v-model="query_param.staff_code"></el-input>
</el-col>
<el-col :span="8">
<el-button type="danger">查询</el-button>
</el-col>
</el-row>
</div>
</template>
<script>
export default {
name: "staff-info",
data()
{
return {
query_param: {
staff_code: "",
},
};
},
};
</script>
<style scoped>
.el-row {
display: flex;
justify-content: center;
align-items: center;
}
.el-label {
text-align: right;
}
.query_box {
width: 600px;
background-color: #fff;
border-radius: 5px;
padding: 15px;
}
.query_box:hover {
box-shadow: 0px 0px 3px 3px #bbbbbbef;
}
</style>