瀏覽代碼

Merge branch 'master' of http://git.cc-lotus.info/service-platform/common

wuhongyu 5 年之前
父節點
當前提交
e80326c493
共有 1 個文件被更改,包括 8 次插入7 次删除
  1. 8 7
      store/market/markettype.js

+ 8 - 7
store/market/markettype.js

@@ -3,30 +3,31 @@ import Vuex from 'vuex';
 import _ from 'lodash';
 Vue.use(Vuex);
 const api = {
-  interface: `/api/setting/codeitem`,
+  codeitemInfo: `/api/setting/codeitem`,
 };
 const state = () => ({});
 const mutations = {};
 
 const actions = {
-  async query({ commit }, { skip = 0, limit, ...info } = {}) {
-    const res = await this.$axios.$get(api.interface, { skip, limit, ...info });
+  async query({ commit }, { skip = 0, limit = 10, ...info } = {}) {
+    console.log(info);
+    const res = await this.$axios.$get(api.codeitemInfo, { skip, limit, ...info });
     return res;
   },
   async create({ commit }, payload) {
-    const res = await this.$axios.$post(`${api.interface}`, payload);
+    const res = await this.$axios.$post(`${api.codeitemInfo}`, payload);
     return res;
   },
   async fetch({ commit }, payload) {
-    const res = await this.$axios.$get(`${api.interface}/${payload}`);
+    const res = await this.$axios.$get(`${api.codeitemInfo}/${payload}`);
     return res;
   },
   async update({ commit }, { id, ...info } = {}) {
-    const res = await this.$axios.$post(`${api.interface}/${id}`, { ...info });
+    const res = await this.$axios.$post(`${api.codeitemInfo}/${id}`, { ...info });
     return res;
   },
   async delete({ commit }, payload) {
-    const res = await this.$axios.$delete(`${api.interface}/${payload}`);
+    const res = await this.$axios.$delete(`${api.codeitemInfo}/${payload}`);
     return res;
   },
 };