1234567891011121314151617181920212223 |
- <template>
- <view class="open-address">
- 地址数据
- </view>
- </template>
- <script setup>
- </script>
- <style scoped>
- .open-address{
- height: 100vh;
- width: 100vw;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 999999;
- /* background: #f0f0f0; */
- background: red;
- display: flex;
- flex-direction: column;
- }
- </style>
|