12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!-- 数据看板-首页 -->
- <template>
- <view class="dataBoard">
-
- </view>
- </template>
- <script>
- import {
- config
- } from '@/api/request/config.js'
- import {
- } from '@/pages_basics/api/index.js'
- export default {
- name: "dataBoard",
- components: {
-
- },
- data() {
- return {
-
- }
- },
- created() {
- },
- beforeMount() {
- },
- mounted() {},
- methods: {
-
- },
- }
- </script>
- <style lang="stylus" scoped>
- .dataBoard {
- height: 100%;
- width: 100%;
- background: #363744;
- }
- </style>
|