This commit is contained in:
Wxp 2025-08-12 18:10:55 +08:00
parent 495d6a2f9e
commit 7e5809afde
2 changed files with 9 additions and 7 deletions

View File

@ -1223,7 +1223,7 @@ button:active {
} }
.block_4 { .block_4 {
background-image: url('/images/ai/77.jpg'); background-image: url('/images/ai/77.png');
width: 360px; width: 360px;
height: 168px; height: 168px;
} }
@ -1722,7 +1722,7 @@ button:active {
} }
.box_11 { .box_11 {
background-image: url('/images/ai/77.jpg'); background-image: url('/images/ai/77.png');
width: 360px; width: 360px;
height: 168px; height: 168px;
} }

View File

@ -724,8 +724,10 @@ const scrollToTop = () => {
} }
const showIssueModal = () => { const showIssueModal = () => {
// //
router.push('/help-center') router.push('/help-center').then(() => {
window.location.reload();
})
} }
onMounted(async () => { onMounted(async () => {
@ -1352,15 +1354,15 @@ onMounted(async () => {
.course-image { .course-image {
position: relative; position: relative;
width: 334px; width: 340px;
height: 209px; height: 209px;
overflow: hidden; overflow: hidden;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
flex-shrink: 0; flex-shrink: 0;
} }
.course-image img { .course-image img {
width: 334px; width: 340px;
height: 209px; height: 209px;
object-fit: cover; object-fit: cover;
} }