Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/halo-dev/halo-admin
Browse files Browse the repository at this point in the history
  • Loading branch information
ruibaby committed Jun 12, 2019
2 parents cf735a4 + 4c0a72e commit b4875a1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/views/interface/ThemeList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -462,12 +462,16 @@ export default {
},
handleFetching() {
this.fetchButtonLoading = true
themeApi.fetching(this.fetchingUrl).then(response => {
this.$message.success('拉取成功!')
this.uploadVisible = false
this.fetchButtonLoading = false
this.loadThemes()
})
themeApi
.fetching(this.fetchingUrl)
.then(response => {
this.$message.success('拉取成功!')
this.uploadVisible = false
this.loadThemes()
})
.finally(() => {
this.fetchButtonLoading = false
})
},
handleReload() {
themeApi.reload().then(response => {
Expand Down
1 change: 1 addition & 0 deletions src/views/system/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<ul>
<li>版本:{{ environments.version }}</li>
<li>数据库:{{ environments.database }}</li>
<li>运行模式:{{ environments.mode }}</li>
<li>启动时间:{{ environments.startTime | moment }}</li>
</ul>
<a
Expand Down

0 comments on commit b4875a1

Please sign in to comment.