Merge branch 'feature-requirement' of http://222.76.244.118:3000/CPICXIM/it-console into feature-requirement
...
This commit is contained in:
commit
46cfdc28a6
13
code/ts/后端辅助工具/src/DataType/Template.ts
Normal file
13
code/ts/后端辅助工具/src/DataType/Template.ts
Normal file
@ -0,0 +1,13 @@
|
||||
|
||||
interface Point
|
||||
{
|
||||
x: number;
|
||||
y: number;
|
||||
}
|
||||
|
||||
function radius<TPoint>(): TPoint
|
||||
{
|
||||
result: TPoint;
|
||||
|
||||
return result;
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
* @Author: Kane
|
||||
* @Date: 2022-12-14 15:12:46
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-02-04 22:36:13
|
||||
* @LastEditTime: 2023-02-21 13:09:15
|
||||
* @FilePath: /IT工具综合平台/src/router/index.js
|
||||
* @Description: 定义应用路由配置
|
||||
*
|
||||
@ -91,7 +91,28 @@ const routes = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{//信息管理
|
||||
{
|
||||
//信息查询
|
||||
path: "/query_info",
|
||||
name: "QueryInfo",
|
||||
meta: {
|
||||
title: "信息查询",
|
||||
icon: "search",
|
||||
},
|
||||
component: () => import("@/layout/Index.vue"),
|
||||
children: [
|
||||
{
|
||||
path: "/query_stuff",
|
||||
name: "QueryStuff",
|
||||
meta: {
|
||||
title: "人员信息",
|
||||
icon: "user",
|
||||
},
|
||||
component: () => import("@/views/info/StaffInfo.vue"),
|
||||
},
|
||||
],
|
||||
},
|
||||
{//权限管理
|
||||
path: "/privilege",
|
||||
name: "Privilege",
|
||||
meta: {
|
||||
|
124
code/web/IT工具综合平台/src/views/info/StaffInfo.vue
Normal file
124
code/web/IT工具综合平台/src/views/info/StaffInfo.vue
Normal file
@ -0,0 +1,124 @@
|
||||
<!--
|
||||
* 佛曰:
|
||||
* 写字楼里写字间,写字间里程序员;
|
||||
* 程序人员写程序,又拿程序换酒钱。
|
||||
* 酒醒只在网上坐,酒醉还来网下眠;
|
||||
* 酒醉酒醒日复日,网上网下年复年。
|
||||
* 但愿老死电脑间,不愿鞠躬老板前;
|
||||
* 奔驰宝马贵者趣,公交自行程序员。
|
||||
* 别人笑我忒疯癫,我笑自己命太贱;
|
||||
* 不见满街漂亮妹,哪个归得程序员?
|
||||
* @Author: Kane
|
||||
* @Date: 2023-02-21 11:03:15
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-02-21 15:35:25
|
||||
* @FilePath: /IT工具综合平台/src/views/info/StaffInfo.vue
|
||||
* @Description:<
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
<div class="view_wrapper">
|
||||
<div class="query_wrapper">
|
||||
<el-row gutter="10">
|
||||
<el-col :span="2">
|
||||
<span>姓名</span>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-input v-model="query_param.stuffName"></el-input>
|
||||
</el-col>
|
||||
<el-col :span="2">
|
||||
<span>工号</span>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-input v-model="query_param.stuffName"></el-input>
|
||||
</el-col>
|
||||
<el-col :span="2">
|
||||
<span>P13账号</span>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-input v-model="query_param.stuffName"></el-input>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row gutter="10">
|
||||
<el-col :span="2">
|
||||
<span>部门</span>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-input v-model="query_param.stuffName"></el-input>
|
||||
</el-col>
|
||||
<el-col :span="2">
|
||||
<span>部门代码</span>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-input v-model="query_param.stuffName"></el-input>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<div class="toolbutton-wrapper">
|
||||
<el-button type="primary" icon="search">查询</el-button>
|
||||
<el-button icon="Refresh">重置</el-button>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { reactive } from "vue";
|
||||
|
||||
export default {
|
||||
name: "StuffInfo",
|
||||
setup()
|
||||
{
|
||||
const query_param = reactive(
|
||||
{
|
||||
stuffName: "",
|
||||
stuffCode: "",
|
||||
p13UID: "",
|
||||
departmentCode: "",
|
||||
departmentName: "",
|
||||
}
|
||||
);
|
||||
|
||||
return {
|
||||
query_param,
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.view_wrapper {
|
||||
border-radius: 5px;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.query_wrapper {
|
||||
min-width: 800px;
|
||||
max-width: 1200px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.query_wrapper .el-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.query_wrapper .el-row+.el-row {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.query_wrapper .el-row span {
|
||||
display: block;
|
||||
text-align: right;
|
||||
font-size: 15px;
|
||||
color: #5f5f5f;
|
||||
}
|
||||
|
||||
.toolbutton-wrapper {
|
||||
display: flex;
|
||||
justify-content: right;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
Loading…
x
Reference in New Issue
Block a user