feiyu02
2025-03-03 7eb2abf43167d9db3fca2e7958b90ff1bea0cead
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { ref } from 'vue';
import { defineStore } from 'pinia';
import missionApi from '@/api/missionApi';
import { useFetchData } from '@/composables/fetchData';
 
// 走航任务
export const useMissionStore = defineStore('mission', () => {
  const missionList = ref([]);
  const { loading, fetchData } = useFetchData(1000);
 
  function fetchMission(type) {
    return fetchData((page, pageSize) => {
      return missionApi
        .fethchMission({ type: type, page, pageSize })
        .then((res) => {
          missionList.value = res.data;
          return res;
        });
    });
  }
 
  function deleteMission(missionCode) {
    return fetchData(() => {
      return missionApi.deleteMission(missionCode).then((res) => {
        let index = -1;
        for (let i = 0; i < missionList.value.length; i++) {
          const e = missionList.value[i];
          if (e.missionCode == missionCode) {
            index = i;
            break;
          }
        }
        if (index != -1) {
          missionList.value.splice(index, 1);
        }
        return res;
      });
    });
  }
 
  return { missionList, loading, fetchMission, deleteMission };
});