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

View File

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