加入需求管理模块。

This commit is contained in:
2023-01-26 00:01:29 +08:00
parent f7da18f679
commit a7f05c10c3
6 changed files with 154 additions and 43 deletions

View File

@@ -0,0 +1,37 @@
<!--
* @Author: Kane
* @Date: 2023-01-25 23:16:29
* @LastEditors: Kane
* @LastEditTime: 2023-01-25 23:19:00
* @FilePath: \admin_system\src\views\requirement\RequirementEditing.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<!--
* @Author: Kane
* @Date: 2023-01-25 23:13:47
* @LastEditors: Kane
* @LastEditTime: 2023-01-25 23:15:21
* @FilePath: \admin_system\src\views\requirement\RequirementManager.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
需求编辑页面
</template>
<script>
export default {
name: "requirement-editing",
data()
{
return {};
},
};
</script>
<style scoped>
</style>

View File

@@ -0,0 +1,31 @@
<!--
* @Author: Kane
* @Date: 2023-01-25 23:13:47
* @LastEditors: Kane
* @LastEditTime: 2023-01-25 23:51:03
* @FilePath: \admin_system\src\views\requirement\RequirementManager.vue
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
-->
<template>
<el-scrollbar>
</el-scrollbar>
</template>
<script>
export default {
name: "requirement-manager",
data()
{
return {};
},
};
</script>
<style scoped>
.el-scrollbar {
height: calc(100vh - 90px);
}
</style>