placeOrder.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <!-- 下单点数 -->
  2. <template>
  3. <van-row>
  4. <van-col span="24"><span class="leftTitle">本月进度</span></van-col>
  5. <van-col span="12">
  6. <p>
  7. <span class="colLabel colLabel_KK">可控店</span>
  8. <span class="colorbalck">{{
  9. Micrometer(reportTargetAll.controlledOrderShopMonthAct)
  10. }}</span>
  11. </p>
  12. </van-col>
  13. <van-col span="12">
  14. <p>
  15. <span class="colLabel colLabel_KK">可控店</span>
  16. <span class="colorbalck">{{ reportTargetAll.controlledShopMonthOrderRate }}%</span>
  17. </p>
  18. </van-col>
  19. <van-col span="12">
  20. <p>
  21. <span class="colLabel colLabel_FX">分销店</span>
  22. <span class="colorbalck">{{ Micrometer(reportTargetAll.fxOrderShopMonthAct) }}</span>
  23. </p>
  24. </van-col>
  25. <van-col span="12">
  26. <p>
  27. <span class="colLabel colLabel_FX">分销店</span
  28. ><span class="colorbalck">{{ reportTargetAll.fxShopMonthOrderRate }}%</span>
  29. </p>
  30. </van-col>
  31. <div>
  32. <div class="backLeft back"></div>
  33. <div class="backRight back"></div>
  34. <van-col span="12">
  35. <p>
  36. <span class="colLabel colLabel_JP">金牌店</span>
  37. <span class="colorbalck">{{ Micrometer(reportTargetAll.jpOrderShopMonthAct) }}</span>
  38. </p>
  39. </van-col>
  40. <van-col span="12">
  41. <p>
  42. <span class="colLabel colLabel_JP">金牌店</span>
  43. <span class="colorbalck"> {{ reportTargetAll.jpShopMonthOrderRate }}% </span>
  44. </p>
  45. </van-col>
  46. <van-col span="12">
  47. <p>
  48. <span class="colLabel colLabel_TCFX">同城分销</span>
  49. </p>
  50. </van-col>
  51. <van-col span="12">
  52. <p>
  53. <span class="colLabel colLabel_TCFX">同城分销</span>
  54. </p>
  55. </van-col>
  56. <van-col span="12">
  57. <p>
  58. 涂料店:
  59. <span class="colorbalck">{{ Micrometer(reportTargetAll.tcfxTlOrderShopMonthAct) }}</span>
  60. </p>
  61. </van-col>
  62. <van-col span="12">
  63. <p>
  64. 涂料店:
  65. <span class="colorbalck">{{ reportTargetAll.tcfxTlShopMonthOrderRate }}%</span>
  66. </p>
  67. </van-col>
  68. <van-col span="12">
  69. <p style="margin-top: 0">
  70. 厨卫店:
  71. <span class="colorbalck">{{
  72. Micrometer(reportTargetAll.tcfxOtherOrderShopMonthAct)
  73. }}</span>
  74. </p>
  75. </van-col>
  76. <van-col span="12">
  77. <p style="margin-top: 0">
  78. 厨卫店:
  79. <span class="colorbalck">{{ reportTargetAll.tcfxOtherShopMonthOrderRate }}%</span>
  80. </p>
  81. </van-col>
  82. </div>
  83. </van-row>
  84. </template>
  85. <script>
  86. export default {
  87. props: {
  88. reportTargetAll: {
  89. type: Object,
  90. },
  91. },
  92. data() {
  93. return {};
  94. },
  95. };
  96. </script>
  97. <style scoped>
  98. @import './index.css';
  99. </style>