queryFortuneBag.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <template>
  2. <div class="m-container">
  3. <p class="title">福袋统计</p>
  4. <van-cell-group>
  5. <van-cell title="总收入"
  6. :value="totalMoney" />
  7. <van-cell title="总笔数"
  8. :value="totalNum" />
  9. </van-cell-group>
  10. <div class="tableWrap">
  11. <div class="item">
  12. <span>序号</span>
  13. <span>分部名</span>
  14. <span>总笔数</span>
  15. <span>总收入</span>
  16. </div>
  17. <div class="item"
  18. v-for='(item,index) in orangeList'
  19. :key="index">
  20. <span>{{index+1}}</span>
  21. <span>{{ item.organName}}</span>
  22. <span>{{ item.nums}}</span>
  23. <span>{{ item.money}}</span>
  24. </div>
  25. </div>
  26. </div>
  27. </template>
  28. <script>
  29. import { getFortuneBag } from '@/api/teacher'
  30. export default {
  31. name: 'FortuneBag',
  32. data () {
  33. return {
  34. totalNum: null,
  35. totalMoney: null,
  36. orangeList: []
  37. }
  38. },
  39. mounted () {
  40. getFortuneBag().then(res => {
  41. if (res.data.code == 200) {
  42. this.totalNum = res.data.data.totalNum + ' 笔'
  43. this.totalMoney = res.data.data.totalMoney + ' 元'
  44. this.orangeList = res.data.data.orderStatisDtoList
  45. }
  46. })
  47. }
  48. }
  49. </script>
  50. <style lang="less" scoped>
  51. .m-container {
  52. background-color: #fff;
  53. }
  54. .title {
  55. height: 0.4rem;
  56. line-height: 0.4rem;
  57. text-align: center;
  58. background-color: #14928a;
  59. color: #fff;
  60. }
  61. .tableWrap {
  62. .item {
  63. padding: 0 15px;
  64. height: 44px;
  65. line-height: 44px;
  66. background-color: #fff;
  67. border-bottom: 1px solid #ebedf0;
  68. font-size: 14px;
  69. display: flex;
  70. flex-direction: row;
  71. justify-content: space-between;
  72. &:nth-child(1) {
  73. background-color: #ebedf0;
  74. }
  75. span {
  76. display: inline-block;
  77. width: 33%;
  78. text-align: center;
  79. overflow: hidden;
  80. text-overflow: ellipsis;
  81. }
  82. }
  83. }
  84. </style>