12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view>
- <view class="line"></view>
- <view class="null">
- <text>— 到底啦 —</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .line{
- width: 100%;
- height: 6rpx;
- background-color: #F0F0F0;
- }
- .null{
- margin-top: 30rpx;
- margin-bottom: 120rpx;
- text-align: center;
- height: 36rpx;
- font-size: 28rpx;
- font-family: MicrosoftYaHei;
- color: #9B9B9B;
- line-height: 36rpx;
- }
- </style>
|