studyStudent.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <template>
  2. <div>
  3. <el-card>
  4. <div slot="header" class="clearfix">
  5. <div class="box">
  6. <span class="shape"></span>
  7. <span>在读学员</span>
  8. </div>
  9. </div>
  10. <!-- <div
  11. class="wall"
  12. style="height: 68px"
  13. v-if="JSON.stringify(items) == '{}'&&!data['CHARGE_STUDENT_CHANGE_RATE']&&!data['ACTIVATION_RATE']"
  14. >
  15. 暂无数据
  16. </div> -->
  17. <statistic :col="6" class="statistic" :cols="0">
  18. <statistic-item
  19. v-for="(item, key) in items"
  20. :key="key"
  21. :class="{ active: active === key }"
  22. @click="active = key"
  23. >
  24. <span>
  25. {{ item.text }}
  26. </span>
  27. <span> <count-to :endVal="item.value" /> </span>
  28. </statistic-item>
  29. </statistic>
  30. </el-card>
  31. </div>
  32. </template>
  33. <script>
  34. import countTo from "vue-count-to";
  35. export default {
  36. props: ["data","groupType"],
  37. components: {
  38. "count-to": countTo,
  39. },
  40. data() {
  41. return {
  42. active: "",
  43. };
  44. },
  45. computed: {
  46. dataEmpty() {
  47. return !this.chartData.rows.length;
  48. },
  49. items() {
  50. if(this.groupType == 'PRACTICE'){
  51. let tempArr = [{
  52. text: '在读学员总数',
  53. value: 0,
  54. id: 'normalStudentNum'
  55. }, {
  56. text: '进行中',
  57. value: 0,
  58. id: 'normalStudentHasNormalGroupNum'
  59. },{
  60. text: '假期上课',
  61. value: 0,
  62. id: 'holidayCourseStudentNum'
  63. }, {
  64. text: '未排课',
  65. value: 0,
  66. id: 'normalStudentHasNoScheduleNum'
  67. }]
  68. tempArr.forEach(item => {
  69. if(this.data[item.id]) {
  70. item.value = this.data[item.id]
  71. }
  72. })
  73. return tempArr
  74. }else {
  75. let tempArr = [{
  76. text: '在册学员总数',
  77. value: 0,
  78. id: 'registerNum'
  79. },{
  80. text: '在读学员总数',
  81. value: 0,
  82. id: 'normalStudentNum'
  83. }, {
  84. text: '进行中',
  85. value: 0,
  86. id: 'normalStudentHasNormalGroupNum'
  87. },
  88. {
  89. text: '假期上课',
  90. value: 0,
  91. id: 'holidayCourseStudentNum'
  92. },
  93. {
  94. text: '暂停',
  95. value: 0,
  96. id: 'hasCourseBalanceAndNotSubCourseNum'
  97. }, {
  98. text: '未排课',
  99. value: 0,
  100. id: 'normalStudentHasNoScheduleNum'
  101. }]
  102. tempArr.forEach(item => {
  103. if(this.data[item.id]) {
  104. item.value = this.data[item.id]
  105. }
  106. })
  107. return tempArr
  108. }
  109. },
  110. },
  111. };
  112. </script>
  113. <style lang="scss" scoped>
  114. ::v-deep .el-card__body .statistic {
  115. margin-bottom: 15px;
  116. padding: 0;
  117. }
  118. ::v-deep .el-card__header {
  119. padding: 0 20px!important;
  120. }
  121. .box {
  122. display: flex;
  123. flex-direction: row;
  124. align-items: center;
  125. height: 55px;
  126. line-height: 55px;
  127. .shape {
  128. margin-right: 10px;
  129. height: 18px;
  130. width: 4px;
  131. background-color: var(--color-primary);
  132. }
  133. }
  134. </style>