重构样式
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
yiqiu
2025-12-25 14:01:36 +08:00
parent 8d862e3a11
commit 46adb018e0
8 changed files with 433 additions and 345 deletions

View File

@@ -98,11 +98,24 @@ $(function () {
`);
});
}
// 合作伙伴
if (commentObj.partner && commentObj.partner.length > 0) {
commentObj.partner.forEach((item) => {
$("#partnerBox").append(`
<div class="honor-item">
<div class="honor-icon">
<img src="${item.img}" alt="${item.name}">
</div>
<h4 class="honor-name">${item.name}</h4>
</div>
`);
});
}
}
// 获取通用配置信息
function getCommentInfo() {
$.ajax({
url: "/console/v1/common",
url: "/console/v1/theme/config",
method: "get",
headers: {
Authorization: "Bearer" + " " + localStorage.jwt,