Files
SEONexusAdmin/src/views/manga/index.vue
Your Name 845d68110b debug
2026-04-15 12:00:09 +08:00

32 lines
896 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div class="module-unavailable">
<el-alert
title="漫画管理模块未部署到当前 Linux 测试服"
type="warning"
:closable="false"
show-icon
/>
<el-card class="module-unavailable__card" shadow="never">
<p>当前后端未提供 `Manhua` 控制器漫画列表接口会直接返回控制器不存在</p>
<p>本页先收为说明态避免继续暴露会误导验收的假列表</p>
<p>如果后续测试服补齐漫画模块再恢复列表章节抽屉和编辑链路</p>
</el-card>
</div>
</template>
<style scoped lang="scss">
.module-unavailable {
display: grid;
gap: 16px;
}
.module-unavailable__card {
color: var(--el-text-color-regular);
line-height: 1.8;
}
.module-unavailable__card p {
margin: 0;
}
</style>