马宇豪
2023-06-14 d2d8982a787bf7267612c19983798d7aaa0c37fe
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>