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
29
30
| <template>
| <div class="module_main">
| <span class="title_span">{{ title }}</span>
| </div>
| </template>
| <script>
| export default {
| props: {
| title: {
| type: String,
| default: ''
| }
| }
| }
| </script>
| <style lang="postcss">
| .module_main {
| height: 81px;
| line-height: 81px;
| background: #fff;
| border-bottom: 1px solid #eeeeee;
| }
| .title_span {
| font-size: 16px;
| font-family: PingFangSC-Medium, PingFang SC;
| font-weight: 600;
| color: rgba(0, 0, 0, 1);
| padding-left: 20px;
| }
| </style>
|
|