center.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <template>
  2. <div id="center">
  3. <div class="up">
  4. <div class="bg-color-black item">
  5. <p class="ml-3 fw-b fs-xl cec"><span style="color:#ffbc25;">(竞价单)</span> 招标单数</p>
  6. <div class="ml-3 cex">{{datatotalzixunpurchease.zixun_total}}</div>
  7. </div>
  8. <div class="bg-color-black item">
  9. <p class="ml-3 fw-b fs-xl cec"><span style="color:#ffbc25;">(竞价单)</span> 未竞标单数</p>
  10. <div class="ml-3 cex">{{datatotalzixunpurchease.not_feedback}}</div>
  11. </div>
  12. <div class="bg-color-black item">
  13. <p class="ml-3 fw-b fs-xl cec"><span style="color:#ffbc25;">(采购单)</span> 采购单数</p>
  14. <div class="ml-3 cex">{{datatotalzixunpurchease.purchease_total}}</div>
  15. </div>
  16. <div class="bg-color-black item">
  17. <p class="ml-3 fw-b fs-xl cec"><span style="color:#ffbc25;">(采购单)</span> 未下单数</p>
  18. <div class="ml-3 cex">{{datatotalzixunpurchease.purchease_wait_confirm}}</div>
  19. </div>
  20. <!-- <div class="bg-color-black item">
  21. <p class="ml-3 fw-b fs-xl cec"><span style="color:#ffbc25;">(采购单)</span> 采购下单数</p>
  22. <div class="ml-3 cex">{{datatotalzixunpurchease.zixun_total}}</div>
  23. </div>
  24. <div class="bg-color-black item">
  25. <p class="ml-3 fw-b fs-xl cec"><span style="color:#ffbc25;">(采购单)</span> 未生产单数</p>
  26. <div class="ml-3 cex">{{datatotalzixunpurchease.zixun_total}}</div>
  27. </div> -->
  28. <div class="bg-color-black item" style="margin-bottom:0;">
  29. <p class="ml-3 fw-b fs-xl cec"><span style="color:#ffbc25;">(未发货)</span> 单数</p>
  30. <div class="ml-3 cex">{{datawaitsendtotal.order_num}}</div>
  31. </div>
  32. <div class="bg-color-black item" style="margin-bottom:0;">
  33. <p class="ml-3 fw-b fs-xl cec"><span style="color:#ffbc25;">(未发货)</span> 商品数</p>
  34. <div class="ml-3 cex">{{datawaitsendtotal.wsend_num}}</div>
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <script>
  40. // import CenterChart from '@/components/echart/center/centerChartRate'
  41. import asyncRequest from "@/apis/service/bigScreen";
  42. // import resToken from "@/mixins/resToken";
  43. export default {
  44. data() {
  45. return {
  46. datatotalzixunpurchease:{},
  47. datawaitsendtotal:{},
  48. }
  49. },
  50. mounted() {
  51. this.initHttp()
  52. },
  53. methods: {
  54. async initHttp(){
  55. let res = await asyncRequest.datatotalzixunpurchease();
  56. if(res.code == 0){
  57. this.datatotalzixunpurchease = res.data;
  58. // console.log(this.datatotalzixunpurchease)
  59. }else{
  60. this.$message.error(res.message)
  61. return;
  62. }
  63. let res_1 = await asyncRequest.datawaitsendtotal();
  64. if(res_1.code == 0){
  65. // console.log(res_1)
  66. this.datawaitsendtotal = res_1.data;
  67. // console.log(this.datawaitsendtotal)
  68. }else{
  69. this.$message.error(res_1.message)
  70. return;
  71. }
  72. },
  73. }
  74. }
  75. </script>
  76. <style lang="scss" scoped>
  77. #center {
  78. display: flex;
  79. flex-direction: column;
  80. .up {
  81. width: 100%;
  82. display: flex;
  83. flex-wrap: wrap;
  84. justify-content: space-around;
  85. .item {
  86. border-radius: 6px;
  87. padding-top: 8px;
  88. margin-top: 8px;
  89. margin-bottom: 82px;
  90. width: 46%;
  91. background: rgb(23, 28, 51);
  92. height: 70px;
  93. .dv-dig-flop {
  94. width: 150px;
  95. height: 30px;
  96. }
  97. }
  98. }
  99. .down {
  100. padding: 6px 4px;
  101. padding-bottom: 0;
  102. width: 100%;
  103. display: flex;
  104. height: 255px;
  105. justify-content: space-between;
  106. .bg-color-black {
  107. border-radius: 5px;
  108. }
  109. .ranking {
  110. padding: 10px;
  111. width: 59%;
  112. .dv-scr-rank-board {
  113. height: 225px;
  114. }
  115. }
  116. .percent {
  117. width: 40%;
  118. display: flex;
  119. flex-wrap: wrap;
  120. .item {
  121. width: 50%;
  122. height: 120px;
  123. span {
  124. margin-top: 8px;
  125. font-size: 14px;
  126. display: flex;
  127. justify-content: center;
  128. }
  129. }
  130. .water {
  131. width: 100%;
  132. .dv-wa-le-po {
  133. height: 120px;
  134. }
  135. }
  136. }
  137. }
  138. .cex{
  139. color: #28ffcd;
  140. width: 100%;
  141. font-size: 22px;
  142. // text-align: center;
  143. font-weight: 500;
  144. display: inline-block;
  145. margin-top: 10px;
  146. }
  147. .cec{
  148. color: #c3cbde;
  149. width: 100%;
  150. font-size: 16px;
  151. // text-align: center;
  152. font-weight: 500;
  153. display: inline-block;
  154. }
  155. }
  156. </style>