i-null-bottom.vue 522 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view>
  3. <view class="line"></view>
  4. <view class="null">
  5. <text>— 到底啦 —</text>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. };
  14. }
  15. }
  16. </script>
  17. <style lang="scss">
  18. .line{
  19. width: 100%;
  20. height: 6rpx;
  21. background-color: #F0F0F0;
  22. }
  23. .null{
  24. margin-top: 30rpx;
  25. margin-bottom: 120rpx;
  26. text-align: center;
  27. height: 36rpx;
  28. font-size: 28rpx;
  29. font-family: MicrosoftYaHei;
  30. color: #9B9B9B;
  31. line-height: 36rpx;
  32. }
  33. </style>