Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Hello-hao committed Jan 11, 2024
2 parents 2c5e699 + 8ee8cad commit 1ecd95f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/views/admin/about.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
<p style="font-size: 14px;"><span>开发者交流群:</span>&nbsp;
<span style="line-height: 16px;min-width: 100px;">864800972</span>
</p>
<a href="http://tbed.hellohao.cn" target="_blank" title="升级功能更强大的Core版" class="button">升级Core版本</a>

<Divider/>
<p style="font-size: 16px;">Hellohao图像托管程序这是一个基于多家对象存储源
JAVA语言编写SpringBoot框架开发的开源图像托管程序。</p>
Expand Down Expand Up @@ -274,5 +276,28 @@ export default {
height: 42px;
}
/*升级Core按钮*/
.button {
display: inline-block;
padding: 2px 20px;
background-color: #000;
color: #ecab69!important; /* 金色 */
text-decoration: none;
border: 2px solid #ecab69; /* 金色边框 */
border-radius: 15px;
font-weight: bold;
text-transform: uppercase;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.button:hover {
background-color: #222;
}
.button:active {
background-color: #111;
box-shadow: none;
}
</style>
3 changes: 3 additions & 0 deletions src/views/admin/setting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,9 @@ export default {
if (res.status == 200) {
if (res.data.code == '200') {
this.$Message.success(res.data.info);
setTimeout(() => {
window.location.reload();
}, 1300);
} else {
this.$Message.error(res.data.info);
}
Expand Down

0 comments on commit 1ecd95f

Please sign in to comment.