| | |
| | | |
| | | const statisticsList = ref([]); |
| | | |
| | | const singleTotal = inject('singleTotal') |
| | | // 添加监听 |
| | | watch( |
| | | () => store.state.home.singleTotal, |
| | | watch(singleTotal, |
| | | (newValue) => { |
| | | if (!newValue) return; |
| | | statisticsList.value = [ |
| | | { imgurl: rwcs, num: newValue.fly_count || 0, text: '任务次数(次)' }, |
| | | { imgurl: rwcs, num: newValue.task_num || 0, text: '任务次数(次)' }, |
| | | { imgurl: sjs, num: newValue.event_count || 0, text: '事件数(件)' }, |
| | | { imgurl: jscb, num: newValue.total_cost_saved || 0, text: '节省成本(万元)' }, |
| | | { imgurl: rwcg, num: newValue.achievement_count || 0, text: '任务成果(个)' }, |