chart1.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <div>
  3. <charts
  4. style="margin-top: -30px"
  5. id="bizchart1"
  6. height="230px"
  7. width="460px"
  8. :option="option"
  9. />
  10. </div>
  11. </template>
  12. <script lang="js">
  13. import charts from '../../../components/echarts/index.vue'
  14. export default {
  15. components: { charts },
  16. data() {
  17. return {
  18. option:{
  19. xAxis: {
  20. type: 'category',
  21. boundaryGap: false,
  22. data: [],
  23. axisLine: {
  24. lineStyle: {
  25. color: "#a4a2a2",
  26. }
  27. },
  28. },
  29. yAxis: {
  30. type: 'value',
  31. axisLine: {
  32. lineStyle: {
  33. color: "#a4a2a2",
  34. }
  35. },
  36. splitLine: {
  37. show: true,
  38. lineStyle: {
  39. color:'rgba(128,126,126,0.25)'
  40. },
  41. },
  42. },
  43. series: [
  44. {
  45. data: [],
  46. symbol: "none",
  47. type: 'line',
  48. areaStyle: {
  49. normal: {
  50. color: {
  51. x: 0,
  52. y: 0,
  53. x2: 0,
  54. y2: 1,
  55. colorStops: [
  56. {
  57. offset: 0.1,
  58. color: '#c55D34'
  59. },
  60. {
  61. offset: 0.5,
  62. color: 'rgba(255,185,91, 0.5)'
  63. },
  64. {
  65. offset: 0.7,
  66. color: 'rgba(255,185,91, 0.3)'
  67. },
  68. {
  69. offset: 0.9,
  70. color: 'rgba(255,185,91, 0.2)'
  71. }
  72. ],
  73. globalCoord: false
  74. }
  75. }
  76. }
  77. },
  78. ]}
  79. }
  80. },
  81. created() {
  82. this.getAddUserCountByMonth()
  83. },
  84. methods: {
  85. getAddUserCountByMonth() {
  86. this.$api.biz.getAddUserCountByMonth().then(res => {
  87. if (res.code === 200) {
  88. this.option.xAxis.data = []
  89. this.option.series[0].data = []
  90. res.data.map(item=>{
  91. this.option.xAxis.data.push(item.month)
  92. this.option.series[0].data.push(item.count)
  93. })
  94. this.option.xAxis.data.reverse()
  95. this.option.series[0].data.reverse()
  96. }
  97. })
  98. }
  99. }
  100. }
  101. </script>