10.10综合交易所原始源码-管理后台
1
admin
2026-01-07 e1e694369dabf557615669ce2f71e9af70277ff6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
57
58
59
60
61
62
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
89
90
91
<template>
  <div :style="{ height: height, width: width, }" id="main">
    <div></div>
  </div>
</template>
 
<script>
// 引入基本模板
// let echarts = require("echarts/lib/echarts");
// // 引入柱状图组件
// require("echarts/lib/chart/bar");
// require("echarts/lib/chart/line"); //echarts/components
// // 引入提示框和title组件
// require("echarts/lib/component/tooltip");
// require("echarts/lib/component/title");
// require("echarts/lib/echarts");
// // 不引入这个会报错 xAxis "0" not found
// require("echarts/lib/component/grid");
// // import 'echarts/lib/component/grid';
import * as echarts from "echarts";
import "echarts-gl";
import { hide } from "yargs";
export default {
  props: {
    height: {
      type: String,
      default: "1000px",
      overfloat:hide,
    },
    width: {
      type: String,
      default: "90%",
    },
  },
  data() {
    return {
        timeArr:[],
        linArr:[],
    };
  },
  components: {},
  mounted() {
    this.drawLine();
  },
  methods: {
    init(timeArr,linArr) {
     this.timeArr = timeArr
     this.linArr = linArr
     this.drawLine();
    },
    drawLine() {
      var chartDom = document.getElementById("main");
      var myChart = echarts.init(chartDom);
      var option;
 
      option = {
  xAxis: {
    data: this.timeArr,
//     axisLabel: {
//     interval: 20
//   }
    //data: ['2017-10-24', '2017-10-25', '2017-10-26', '2017-10-27']
    axisTick:{
        show:false,
    },
    axisLabel:{
        show:false,
        interval:2000,
    },
    },
   
     yAxis: {},
  series: [
    {
      type: 'candlestick',
    //   data: [
    //     [20, 34, 10, 38],
    //     [40, 35, 30, 50],
    //     [31, 38, 33, 44],
    //     [38, 15, 5, 42]
    //   ]
    data:this.linArr
    }
  ]
};
      option && myChart.setOption(option);
    },
  },
};
</script>
<style lang="scss" scoped></style>