| 123456789101112131415161718192021 |
- <template>
- <view class="container">
- <view class="">待处理池</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- width: 100vw;
- height: calc(100vh - 102rpx);
- background-color: salmon;
- }
- </style>
|