fix: 修复管理端前端 lint 与构建问题

- 收敛 easyflow-ui-admin 的 lint、格式和类型问题

- 修正 demo 页面与管理端前端构建失败点

- 验证 pnpm lint 与 pnpm build 均已通过
This commit is contained in:
2026-04-05 21:39:13 +08:00
parent bb72e19c84
commit 7e7c236c2a
240 changed files with 5151 additions and 4701 deletions

View File

@@ -82,7 +82,6 @@ function handleSubmitRun() {
v-model:open="dialogVisible"
width="80%"
align-center
class="run-test-dialog"
:title="$t('pluginItem.pluginToolEdit.trialRun')"
:before-close="() => (dialogVisible = false)"
>
@@ -157,32 +156,36 @@ function handleSubmitRun() {
width: 100%;
height: calc(100vh - 161px);
}
.run-test-dialog {
}
.run-test-params {
flex: 1;
width: 100%;
overflow: auto;
flex: 1;
}
.run-res-json {
width: 100%;
flex: 1;
width: 100%;
overflow: auto;
}
.run-test-result {
flex: 1;
display: flex;
flex: 1;
flex-direction: column;
}
.name-cell {
position: relative;
min-width: 100%;
}
.run-title-style {
margin-bottom: 8px;
font-size: 16px;
font-weight: bold;
margin-bottom: 8px;
}
.editable-name {
display: flex;
flex-direction: column;
@@ -201,15 +204,15 @@ function handleSubmitRun() {
}
.error-message {
color: #ff4d4f;
font-size: 12px;
margin-top: 2px;
font-size: 12px;
line-height: 1.2;
color: #ff4d4f;
}
:deep(.el-table td.el-table__cell.first-column div) {
display: flex;
align-items: center;
gap: 2px;
align-items: center;
}
</style>