|
@@ -34,6 +34,14 @@ const actions = {
|
|
const res = await this.$axios.$delete(`${api.dockInfo}/${payload}`);
|
|
const res = await this.$axios.$delete(`${api.dockInfo}/${payload}`);
|
|
return res;
|
|
return res;
|
|
},
|
|
},
|
|
|
|
+ async userList({ commit }, { skip = 0, limit, ...info } = {}) {
|
|
|
|
+ const res = await this.$axios.$get(`${api.dockInfo}/userList`, {
|
|
|
|
+ skip,
|
|
|
|
+ limit,
|
|
|
|
+ ...info,
|
|
|
|
+ });
|
|
|
|
+ return res;
|
|
|
|
+ },
|
|
};
|
|
};
|
|
export default {
|
|
export default {
|
|
namespaced: true,
|
|
namespaced: true,
|