bottomLeft.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <div class="txtSize">
  3. <div class="title">
  4. <span>销售转单时长</span>
  5. <!-- <span style="width"></span> -->
  6. <div style="display: flex">
  7. <span style="width: 100px">
  8. <el-select v-model="region" size="mini">
  9. <el-option label="不限部门" value="1"></el-option>
  10. <el-option label="网络部" value="2"></el-option>
  11. </el-select>
  12. </span>
  13. <span style="width: 60px">
  14. <el-select v-model="region1" size="mini">
  15. <el-option label="日" value="1"></el-option>
  16. <el-option label="月" value="2"></el-option>
  17. <el-option label="年" value="3"></el-option>
  18. </el-select>
  19. </span>
  20. <span style="width: 140px">
  21. <el-date-picker
  22. style="width:100%"
  23. size="mini"
  24. :clearable="false"
  25. v-model="region2"
  26. :type="region1 == 1 ? 'date' : region1 == 2 ? 'month' : 'year'"
  27. placeholder="选择日期">
  28. </el-date-picker>
  29. </span>
  30. </div>
  31. </div>
  32. <div class="dv">
  33. <p style="font-size: 12px">平均时长(分钟)</p>
  34. <dv-decoration-9>10</dv-decoration-9>
  35. </div>
  36. <!-- <div id="bottomLeft" style="width: auto; height: 400px"></div> -->
  37. <Echart
  38. :options="options"
  39. id="bottomLeft"
  40. height="400px"
  41. width="100%"
  42. ></Echart>
  43. </div>
  44. </template>
  45. <script>
  46. import Echart from "@/common/echart";
  47. export default {
  48. components: {
  49. Echart,
  50. },
  51. props: {
  52. cdata: {
  53. type: Object,
  54. default: () => ({}),
  55. },
  56. },
  57. data() {
  58. return {
  59. region: "1",
  60. region1: "1",
  61. region2: "1",
  62. options: {
  63. label: {
  64. show: true,
  65. position: "inside",
  66. },
  67. xAxis: {
  68. type: "category",
  69. data: ["1小时以内", "1-2小时", "2-4小时", "4-24小时", "24小时以上"],
  70. },
  71. yAxis: {
  72. type: "value",
  73. },
  74. series: [
  75. {
  76. data: [200, 172, 150, 80, 70],
  77. type: "bar",
  78. },
  79. ],
  80. },
  81. };
  82. },
  83. mounted() {
  84. // this.cinit();
  85. },
  86. methods: {
  87. cinit() {
  88. this.$echarts
  89. .init(document.getElementById("bottomLeft"))
  90. .setOption(this.options);
  91. },
  92. },
  93. };
  94. </script>
  95. <style lang="scss" scoped>
  96. .txtSize {
  97. // font-size: 0px;
  98. position: relative;
  99. }
  100. .title {
  101. font-size: 18px;
  102. margin: 20px 0;
  103. display: flex;
  104. justify-content: space-between;
  105. align-items: center;
  106. }
  107. #topCenter {
  108. width: 100%;
  109. height: 350px;
  110. }
  111. .dv {
  112. width: 100px;
  113. height: 100px;
  114. position: absolute;
  115. right: -86px;
  116. z-index: 99;
  117. }
  118. .dv > p {
  119. text-align: center;
  120. padding-bottom: 5px;
  121. }
  122. </style>