veryGoodPlaceOrder.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!-- 拜访数据(实时) -->
  2. <template>
  3. <van-row>
  4. <van-col span="12"><span class="leftTitle">昨日新增:</span></van-col
  5. ><van-col span="12"><span class="rightTitle">本月实际:</span></van-col>
  6. <van-col span="12"
  7. ><p>
  8. 下单点数:<span class="colorbalck">{{ Micrometer(reportTargetAll.excellentPostYes) }}</span>
  9. </p></van-col
  10. >
  11. <van-col span="12"
  12. ><p>
  13. 下单点数:<span class="colorbalck">{{
  14. Micrometer(reportTargetAll.excellentPostMonth)
  15. }}</span>
  16. </p></van-col
  17. >
  18. <van-col span="12"><p></p></van-col>
  19. <van-col span="12"
  20. ><p>
  21. 下单率:<span class="colorbalck">{{ reportTargetAll.excellentPostOrderRateMonth }}%</span>
  22. </p></van-col
  23. >
  24. <van-col span="12"
  25. ><p>
  26. 下单数量(包):<span class="colorbalck">{{
  27. Micrometer(reportTargetAll.excellentPostOrderNumYes)
  28. }}</span>
  29. </p></van-col
  30. >
  31. <van-col span="12"
  32. ><p>
  33. 下单数量(包):<span class="colorbalck">{{
  34. Micrometer(reportTargetAll.excellentPostOrderNumMonth)
  35. }}</span>
  36. </p>
  37. </van-col>
  38. </van-row>
  39. </template>
  40. <script>
  41. export default {
  42. props: {
  43. reportTargetAll: {
  44. type: Object,
  45. },
  46. },
  47. data() {
  48. return {};
  49. },
  50. };
  51. </script>
  52. <style scoped>
  53. @import './index.css';
  54. </style>