123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- <template>
- <div class="dashboard-editor-container">
- <panel-group @handleSetLineChartData="handleSetLineChartData" />
- <el-row :gutter="32">
- <el-col :xs="24" :sm="24" :lg="8">
- <div>
- <div class="card-head">
- <span class="card-name">{{ $t('程序数量') }}</span>
- </div>
- </div>
- <div class="chart-wrapper">
- <raddar-chart />
- </div>
- </el-col>
- <el-col :xs="24" :sm="24" :lg="8">
- <div>
- <div class="card-head">
- <span class="card-name">装置年度培训完成情况</span>
- <el-dropdown style="float: right ;cursor: pointer" placement="bottom" trigger="click" class="card-time">
- <span class="el-dropdown-link">
- 年份 {{trainingYear}}
- <i class="el-icon-date"></i>
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item @click.native="chooseYear(-1)">{{this.searchFormField.year - 1}}</el-dropdown-item>
- <el-dropdown-item @click.native="chooseYear(0)">{{this.searchFormField.year}}</el-dropdown-item>
- <el-dropdown-item @click.native="chooseYear(1)">{{this.searchFormField.year + 1}}</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </div>
- </div>
- <div class="chart-wrapper">
- <pie-chart ref="piechart" />
- </div>
- </el-col>
- <!-- <el-col :xs="24" :sm="24" :lg="8">-->
- <!-- <div class="chart-wrapper">-->
- <!-- <bar-chart />-->
- <!-- </div>-->
- <!-- </el-col>-->
- <el-col :xs="24" :sm="24" :lg="8">
- <div>
- <div class="card-head">
- <span class="card-name">{{ $t('新员工培训完成率') }}</span>
- <el-dropdown style="float: right ;cursor: pointer" placement="bottom" trigger="click" class="card-time">
- <span class="el-dropdown-link">
- 年份 {{trainingYearNew}}
- <i class="el-icon-date"></i>
- </span>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item @click.native="chooseYearNew(-1)">{{this.searchFormField.year - 1}}</el-dropdown-item>
- <el-dropdown-item @click.native="chooseYearNew(0)">{{this.searchFormField.year}}</el-dropdown-item>
- <el-dropdown-item @click.native="chooseYearNew(1)">{{this.searchFormField.year + 1}}</el-dropdown-item> </el-dropdown-menu>
- </el-dropdown>
- </div>
- </div>
- <div class="chart-wrapper">
- <birth-chart ref="newchart"/>
- </div>
- </el-col>
- </el-row>
- <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;">
- <el-col :xs="24" :sm="24" :lg="10">
- <div>
- <div class="card-head">
- <span class="card-name">程序清单到期提醒</span>
- </div>
- </div>
- <div class="chart-wrapper">
- <line-chart :chart-data="lineChartData" />
- </div>
- </el-col>
- <el-col :xs="24" :sm="24" :lg="14">
- <div>
- <div class="card-head">
- <span class="card-name">员工证书统计</span>
- </div>
- </div>
- <div class="chart-wrapper">
- <workcertificate-chart :chart-data="lineChartData" />
- </div>
- </el-col>
- </el-row>
- </div>
- </template>
- <script>
- import PanelGroup from './dashboard/hcq/PanelGroup'
- import LineChart from './dashboard/hcq/LineChart'
- import RaddarChart from './dashboard/hcq/RaddarChart'
- import PieChart from './dashboard/hcq/PieChart'
- import WorkcertificateChart from "./dashboard/hcq/workcertificateChart";
- import BirthChart from './dashboard/hcq/BrithChart'
- const lineChartData = {
- newVisitis: {
- expectedData: [100, 120, 161, 134, 105, 160, 165],
- actualData: [120, 82, 91, 154, 162, 140, 145]
- },
- messages: {
- expectedData: [200, 192, 120, 144, 160, 130, 140],
- actualData: [180, 160, 151, 106, 145, 150, 130]
- },
- purchases: {
- expectedData: [80, 100, 121, 104, 105, 90, 100],
- actualData: [120, 90, 100, 138, 142, 130, 130]
- },
- shoppings: {
- expectedData: [130, 140, 141, 142, 145, 150, 160],
- actualData: [120, 82, 91, 154, 162, 140, 130]
- }
- }
- export default {
- name: 'Index',
- components: {
- WorkcertificateChart,
- PanelGroup,
- LineChart,
- RaddarChart,
- PieChart,
- BirthChart
- },
- data() {
- return {
- lineChartData: lineChartData.newVisitis,
- // 获取当前年份
- searchFormField: {
- year: parseInt(this.getNowTime()),
- },
- trainingYear: null,
- trainingYearNew: null,
- }
- },
- created() {
- this.trainingYear = new Date().getFullYear();
- this.trainingYearNew = new Date().getFullYear();
- },
- methods: {
- /** 获取当前年份 */
- getNowTime() {
- var now = new Date();
- var year = now.getFullYear(); //得到年份
- var defaultDate = `${year}`;
- defaultDate = `${year}`
- return defaultDate;
- this.$set(this.searchFormField, "year", defaultDate);
- },
- handleSetLineChartData(type) {
- this.lineChartData = lineChartData[type]
- },
- //变换年份
- chooseYear (index) {
- console.log(index + "nian")
- this.trainingYear = this.searchFormField.year + index
- this.$refs.piechart.changeYear(this.searchFormField.year + index)
- },
- chooseYearNew (index) {
- this.trainingYearNew = this.searchFormField.year + index
- this.$refs.newchart.changeYear(this.searchFormField.year + index)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .dashboard-editor-container {
- padding: 32px;
- background-color: rgb(240, 242, 245);
- position: relative;
- .chart-wrapper {
- background: #fff;
- padding: 16px 16px 0;
- margin-bottom: 32px;
- }
- }
- @media (max-width:1024px) {
- .chart-wrapper {
- padding: 8px;
- }
- }
- .card-name {
- font-size: 16px;
- }
- </style>
|