修改了一些eslint的配置。

This commit is contained in:
2023-03-05 00:37:24 +08:00
parent f472031b6f
commit 52bcee8d39
8 changed files with 317 additions and 39 deletions

View File

@@ -35,22 +35,22 @@ export default {
//设置图表
const initCharts = () =>
{
const chartDom = document.getElementById('chartWrapper');
const chartDom = document.getElementById("chartWrapper");
//@ts-ignore
const myChart = echarts.init((chartDom));
const option = {
xAxis: {
type: 'category',
type: "category",
data: ["一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "十一", "十二",],
},
yAxis: {
type: 'value',
type: "value",
data: [200, 400, 600, 800, 1000,],
},
series: [
{
data: [200, 230, 224, 218, 135, 147, 260,],
type: 'line',
type: "line",
},
],
};

View File

@@ -2,11 +2,11 @@
* @Author: Kane
* @Date: 2023-03-02 15:35:43
* @LastEditors: Kane
* @FilePath: /deskop_task_schedule/code/web/task_schedule/src/utils/api/config.js
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
* @FilePath: /task_schedule/src/utils/api/config.ts
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
export const API_URL = {
URL_LOGIN: import.meta.env.VITE_URL_LOGIN,
};
};