1、前端环境微调

2、pom文件微调
3、新增一个学习模块
pull/254/head
xjs 4 years ago
parent 37c3cd6612
commit fdf3a2de6a

@ -1,4 +1,4 @@
package com.xjs.job.task.openapi;
package com.xjs.job.task;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.date.DateUnit;

@ -5,4 +5,7 @@ VUE_APP_TITLE = 管理平台
ENV = 'production'
# 若依管理系统/生产环境
VUE_APP_BASE_API = '/prod-api'
VUE_APP_BASE_API = 'http://localhost:8080'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true

@ -48,7 +48,8 @@ import {CanvasRenderer} from 'echarts/renderers';
import {TitleComponent} from 'echarts/components';
import {BarChart} from 'echarts/charts';
import { TooltipComponent } from 'echarts/components';
echarts.use([GridComponent, LineChart, CanvasRenderer, UniversalTransition, TitleComponent, BarChart,TooltipComponent]);
import { LegendComponent } from 'echarts/components';
echarts.use([GridComponent, LineChart, CanvasRenderer, UniversalTransition, TitleComponent, BarChart,TooltipComponent,LegendComponent]);
export default {
name: "WeatherStatistics",
@ -126,7 +127,10 @@ export default {
tooltip: {
trigger: 'axis'
},
legend: {},
legend: {
left: '79%'
},
xAxis: {
type: 'category',

@ -25,6 +25,7 @@
<module>xjs-business-webmagic</module>
<module>xjs-business-blog</module>
<module>xjs-business-srb</module>
<module>xjs-learn</module>
</modules>
<properties>

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>xjs-business</artifactId>
<groupId>com.xjs</groupId>
<version>3.3.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>xjs-learn</artifactId>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
</dependency>
</dependencies>
</project>
Loading…
Cancel
Save