feat: 新增找回密码功能接口

This commit is contained in:
橙子
2024-10-03 01:10:32 +08:00
parent 94ee0fb058
commit d7629763ef
13 changed files with 362 additions and 222 deletions

View File

@@ -2,11 +2,24 @@
<div class="box">
<div class="content">
<RouterView />
<div class="div-bottom">
<span>备案<span v-html="configStore.icp"></span></span>
<span>站长{{ configStore.author }}</span>
<span ><router-link to="/contact">联系我们</router-link></span>
<span>关于本站</span>
<span>建议反馈</span>
<span>原创站点</span>
</div>
</div>
</div>
</template>
<!-- <style src="@/assets/styles/login.scss" scoped></style> -->
<script setup>
import useConfigStore from "@/stores/config";
const configStore=useConfigStore();
</script>
<style scoped lang="scss">
.box {
width: 100vw;
@@ -16,4 +29,34 @@
height: 100%;
}
}
.div-bottom
{
position: absolute;
bottom: 30px;
color: #CAD2D9;
font-size: 12px;
width: 100%;
display: flex;
justify-content: center;
span{
margin-right: 10px;
}
a {
$link-color: red;
color: $link-color;
&.visited {
color: $link-color;
}
&:hover {
color: $link-color;
}
&:active {
color: $link-color;
}
}
}
</style>