Newer
Older
KaiFengPC / src / views / spongePerformance / ManagingPerformance / projectCompletionStatus / index.js
@zhangdeliang zhangdeliang on 23 May 515 bytes 初始化项目
  1. import {
  2. ref,
  3. } from "vue";
  4. export const top = ref({
  5. xdata: ['2021', '2022', '2023', '项目总数'],
  6. data: [4.2, 3.5, 2.9, 7.8],
  7. color: ['#86D882'],
  8. name:'已开工项目'
  9. });
  10. export const center = ref({
  11. xdata: ['2021', '2022', '2023'],
  12. data: [42.2, 32.5, 2.9, 7.8, 5, 3],
  13. color: ['#159AFF'],
  14. name:'已完工项目'
  15.  
  16. });
  17. export const foot = ref({
  18. xdata: ['2021', '2022', '2023'],
  19. data: [224.222, 3.5, 2.9, 7.8, 5, 3],
  20. color: ['#F8AA45'],
  21. name:'投资项目'
  22.  
  23. });