parent
3e47bda42a
commit
a3a4fd652c
@ -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
|
||||
* @Date: 2021-11-23 10:27:56
|
||||
* @LastEditTime: 2021-11-23 10:30:58
|
||||
* @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/Billing/_details/index.vue
|
||||
* @FilePath: /ansu-business/src/views/Waybill/index.vue
|
||||
-->
|
||||
<template>
|
||||
<div>
|
||||
444444
|
||||
4rf4444
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "Billing_details"
|
||||
|
||||
}
|
||||
</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…
Reference in new issue