选煤厂安全管理系统前端代码
houzhongjian
2024-11-25 37b2044f04a09e89f82f8484279b5f06b7194481
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<template>
    <div>
      <h1>这里是主页</h1>
    </div>
<!--  <div>-->
<!--    <h1>应用列表</h1>-->
<!--  </div>-->
<!--  <el-skeleton :loading="loading" animated>-->
<!--    <div id="app" v-for="(item, index) in appList" :key="`dynamics-${index}`">-->
<!--      <div class="card" @click="gotoApp(item)">-->
<!--        <img :src="item.icon" style="width: 100px; height: 100px" />-->
<!--        <div>-->
<!--          {{item.appName}}-->
<!--        </div>-->
<!--      </div>-->
<!--    </div>-->
<!--  </el-skeleton>-->
 
</template>
<script lang="ts" setup>
 
import * as AppApi from '@/api/system/app'
import {Apps} from "@/views/Home/types";
import {CACHE_KEY, useCache} from "@/hooks/web/useCache";
 
 
defineOptions({ name: 'Home' })
 
const { wsCache } = useCache()
 
const loading = ref(true)
 
// let appList = reactive<Apps[]>([])
//
// const getAppList = async () => {
//   const data = await AppApi.getAppList()
//   appList = Object.assign(appList, data)
// }
//
// const getAppMenuList = async (id) => {
//   const data = await AppApi.getAppMenuList(id)
//   let userInfo = wsCache.get(CACHE_KEY.USER)
//   let routers = wsCache.get(CACHE_KEY.ROLE_ROUTERS)
//   console.log(userInfo)
//   console.log(routers)
//   userInfo.menus = data
//   wsCache.set(CACHE_KEY.USER, userInfo)
//   wsCache.set(CACHE_KEY.ROLE_ROUTERS, data)
//   window.location.href = '/sms/index'
// }
//
// const getAllApi = async () => {
//   await Promise.all([
//     getAppList()
//   ])
//   loading.value = false
// }
//
// // getAllApi()
//
// // 进入应用
// const gotoApp = async (item) => {
//   let id = item.id
//   getAppMenuList(id)
// }
 
</script>
 
<style lang="scss" scoped>
#app{
  width: 300px;
  height: 200px;
  display: inline-block;
  background: transparent;
}
.card{
  border: thin dashed gainsboro;
  width: 150px;
  height: 100px;
  padding: 30px;
  text-align: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bolder;
  color: blue;
  background: aliceblue;
  border-radius: 10px;
}
</style>