|
@@ -13,6 +13,10 @@ const actions = {
|
|
|
const res = await this.$axios.$get(api.dockInfo, { skip, limit, ...info });
|
|
|
return res;
|
|
|
},
|
|
|
+ async myapply({ commit }, { skip = 0, limit = undefined, ...info } = {}) {
|
|
|
+ const res = await this.$axios.$get(api.dockInfo, { skip, limit, ...info });
|
|
|
+ return res;
|
|
|
+ },
|
|
|
async create({ commit }, payload) {
|
|
|
const res = await this.$axios.$post(`${api.dockInfo}`, payload);
|
|
|
return res;
|