保存进度!

This commit is contained in:
2023-01-18 00:39:30 +08:00
parent e602271ebe
commit 8d805b007a
2 changed files with 17 additions and 11 deletions

View File

@@ -2,7 +2,7 @@
* @Author: Kane
* @Date: 2023-01-12 14:43:46
* @LastEditors: Kane
* @LastEditTime: 2023-01-14 23:12:20
* @LastEditTime: 2023-01-18 00:38:04
* @FilePath: \admin_system\src\views\info\StaffInfo.vue
* @Description:
*
@@ -19,12 +19,15 @@
<el-button type="danger">查询</el-button>
</el-col>
</el-row>
</el-form>
</div>
<div>
<el-table ref="table" :data="table_data"> </el-table>
</div>
</template>
<script>
/* eslint-disable */
export default {
name: "staff-info",
data()
@@ -33,6 +36,9 @@ export default {
query_param: {
staff_code: "",
},
table_data: [
{ staff_name: "王炜", staff_code: "588", p13uid: "wangwei-202" },
],
};
},
};