|
@@ -4,6 +4,7 @@ import _ from 'lodash';
|
|
|
Vue.use(Vuex);
|
|
|
const api = {
|
|
|
dockInfo: `/api/live/dock`,
|
|
|
+ myapplyInfo: `/api/live/dock/myapply`,
|
|
|
};
|
|
|
const state = () => ({});
|
|
|
const mutations = {};
|
|
@@ -14,7 +15,11 @@ const actions = {
|
|
|
return res;
|
|
|
},
|
|
|
async myapply({ commit }, { skip = 0, limit = undefined, ...info } = {}) {
|
|
|
- const res = await this.$axios.$get(api.dockInfo, { skip, limit, ...info });
|
|
|
+ const res = await this.$axios.$get(api.myapplyInfo, {
|
|
|
+ skip,
|
|
|
+ limit,
|
|
|
+ ...info,
|
|
|
+ });
|
|
|
return res;
|
|
|
},
|
|
|
async create({ commit }, payload) {
|