main
阿丽 3 years ago
parent 3e47bda42a
commit a3a4fd652c

@ -35,13 +35,22 @@ export default [
meta: {title: '权限管理'}, meta: {title: '权限管理'},
children: [ children: [
{ {
path: '/Authority/_details', path: '/Authority/_member',
name: "Authority_details", name: "Authority_member",
title: "账单管理-详情", title: "成员管理",
icon: 'profile', icon: 'profile',
hide: true, hide: false,
component: resolve => require(['@/views/Authority/_details'], resolve), component: resolve => require(['@/views/Authority/_member'], resolve),
meta: {title: '账单管理-详情'}, meta: {title: '成员管理'},
},
{
path: '/Authority/_role',
name: "Authority_role",
title: "角色管理",
icon: 'profile',
hide: false,
component: resolve => require(['@/views/Authority/_role'], resolve),
meta: {title: '角色管理'},
} }
] ]
}, },
@ -51,7 +60,6 @@ export default [
title: "考勤管理", title: "考勤管理",
icon: 'profile', icon: 'profile',
hide: false, hide: false,
redirect: '/attendance/record',
component: resolve => require(['@/views/Attendance'], resolve), component: resolve => require(['@/views/Attendance'], resolve),
meta: {title: '考勤管理'}, meta: {title: '考勤管理'},
children: [ children: [
@ -92,6 +100,45 @@ export default [
meta: {title: '排班计划'}, meta: {title: '排班计划'},
}, },
]
},
{
path: '/Community',
name: "Community",
title: "社区档案",
icon: 'profile',
hide: false,
component: resolve => require(['@/views/Community'], resolve),
meta: {title: '社区档案'},
children: [
{
path: '/Community/_balcony',
name: "Community_balcony",
title: "楼座管理",
icon: 'profile',
hide: false,
component: resolve => require(['@/views/Community/_balcony'], resolve),
meta: {title: '楼座管理'},
},
{
path: '/Community/_house',
name: "Community_house",
title: "房屋管理",
icon: 'profile',
hide: false,
component: resolve => require(['@/views/Community/_house'], resolve),
meta: {title: '房屋管理'},
},
{
path: '/Community/owner',
name: "Community_owner",
title: "业主管理",
icon: 'profile',
hide: false,
component: resolve => require(['@/views/Community/_owner'], resolve),
meta: {title: '业主管理'},
},
] ]
} }
] ]

@ -0,0 +1,21 @@
<!--
* @Author: your name
* @Date: 2021-11-22 15:56:04
* @LastEditTime: 2021-11-22 17:14:10
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /ansu-business/src/views/Waybill/index.vue
-->
<template>
<router-view></router-view>
</template>
<script>
export default {
name: "Attendance"
}
</script>
<style lang="less" scoped>
</style>

@ -0,0 +1,68 @@
<!--
* @Author: your name
* @Date: 2021-11-22 15:56:04
* @LastEditTime: 2021-11-22 17:14:10
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /ansu-business/src/views/Waybill/index.vue
-->
<template>
<div class="box">
<div class="left">
<a-list :grid="{ gutter: 4, column: 1 }" :data-source="data" >
<a-list-item slot="renderItem" slot-scope="item," style="height:100px" >
<a-card :title="item.title" >
负责管理各部门的业务安排
</a-card>
</a-list-item>
</a-list>
</div>
<div class="right">
</div>
</div>
</template>
<script>
const data = [
{
title: "管理员",
},
{
title: "部门经理",
},
{
title: "保安",
},
{
title: "保洁员",
},
{
title: "会计",
},
{
title: "出纳员",
},
];
export default {
data() {
return {
data,
};
},
};
</script>
<style lang="less" scoped>
.box {
display: flex;
.left {
width: 25%;
height: 650px;
border-right: 3px solid rgb(175, 174, 174);
}
.right {
width: 100%;
margin-left: 10px;
}
}
</style>

@ -1,20 +1,20 @@
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-11-23 10:27:56 * @Date: 2021-11-22 15:56:04
* @LastEditTime: 2021-11-23 10:30:58 * @LastEditTime: 2021-11-22 17:14:10
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /ansu-business/src/views/Billing/_details/index.vue * @FilePath: /ansu-business/src/views/Waybill/index.vue
--> -->
<template> <template>
<div> <div>
444444 4rf4444
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: "Billing_details"
} }
</script> </script>

@ -7,14 +7,12 @@
* @FilePath: /ansu-business/src/views/Waybill/index.vue * @FilePath: /ansu-business/src/views/Waybill/index.vue
--> -->
<template> <template>
<div> <router-view></router-view>
44444
</div>
</template> </template>
<script> <script>
export default { export default {
name: "Billing" name: "Authority"
} }
</script> </script>

@ -0,0 +1,65 @@
<!--
* @Author: your name
* @Date: 2021-11-22 15:56:04
* @LastEditTime: 2021-11-22 17:14:10
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /ansu-business/src/views/Waybill/index.vue
-->
<template>
<div class="box">
<div class="top">
<div class="topleft">
<a-button-group>
<a-button icon="plus" type="primary">添加楼栋</a-button>
<a-button>导入</a-button>
</a-button-group>
</div>
<div class="topright">
<a-form-model :model="form" layout="inline">
<a-form-model-item>
<a-input-search v-model="form.c" placeholder="请输入搜索信息" style="width: 160px"></a-input-search>
</a-form-model-item>
</a-form-model>
</div>
</div>
</div>
</template>
<script>
export default {
data(){
return{
form: {
a: "",
b: "",
c: "",
page:1
},
};
},
methods: {
},
};
</script>
<style lang="less" scoped>
.box {
width: 100%;
}
.top {
width: 100%;
display: flex;
justify-content: space-between;
.topleft {
width: 25%;
height: 50px;
}
.tpright {
width: 75%;
height: 50px;
}
}
</style>

@ -0,0 +1,21 @@
<!--
* @Author: your name
* @Date: 2021-11-22 15:56:04
* @LastEditTime: 2021-11-22 17:14:10
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: /ansu-business/src/views/Waybill/index.vue
-->
<template>
<router-view></router-view>
</template>
<script>
export default {
name: "Community"
}
</script>
<style lang="less" scoped>
</style>
Loading…
Cancel
Save