centerLeft2.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <div id="centerLeft1">
  3. <div class="bg-color-black">
  4. <div class="d-flex pt-2 pl-2">
  5. <div class="d-flex" style="display:flex;">
  6. <span class="fs-xl text mx-2" style="margin-right:8px;">今日销冠</span>
  7. <dv-decoration-1 class="dv-dec-1" />
  8. </div>
  9. </div>
  10. <div class="cc">
  11. <div class="bottom-data">
  12. <h3 class="title">今日销冠</h3>
  13. <div class="item-box mt-2">
  14. <div class="d-flex">
  15. <span class="cex">{{datatodaysaleschampion.orders}}</span>
  16. </div>
  17. <p class="text" style="text-align: center">
  18. 今日销售单数
  19. <span class="colorYellow">(单)</span>
  20. </p>
  21. </div>
  22. <div class="item-box mt-2">
  23. <div class="d-flex">
  24. <span class="cex">{{datatodaysaleschampion.money | getNum}}</span>
  25. </div>
  26. <p class="text" style="text-align: center">
  27. 今日销售金额
  28. <span class="colorYellow">(元)</span>
  29. </p>
  30. </div>
  31. </div>
  32. <div class="nameImg">
  33. <!-- <img src="../assets/logo.png" alt=""> -->
  34. <p>{{datatodaysaleschampion.company}}<br>{{datatodaysaleschampion.nickname}}</p>
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </template>
  40. <script>
  41. import asyncRequest from "@/apis/service/bigScreen";
  42. // import resToken from "@/mixins/resToken";
  43. export default {
  44. data() {
  45. return {
  46. datatodaysaleschampion:{},
  47. }
  48. },
  49. mounted() {
  50. this.initHttp()
  51. },
  52. methods: {
  53. async initHttp(){
  54. let res = await asyncRequest.datatodaysaleschampion();
  55. if(res.code == 0){
  56. this.datatodaysaleschampion = res.data;
  57. // console.log(this.datatodaysaleschampion)
  58. }else{
  59. this.$message.error(res.message)
  60. }
  61. }
  62. }
  63. };
  64. </script>
  65. <style lang="scss" scoped>
  66. #centerLeft1 {
  67. $box-width: 300px;
  68. $box-height: 410px;
  69. padding: 16px;
  70. height: $box-height;
  71. min-width: $box-width;
  72. border-radius: 5px;
  73. .bg-color-black {
  74. height: $box-height - 30px;
  75. border-radius: 10px;
  76. }
  77. .text {
  78. font-size: 12px;
  79. color: #c3cbde;
  80. }
  81. .dv-dec-1 {
  82. position: relative;
  83. width: 100px;
  84. height: 20px;
  85. top: -3px;
  86. }
  87. .chart-box {
  88. margin-top: 16px;
  89. width: 170px;
  90. height: 170px;
  91. .active-ring-name {
  92. padding-top: 10px;
  93. }
  94. }
  95. .bottom-data {
  96. .item-box {
  97. & > div {
  98. padding-right: 5px;
  99. }
  100. font-size: 14px;
  101. float: right;
  102. position: relative;
  103. width: 50%;
  104. color: #d3d6dd;
  105. .dv-digital-flop {
  106. width: 120px;
  107. height: 30px;
  108. }
  109. // 金币
  110. .coin {
  111. position: relative;
  112. top: 6px;
  113. font-size: 20px;
  114. color: #ffc107;
  115. }
  116. .colorYellow {
  117. color: yellowgreen;
  118. }
  119. p {
  120. text-align: center;
  121. }
  122. }
  123. }
  124. .cex {
  125. color: #28ffcd;
  126. width: 100%;
  127. font-size: 18px;
  128. text-align: center;
  129. font-weight: 800;
  130. display: inline-block;
  131. margin: 5px 10px;
  132. }
  133. .title {
  134. width: 100%;
  135. float: left;
  136. font-size: 16px;
  137. margin-top: 40px;
  138. margin-bottom: 15px;
  139. text-indent: 10px;
  140. color: #ffbc25;
  141. }
  142. .nameImg{
  143. width: 100%;
  144. margin: 70px 0 0 0;
  145. float: left;
  146. // img{
  147. // width: 50%;
  148. // height: 90px;
  149. // display: block;
  150. // margin: 30px auto 5px;
  151. // }
  152. p{
  153. width: 100%;
  154. text-align: center;
  155. font-size: 20px;
  156. line-height: 40px;
  157. font-weight: 600;
  158. color: #ffbc25;
  159. }
  160. }
  161. }
  162. </style>