12345678910111213141516171819202122232425262728 |
- <template>
- <view>
- 我是后台首页啊
- </view>
- </template>
- <script setup>
- import {
- ref,
- reactive
- } from 'vue'
- import {
- HTTP
- } from '@/api/http.js'
- import {
- onShow,
- onLoad,
- onReachBottom
- } from '@dcloudio/uni-app'
- import {
- jieqiFn
- } from '@/config' //返回节气样式(a,b),a是节气名称,b是类型,1是返回背景颜色,2是返回边框颜色,3是返回字体颜色
- import DanMu from "@/components/DanMu/DanMu.vue"//弹幕
- </script>
- <style lang="scss" scoped>
- </style>
|