| 12345678910111213141516171819202122 |
- <template>
- <div class="notOpen">
- <span>{{this.title}}</span>
- </div>
- </template>
- <script>
- export default {
- props: ['title'],
- }
- </script>
- <style scoped>
- .notOpen{
- text-align: left;
- background:#6F6F6F;
- padding-left: 0.33rem;
- font-size: 0.24rem;
- color: #B8B8B8;
- height: 0.88rem;
- line-height: 0.88rem;
- text-align: center;
- }
- </style>
|