From 95fc665771abeb335b29e6d59fe74d69cf9c446f Mon Sep 17 00:00:00 2001
From: hanbaoshan <hanbaoshan@aiotlink.com>
Date: 星期四, 23 七月 2020 08:49:20 +0800
Subject: [PATCH] 首页更新,加入算法管理

---
 src/pages/desktop/index/App.vue |   14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/src/pages/desktop/index/App.vue b/src/pages/desktop/index/App.vue
index b58209a..aaa21d5 100644
--- a/src/pages/desktop/index/App.vue
+++ b/src/pages/desktop/index/App.vue
@@ -3,6 +3,7 @@
     <tools></tools>
     <preference></preference>
     <desktop></desktop>
+    <tools-entry></tools-entry>
     <dock ref="dock_model"></dock>
     <notice-tip ref="notice_tip_model"></notice-tip>
     <notification-center></notification-center>
@@ -16,12 +17,13 @@
 import NotificationCenter from './components/NotificationCenter';
 import NoticeTip from './components/NoticeTip';
 import Tools from './components/Tools';
+import ToolsEntry from './components/ToolsEntry';
 import axios from 'axios'
 
 export default {
   name: 'app',
   components: {
-    Desktop, Dock, Preference, NotificationCenter, NoticeTip, Tools
+    Desktop, Dock, Preference, NotificationCenter, NoticeTip, Tools, ToolsEntry
   },
   mounted() {
     document.getElementById('app').style.backgroundImage = process.env.VUE_APP_MAIN_URL;
@@ -113,6 +115,14 @@
   width: 100%;
   height: 100%;
   background-size: 100% 100%;
-  background-image: url("../../../assets/img/desktop/main.jpg");
+  background-image: url("../../../assets/img/desktop/desktop.png");
+  background-attachment: fixed;
+}
+
+.clearFix:after{
+  content: '';
+  display: block;
+  height: 0;
+  clear: both;
 }
 </style>

--
Gitblit v1.8.0