32 lines
991 B
Vue
32 lines
991 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>当前端点页混用了 `/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>
|