@@ -46,6 +46,10 @@ const actions = {
const res = await this.$axios.$post(`${api.dockInfo}/updatevipuser/${id}`, data);
return res;
},
+ async createvipuser({ commit }, { id, ...data }) {
+ const res = await this.$axios.$post(`${api.dockInfo}/createvipuser/${id}`, data);
+ return res;
+ },
};
export default {