<template> <div class="dashboard-editor-container"> <panel-group @handleSetLineChartData="handleSetLineChartData" /> <el-row style="background:#fff;padding:16px 16px 0;margin-bottom:32px;"> <line-chart :chart-data="lineChartData" /> </el-row> <!-- <el-row> <el-col :span="12"> <ueditor v-model="html" /> </el-col> <el-col :span="12"> <div v-html="html"></div> <div class="" @click="$l">下面是通过watch更新</div> <div v-html="watchHtml"></div> </el-col> </el-row> <el-card style="margin:20px 0"> <div slot="header">{{ $t('测试审批抄送') }}</div> <work-flow xmlkey="free_apply" v-model="selectedUsers" /> <div>选择的用户:{{selectedUsers}}</div> </el-card> <el-row> <my-process-viewer key="designer" v-model="bpmnXML" v-bind="bpmnControlForm" /> </el-row> --> <el-row :gutter="32"> <el-col :xs="24" :sm="24" :lg="8"> <div class="chart-wrapper"> <raddar-chart /> </div> </el-col> <el-col :xs="24" :sm="24" :lg="8"> <div class="chart-wrapper"> <pie-chart /> </div> </el-col> <el-col :xs="24" :sm="24" :lg="8"> <div class="chart-wrapper"> <bar-chart /> </div> </el-col> </el-row> </div> </template> <script> import PanelGroup from './dashboard/PanelGroup' import LineChart from './dashboard/LineChart' import RaddarChart from './dashboard/RaddarChart' import PieChart from './dashboard/PieChart' import BarChart from './dashboard/BarChart' import Ueditor from '@/components/Ueditor' import { getProcessDefinitionBpmnXMLByKey } from "@/api/bpm/definition"; import WorkFlow from '@/components/WorkFlow' 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: { PanelGroup, LineChart, RaddarChart, PieChart, BarChart, Ueditor, WorkFlow }, data() { return { lineChartData: lineChartData.newVisitis, selectedUsers:[], // BPMN 数据 bpmnXML: null, bpmnControlForm: { prefix: "activiti" }, html: this.$t("默认内容"), watchHtml: '', } }, watch:{ html(val){ this.watchHtml = val } }, created() { this.handlerBpm(); }, methods: { handleSetLineChartData(type) { this.lineChartData = lineChartData[type] }, handlerBpm(){ getProcessDefinitionBpmnXMLByKey("free_apply").then(response => { this.bpmnXML = response.data }) } } } </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; } } /* .my-process-designer { height: calc(100vh - 200px); } */ .box-card { width: 100%; margin-bottom: 20px; } </style>