| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <!-- 下单点数 -->
- <template>
- <van-row>
- <van-col span="24"><span class="leftTitle">本月进度</span></van-col>
- <van-col span="12">
- <p>
- <span class="colLabel colLabel_KK">可控店</span>
- <span class="colorbalck">{{
- Micrometer(reportTargetAll.controlledOrderShopMonthAct)
- }}</span>
- </p>
- </van-col>
- <van-col span="12">
- <p>
- <span class="colLabel colLabel_KK">可控店</span>
- <span class="colorbalck">{{ reportTargetAll.controlledShopMonthOrderRate }}%</span>
- </p>
- </van-col>
- <van-col span="12">
- <p>
- <span class="colLabel colLabel_FX">分销店</span>
- <span class="colorbalck">{{ Micrometer(reportTargetAll.fxOrderShopMonthAct) }}</span>
- </p>
- </van-col>
- <van-col span="12">
- <p>
- <span class="colLabel colLabel_FX">分销店</span
- ><span class="colorbalck">{{ reportTargetAll.fxShopMonthOrderRate }}%</span>
- </p>
- </van-col>
- <div>
- <div class="backLeft back"></div>
- <div class="backRight back"></div>
- <van-col span="12">
- <p>
- <span class="colLabel colLabel_JP">金牌店</span>
- <span class="colorbalck">{{ Micrometer(reportTargetAll.jpOrderShopMonthAct) }}</span>
- </p>
- </van-col>
- <van-col span="12">
- <p>
- <span class="colLabel colLabel_JP">金牌店</span>
- <span class="colorbalck"> {{ reportTargetAll.jpShopMonthOrderRate }}% </span>
- </p>
- </van-col>
- <van-col span="12">
- <p>
- <span class="colLabel colLabel_TCFX">同城分销</span>
- </p>
- </van-col>
- <van-col span="12">
- <p>
- <span class="colLabel colLabel_TCFX">同城分销</span>
- </p>
- </van-col>
- <van-col span="12">
- <p>
- 涂料店:
- <span class="colorbalck">{{ Micrometer(reportTargetAll.tcfxTlOrderShopMonthAct) }}</span>
- </p>
- </van-col>
- <van-col span="12">
- <p>
- 涂料店:
- <span class="colorbalck">{{ reportTargetAll.tcfxTlShopMonthOrderRate }}%</span>
- </p>
- </van-col>
- <van-col span="12">
- <p style="margin-top: 0">
- 厨卫店:
- <span class="colorbalck">{{
- Micrometer(reportTargetAll.tcfxOtherOrderShopMonthAct)
- }}</span>
- </p>
- </van-col>
- <van-col span="12">
- <p style="margin-top: 0">
- 厨卫店:
- <span class="colorbalck">{{ reportTargetAll.tcfxOtherShopMonthOrderRate }}%</span>
- </p>
- </van-col>
- </div>
- </van-row>
- </template>
- <script>
- export default {
- props: {
- reportTargetAll: {
- type: Object,
- },
- },
- data() {
- return {};
- },
- };
- </script>
- <style scoped>
- @import './index.css';
- </style>
|