1234567891011121314151617 |
- <template>
- <view class="sub-base-container">
- 123
- </view>
- </template>
- <script setup>
- import config from "@/api/config.js"
- </script>
- <style lang="scss" scoped>
- @import "@/static/style/mixin.scss";
- .sub-base-container{
- background-image: linear-gradient(0deg,#FFFFFF,rgba(33, 153, 248, 0.6));
- min-height: 484rpx;
- }
- </style>
|