| | |
| | | <template> |
| | | <CommonTitle title="降本增效" /> |
| | | <div :style="{ marginLeft: pxToRem(14) }"> |
| | | <div class="synergy"> |
| | | <div class="synergy-item" v-for="item in list"> |
| | | <div class="title">{{ item.name }}</div> |
| | | <div class="value" :style="{ color: item.color }">{{ item.value }}</div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | <script setup> |
| | | import CommonTitle from '@/components/CommonTitle.vue'; |
| | | import { pxToRem } from '@/utils/rem'; |
| | |
| | | getStatisticalData(); |
| | | }); |
| | | </script> |
| | | <template> |
| | | <CommonTitle title="降本增效" /> |
| | | <div :style="{ marginLeft: pxToRem(14) }"> |
| | | <div class="synergy"> |
| | | <div class="synergy-item" v-for="item in list"> |
| | | <div class="title">{{ item.name }}</div> |
| | | <div class="value" :style="{ color: item.color }">{{ item.value }}</div> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | </template> |
| | | |
| | | <style scoped lang="scss"> |
| | | .synergy { |