analyzeInfo.js 530 B

1234567891011121314151617181920212223242526
  1. import { ref } from 'vue'
  2. import { postData } from '../api/axios.js'
  3. export function useAnalyzeInfo() {
  4. const analyzeInfo = ref({
  5. nodeFile: {
  6. id: null,
  7. num: 0,
  8. sNodes: 0,
  9. dNodes: 0,
  10. iNodes: 0,
  11. },
  12. edgeFile: {
  13. id: null,
  14. num: 0,
  15. },
  16. mission: {
  17. id: null,
  18. name: null,
  19. createTime: null,
  20. status: null,
  21. }
  22. });
  23. return {
  24. analyzeInfo,
  25. }
  26. }