index.vue 3.44 KB
Newer Older
sunhongwei's avatar
sunhongwei committed
1 2 3 4 5 6 7 8 9
<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>

10
    <!-- <el-row>
11 12 13 14 15
      <el-col :span="12">
        <ueditor v-model="html" />
      </el-col>
      <el-col :span="12">
        <div v-html="html"></div>
dragondean@qq.com's avatar
dragondean@qq.com committed
16
        <div class="" @click="$l">下面是通过watch更新</div>
17 18
        <div v-html="watchHtml"></div>
      </el-col>
19
    </el-row>
20
    <el-card style="margin:20px 0">
Marcus's avatar
Marcus committed
21
      <div slot="header">{{ $t('测试审批抄送') }}</div>
22 23 24
      <work-flow xmlkey="free_apply" v-model="selectedUsers"  />
      <div>选择的用户:{{selectedUsers}}</div>
    </el-card>
chenjiuping's avatar
chenjiuping committed
25

chenjiuping's avatar
chenjiuping committed
26 27
    <el-row>
      <my-process-viewer key="designer" v-model="bpmnXML" v-bind="bpmnControlForm" />
28
    </el-row> -->
chenjiuping's avatar
chenjiuping committed
29

sunhongwei's avatar
sunhongwei committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
    <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'
57
import Ueditor from '@/components/Ueditor'
dragondean@qq.com's avatar
dragondean@qq.com committed
58

chenjiuping's avatar
chenjiuping committed
59 60 61
import {
  getProcessDefinitionBpmnXMLByKey
} from "@/api/bpm/definition";
62
import WorkFlow from '@/components/WorkFlow'
sunhongwei's avatar
sunhongwei committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
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,
89
    BarChart,
90 91
    Ueditor,
    WorkFlow
sunhongwei's avatar
sunhongwei committed
92 93 94
  },
  data() {
    return {
chenjiuping's avatar
chenjiuping committed
95
      lineChartData: lineChartData.newVisitis,
96
      selectedUsers:[],
chenjiuping's avatar
chenjiuping committed
97 98 99 100 101
      // BPMN 数据
      bpmnXML: null,
      bpmnControlForm: {
        prefix: "activiti"
      },
Marcus's avatar
Marcus committed
102
      html: this.$t("默认内容"),
dragondean@qq.com's avatar
dragondean@qq.com committed
103
      watchHtml: '',
104 105 106 107 108
    }
  },
  watch:{
    html(val){
      this.watchHtml = val
sunhongwei's avatar
sunhongwei committed
109 110
    }
  },
chenjiuping's avatar
chenjiuping committed
111 112
  created() {
    this.handlerBpm();
chenjiuping's avatar
chenjiuping committed
113

chenjiuping's avatar
chenjiuping committed
114
  },
sunhongwei's avatar
sunhongwei committed
115 116 117
  methods: {
    handleSetLineChartData(type) {
      this.lineChartData = lineChartData[type]
chenjiuping's avatar
chenjiuping committed
118 119 120 121 122
    },
    handlerBpm(){
      getProcessDefinitionBpmnXMLByKey("free_apply").then(response => {
        this.bpmnXML = response.data
      })
sunhongwei's avatar
sunhongwei committed
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
    }
  }
}
</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;
  }
}
146
/* .my-process-designer {
chenjiuping's avatar
chenjiuping committed
147
  height: calc(100vh - 200px);
148
} */
chenjiuping's avatar
chenjiuping committed
149 150 151 152 153

.box-card {
  width: 100%;
  margin-bottom: 20px;
}
sunhongwei's avatar
sunhongwei committed
154
</style>