zs 9 달 전
부모
커밋
7d190e5ae0
6개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 1
      src/store/system/dictdata.js
  2. 1 1
      src/store/system/dicttype.js
  3. 1 1
      src/store/system/menus.js
  4. 1 1
      src/store/system/role.js
  5. 1 1
      src/store/users/admin.js
  6. 1 1
      src/store/users/user.js

+ 1 - 1
src/store/system/dictdata.js

@@ -9,7 +9,7 @@ const state = () => ({});
 const mutations = {};
 
 const actions = {
-  async query({ commit }, { skip = 0, limit, ...info } = {}) {
+  async query({ commit }, { skip, limit, ...info } = {}) {
     const res = await this.$axios.$get(`${api.test}`, {
       skip,
       limit,

+ 1 - 1
src/store/system/dicttype.js

@@ -9,7 +9,7 @@ const state = () => ({});
 const mutations = {};
 
 const actions = {
-  async query({ commit }, { skip = 0, limit, ...info } = {}) {
+  async query({ commit }, { skip, limit, ...info } = {}) {
     const res = await this.$axios.$get(`${api.test}`, {
       skip,
       limit,

+ 1 - 1
src/store/system/menus.js

@@ -9,7 +9,7 @@ const state = () => ({});
 const mutations = {};
 
 const actions = {
-  async query({ commit }, { skip = 0, limit, ...info } = {}) {
+  async query({ commit }, { skip, limit, ...info } = {}) {
     const res = await this.$axios.$get(`${api.test}`, {
       skip,
       limit,

+ 1 - 1
src/store/system/role.js

@@ -9,7 +9,7 @@ const state = () => ({});
 const mutations = {};
 
 const actions = {
-  async query({ commit }, { skip = 0, limit, ...info } = {}) {
+  async query({ commit }, { skip, limit, ...info } = {}) {
     const res = await this.$axios.$get(`${api.test}`, {
       skip,
       limit,

+ 1 - 1
src/store/users/admin.js

@@ -9,7 +9,7 @@ const state = () => ({});
 const mutations = {};
 
 const actions = {
-  async query({ commit }, { skip = 0, limit, ...info } = {}) {
+  async query({ commit }, { skip, limit, ...info } = {}) {
     const res = await this.$axios.$get(`${api.test}`, {
       skip,
       limit,

+ 1 - 1
src/store/users/user.js

@@ -9,7 +9,7 @@ const state = () => ({});
 const mutations = {};
 
 const actions = {
-  async query({ commit }, { skip = 0, limit, ...info } = {}) {
+  async query({ commit }, { skip, limit, ...info } = {}) {
     const res = await this.$axios.$get(`${api.test}`, {
       skip,
       limit,