|
@@ -10,7 +10,7 @@
|
|
|
<el-row :gutter="16" style="height: 100%;">
|
|
|
<el-col :span="24" class="panel">
|
|
|
<div style="max-height: 50%;">
|
|
|
- <TodoList2 />
|
|
|
+ <TodoList2 ref="todoList2" />
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="panel">
|
|
@@ -19,7 +19,7 @@
|
|
|
</div>
|
|
|
</el-col>
|
|
|
<el-col class="panel" :span="24">
|
|
|
-<!-- <Announcement />-->
|
|
|
+ <!-- <Announcement />-->
|
|
|
<div style="max-height: 50%; margin-top: 3px">
|
|
|
<MyNotifyList2 />
|
|
|
</div>
|
|
@@ -49,9 +49,9 @@ import Wx from "./components/wx.vue";
|
|
|
import Footer from "@/components/footer/index.vue";
|
|
|
export default {
|
|
|
name: "Dashboard", // If you want the include property of keep-alive to take effect, you must name the component
|
|
|
- data(){
|
|
|
- return{
|
|
|
- innerVisible:true
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ innerVisible: true
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
@@ -72,11 +72,10 @@ export default {
|
|
|
Footer,
|
|
|
|
|
|
},
|
|
|
- activated() {
|
|
|
-
|
|
|
+ activated() {
|
|
|
},
|
|
|
- methods:{
|
|
|
- getInnerStatus(status){
|
|
|
+ methods: {
|
|
|
+ getInnerStatus(status) {
|
|
|
this.innerVisible = status
|
|
|
}
|
|
|
}
|
|
@@ -84,9 +83,10 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
-.adminui-topbar + .container {
|
|
|
+.adminui-topbar+.container {
|
|
|
padding: 12px 12px 8px 12px;
|
|
|
}
|
|
|
+
|
|
|
.container {
|
|
|
padding: 8px 12px;
|
|
|
display: flex;
|
|
@@ -95,6 +95,7 @@ export default {
|
|
|
.left-side {
|
|
|
flex: 1;
|
|
|
overflow: hidden;
|
|
|
+
|
|
|
.panel {
|
|
|
background-color: #fff;
|
|
|
}
|
|
@@ -110,13 +111,16 @@ export default {
|
|
|
overflow: hidden;
|
|
|
margin-bottom: 16px;
|
|
|
}
|
|
|
+
|
|
|
:deep(.panel-border) {
|
|
|
margin-bottom: 0;
|
|
|
border-bottom: 1px solid rgb(242, 243, 245);
|
|
|
}
|
|
|
+
|
|
|
.moduler-wrap {
|
|
|
border-radius: 4px;
|
|
|
background-color: #fff;
|
|
|
+
|
|
|
:deep(.text) {
|
|
|
font-size: 14px;
|
|
|
text-align: center;
|
|
@@ -133,6 +137,7 @@ export default {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&:hover {
|
|
|
.text {
|
|
|
color: var(--el-color-primary);
|
|
@@ -159,6 +164,7 @@ export default {
|
|
|
display: block;
|
|
|
margin-bottom: 10px;
|
|
|
}
|
|
|
+
|
|
|
.right-side {
|
|
|
// display: none;
|
|
|
width: 100%;
|