zhanghua
2022-10-28 d4ab8daa939334d634c5ccfe2ccac7d61d17a467
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import bayonetApi from "@/api/system/bayonet";
// import { Message } from "element-ui";
export default {
  namespaced: true,
  state: {
    userInfo: {},
  },
  actions: {
    async getBayonetList({ state }, params) {
      const res = await bayonetApi.getBayonetList(params);
      return res;
    },
    async exportBayonetList({ state },params) {
      const res = await bayonetApi.exportBayonetList(params);
      return res;
    },
    async addBayonet({ state },params) {
      const res = await bayonetApi.addBayonet(params);
      return res;
    },
  },
};