feature: 增加对redis未部署时异常捕获 (#131)

* feature: 增加download-deer-flow

* feature: 增加对redis未部署时异常捕获

* feature: clean code
This commit is contained in:
hhhhsc701
2025-12-04 16:09:29 +08:00
committed by GitHub
parent 977d16339b
commit 7a9530c1e3
10 changed files with 107 additions and 38 deletions

View File

@@ -1,10 +1,9 @@
import { Divider, Input, Select, Switch, Button, Table, Spin } from "antd";
import { Input, Select, Switch, Button, Table, Spin } from "antd";
import { useEffect, useState } from "react";
import { getSysParamList, updateSysParamValue } from './settings.apis';
interface SystemParam {
id: string;
paramKey: string;
paramValue: string;
description: string;
isEnabled: boolean;
@@ -120,10 +119,9 @@ export default function SystemConfig() {
const columns = [
{
title: "参数名",
dataIndex: "paramKey",
key: "paramKey",
dataIndex: "id",
key: "id",
width: 180,
},
{
title: "参数值",