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

32 lines
991 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>当前端点页混用了 `/system/zydd/*` `/admin/resource/endpoint/*` 旧链路测试服带真实 `admin-token` 访问也会直接返回控制器不存在</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>