| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!-- 拜访数据(实时) -->
- <template>
- <van-row>
- <van-col span="12"><span class="leftTitle">昨日新增:</span></van-col
- ><van-col span="12"><span class="rightTitle">本月实际:</span></van-col>
- <van-col span="12"
- ><p>
- 下单点数:<span class="colorbalck">{{ Micrometer(reportTargetAll.excellentPostYes) }}</span>
- </p></van-col
- >
- <van-col span="12"
- ><p>
- 下单点数:<span class="colorbalck">{{
- Micrometer(reportTargetAll.excellentPostMonth)
- }}</span>
- </p></van-col
- >
- <van-col span="12"><p></p></van-col>
- <van-col span="12"
- ><p>
- 下单率:<span class="colorbalck">{{ reportTargetAll.excellentPostOrderRateMonth }}%</span>
- </p></van-col
- >
- <van-col span="12"
- ><p>
- 下单数量(包):<span class="colorbalck">{{
- Micrometer(reportTargetAll.excellentPostOrderNumYes)
- }}</span>
- </p></van-col
- >
- <van-col span="12"
- ><p>
- 下单数量(包):<span class="colorbalck">{{
- Micrometer(reportTargetAll.excellentPostOrderNumMonth)
- }}</span>
- </p>
- </van-col>
- </van-row>
- </template>
- <script>
- export default {
- props: {
- reportTargetAll: {
- type: Object,
- },
- },
- data() {
- return {};
- },
- };
- </script>
- <style scoped>
- @import './index.css';
- </style>
|