添加支付中心,修改404页面

This commit is contained in:
2025-07-24 20:44:15 +08:00
parent 52e03866cd
commit 81c4f29a4a
5 changed files with 498 additions and 107 deletions
+15 -12
View File
@@ -1,20 +1,23 @@
<template>
<div class="error-page err-404 page">
<div class="container">
<div class="error-container">
<div class="error-info">
<h1>404</h1>
<p>It seems that the page you are looking for no longer exists.<br>Please contact our <a href="#">help center</a> or go to the <RouterLink to="/home">homepage</RouterLink>.</p>
</div>
<div class="error-image"></div>
</div>
<div class="error-page err-404 page login-page">
<div class="container">
<div class="error-container">
<div class="error-info">
<h1>404</h1>
<p>
It seems that the page you are looking for no longer exists.<br />Please
contact our <a href="#">help center</a> or go to the
<RouterLink to="/home">homepage</RouterLink>.
</p>
</div>
<div class="error-image"></div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'notfound'
}
name: "notfound",
};
</script>