You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
225 B

4 months ago
  1. import httpRequest, { BaseResponse } from "../httpRequest";
  2. export function sysSet(params: { name:string, value: string }) {
  3. return httpRequest<BaseResponse>({
  4. url: "/api/sysSet",
  5. params,
  6. method: "PUT",
  7. });
  8. }