|
@@ -0,0 +1,38 @@
|
|
|
|
+import Vue from 'vue';
|
|
|
|
+import Vuex from 'vuex';
|
|
|
|
+import _ from 'lodash';
|
|
|
|
+Vue.use(Vuex);
|
|
|
|
+const api = {
|
|
|
|
+ questionnaireInfo: `/api/train/questionnaire`,
|
|
|
|
+};
|
|
|
|
+const state = () => ({});
|
|
|
|
+const mutations = {};
|
|
|
|
+
|
|
|
|
+const actions = {
|
|
|
|
+ async query({ commit }, { skip = 0, limit, ...info } = {}) {
|
|
|
|
+ const res = await this.$axios.$get(`${api.questionnaireInfo}`, { skip, limit, ...info });
|
|
|
|
+ return res;
|
|
|
|
+ },
|
|
|
|
+ async create({ commit }, payload) {
|
|
|
|
+ const res = await this.$axios.$post(`${api.questionnaireInfo}`, payload);
|
|
|
|
+ return res;
|
|
|
|
+ },
|
|
|
|
+ async fetch({ commit }, payload) {
|
|
|
|
+ const res = await this.$axios.$get(`${api.questionnaireInfo}/${payload}`);
|
|
|
|
+ return res;
|
|
|
|
+ },
|
|
|
|
+ async update({ commit }, { id, ...data }) {
|
|
|
|
+ const res = await this.$axios.$post(`${api.questionnaireInfo}/update/${id}`, data);
|
|
|
|
+ return res;
|
|
|
|
+ },
|
|
|
|
+ async delete({ commit }, payload) {
|
|
|
|
+ const res = await this.$axios.$delete(`${api.questionnaireInfo}/${payload}`);
|
|
|
|
+ return res;
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+export default {
|
|
|
|
+ namespaced: true,
|
|
|
|
+ state,
|
|
|
|
+ mutations,
|
|
|
|
+ actions,
|
|
|
|
+};
|