diary.vue 330 B

1234567891011121314151617
  1. <template>
  2. <view class="sub-base-container">
  3. 123
  4. </view>
  5. </template>
  6. <script setup>
  7. import config from "@/api/config.js"
  8. </script>
  9. <style lang="scss" scoped>
  10. @import "@/static/style/mixin.scss";
  11. .sub-base-container{
  12. background-image: linear-gradient(0deg,#FFFFFF,rgba(33, 153, 248, 0.6));
  13. min-height: 484rpx;
  14. }
  15. </style>