mirror of https://github.com/halo-dev/halo-admin
Remove useless code.
parent
0d777bf3af
commit
38a7004169
|
@ -113,33 +113,4 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.page-menu-search {
|
|
||||||
text-align: center;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
.page-menu-tabs {
|
|
||||||
margin-top: 48px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.extra-img {
|
|
||||||
margin-top: -60px;
|
|
||||||
text-align: center;
|
|
||||||
width: 195px;
|
|
||||||
|
|
||||||
img {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.mobile {
|
|
||||||
.extra-img{
|
|
||||||
margin-top: 0;
|
|
||||||
text-align: center;
|
|
||||||
width: 96px;
|
|
||||||
|
|
||||||
img{
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -180,6 +180,7 @@
|
||||||
>
|
>
|
||||||
<a-card
|
<a-card
|
||||||
:bordered="false"
|
:bordered="false"
|
||||||
|
:loading="writeLoading"
|
||||||
:bodyStyle="{ padding: '16px' }"
|
:bodyStyle="{ padding: '16px' }"
|
||||||
>
|
>
|
||||||
<template slot="title">
|
<template slot="title">
|
||||||
|
@ -350,6 +351,7 @@ export default {
|
||||||
return {
|
return {
|
||||||
logType: logApi.logType,
|
logType: logApi.logType,
|
||||||
activityLoading: true,
|
activityLoading: true,
|
||||||
|
writeLoading: true,
|
||||||
logLoading: true,
|
logLoading: true,
|
||||||
countsLoading: true,
|
countsLoading: true,
|
||||||
logDrawerVisiable: false,
|
logDrawerVisiable: false,
|
||||||
|
@ -413,6 +415,7 @@ export default {
|
||||||
commentApi.listLatest(5, 'PUBLISHED').then(response => {
|
commentApi.listLatest(5, 'PUBLISHED').then(response => {
|
||||||
this.commentData = response.data.data
|
this.commentData = response.data.data
|
||||||
this.activityLoading = false
|
this.activityLoading = false
|
||||||
|
this.writeLoading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
listLatestLogs() {
|
listLatestLogs() {
|
||||||
|
|
Loading…
Reference in New Issue