保存进度!

This commit is contained in:
Kane Wang 2023-01-13 18:00:27 +08:00
parent 8d72241618
commit 3ab267754c
1 changed files with 14 additions and 11 deletions

View File

@ -2,7 +2,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2023-01-12 14:43:46 * @Date: 2023-01-12 14:43:46
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-01-13 14:05:21 * @LastEditTime: 2023-01-13 16:53:55
* @FilePath: \admin_system\src\views\info\StaffInfo.vue * @FilePath: \admin_system\src\views\info\StaffInfo.vue
* @Description: * @Description:
* *
@ -10,15 +10,18 @@
--> -->
<template> <template>
<div class="query_box"> <div class="query_box">
<el-row :gutter="10" class="el-row"> <el-form inline="true">
<el-col :span="6" class="el-label"><label>工号或P13账号</label></el-col> <el-form-item label="员工工号或P13账号">
<el-col :span="10"> <el-row :gutter="10" class="el-row">
<el-input v-model="query_param.staff_code"></el-input> <el-col :span="10">
</el-col> <el-input v-model="query_param.staff_code"></el-input>
<el-col :span="8"> </el-col>
<el-button type="danger">查询</el-button> <el-col :span="8">
</el-col> <el-button type="danger">查询</el-button>
</el-row> </el-col>
</el-row>
</el-form-item>
</el-form>
</div> </div>
</template> </template>
@ -55,6 +58,6 @@ export default {
} }
.query_box:hover { .query_box:hover {
box-shadow: 0px 0px 3px 3px #bbbbbbef; box-shadow: 0px 0px 3px 3px #cccccc;
} }
</style> </style>