保存进度!

This commit is contained in:
unknown 2023-12-20 23:36:28 +08:00
parent c6705d326d
commit fe6707ca3f
3 changed files with 20 additions and 1 deletions

View File

@ -12,7 +12,7 @@
<span class="company-name">CPIC</span>
<div class="version-wrapper">
<span>桌面霸屏后台管理</span>
<span>Build-20230915</span>
<span>Build-20231220</span>
</div>
<div class="buttons-wrapper">
<component

View File

@ -7,6 +7,7 @@
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
// 请求的url
const API_URL = {
// 登录
URL_LOGIN: import.meta.env.VITE_URL_LOGIN,

View File

@ -0,0 +1,18 @@
/*
* @Author: Kane
* @Date: 2023-12-20 23:02:53
* @LastEditors: Kane
* @FilePath: /task_schedule/src/utils/api/systemParameters.ts
* @Description:
*
* Copyright (c) ${2023} by Kane, All Rights Reserved.
*/
import { service as instance } from "@/utils/api/request.js";
interface SystemParameter
{
paramterName: string;
parameterValue: string;
}
export { type SystemParameter };