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.
52 lines
760 B
52 lines
760 B
2 years ago
|
<template>
|
||
|
<view class="content">
|
||
|
<view class="title">
|
||
|
<text class="number">{{num}}</text>
|
||
|
<text>{{title}}</text>
|
||
|
</view>
|
||
|
<view class="underline">
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name:"sectionTitle",
|
||
|
//props即为需要从组件外部传递进来的参数,包括标题文字title和序号num
|
||
|
props: {
|
||
|
num: {
|
||
|
type: String,
|
||
|
},
|
||
|
title: {
|
||
|
type: String,
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
.content {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
padding-top: 5px;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
color: #c5c5c5;
|
||
|
font-size: 16px;
|
||
|
font-style: italic;
|
||
|
font-weight: 600;
|
||
|
padding-bottom: 5px;
|
||
|
}
|
||
|
|
||
|
.underline {
|
||
|
width: 40px;
|
||
|
height: 4px;
|
||
|
background-color: #ebebeb;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.number {
|
||
|
font-size: 30px;
|
||
|
}
|
||
|
</style>
|