1
2
3
4
5
6
7
8
9
10
11
12
| import { $http } from './index';
|
| /**
| *
| */
| export default {
| fethchMission({ type, page, pageSize }) {
| let params = `page=${page}&perPage=${pageSize}`;
| params += type ? `&type=${type}` : '';
| return $http.get(`air/mission/type?${params}`).then((res) => res.data);
| }
| };
|
|