Remove useless code.

pull/9/head
ruibaby 2019-05-09 22:09:42 +08:00
parent 0d777bf3af
commit 38a7004169
2 changed files with 3 additions and 29 deletions

View File

@ -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>

View File

@ -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() {