32 lines
896 B
Vue
32 lines
896 B
Vue
<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>
|