6a00874ffbc475c538cecedf6540f4e8cff82dc4.svn-base 439 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="notOpen">
  3. <span>{{this.title}}</span>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. props: ['title'],
  9. }
  10. </script>
  11. <style scoped>
  12. .notOpen{
  13. text-align: left;
  14. background:#6F6F6F;
  15. padding-left: 0.33rem;
  16. font-size: 0.24rem;
  17. color: #B8B8B8;
  18. height: 0.88rem;
  19. line-height: 0.88rem;
  20. text-align: center;
  21. }
  22. </style>