鲁班七号
2023-05-22 83d52c58d6717a2233e1b04e22769f58afcbf20b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<template>
  <a-card title="快捷操作" class="quick">
    <a style="color:blue">待叫应(1)</a>
    <a >待审核</a>
    <a>发布通知</a>
    <a>查看统计</a>
    <a>用户管理</a>
    <!-- <a-button><a-icon type="plus" />添加</a-button> -->
  </a-card>
</template>
 
<script>
export default {
  name: 'quick-navigation'
}
</script>
 
<style lang="less" scoped>
.quick {
  a {
    display: inline-block;
    width: 25%;
    font-size: 14px;
    margin-bottom: 13px;
    color: #333;
  }
}
</style>