20200407-lc-1

This commit is contained in:
sk1551 2020-04-08 15:30:14 +08:00
parent 055d9d4340
commit 96cc622cfd
3 changed files with 213 additions and 217 deletions

View File

@ -1,6 +1,5 @@
<template>
<div class="dashboard-editor-container">
<el-row :gutter="32">
<el-col :xs="24" :sm="24" :lg="8">
<div class="chart-wrapper">
@ -18,31 +17,26 @@
</div>
</el-col>
</el-row>
</div>
</template>
<script>
import RaddarChart from './dashboard/RaddarChart'
import PieChart from './dashboard/PieChart'
import BarChart from './dashboard/BarChart'
import RaddarChart from "./dashboard/RaddarChart";
import PieChart from "./dashboard/PieChart";
import BarChart from "./dashboard/BarChart";
export default {
name: 'Index',
name: "Index",
components: {
RaddarChart,
PieChart,
BarChart
},
data() {
return {
}
return {};
},
methods: {
}
}
methods: {}
};
</script>
<style lang="scss" scoped>

View File

@ -16,6 +16,8 @@ public class RuoYiApplication
{
System.setProperty("spring.devtools.restart.enabled", "false");
SpringApplication.run(RuoYiApplication.class, args);
System.out.println("BenYi Startup success");
System.out.println("-------^&^-------" +
"BenYi Startup success" +
"-------^&^-------");
}
}