You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.4 KiB
69 lines
1.4 KiB
<!--
|
|
* @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>
|