zs 9 mesiacov pred
rodič
commit
7d190e5ae0

+ 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,