wxy 4 years ago
parent
commit
c3609dc93c

+ 2 - 2
src/store/live/personalchat.js

@@ -10,8 +10,8 @@ const state = () => ({});
 const mutations = {};
 
 const actions = {
-  async query({ commit }, { skip = 0, limit = undefined, ...info } = {}) {
-    const res = await this.$axios.$get(api.interface, { skip, limit, ...info });
+  async query({ commit }, { skip = 0, limit = undefined, isdel = '0', ...info } = {}) {
+    const res = await this.$axios.$get(api.interface, { skip, limit, isdel, ...info });
     return res;
   },
   async create({ commit }, payload) {

+ 2 - 1
src/store/market/enterpriseproject.js

@@ -30,10 +30,11 @@ const actions = {
     return res;
   },
 
-  async newquery({ commit }, { skip = 0, limit, ...info } = {}) {
+  async newquery({ commit }, { skip = 0, limit, isdel = '0', ...info } = {}) {
     const res = await this.$axios.$get(`${api.columnInfo}`, {
       skip,
       limit,
+      isdel,
       ...info,
     });
     return res;

+ 2 - 1
src/store/market/marketproduct.js

@@ -18,10 +18,11 @@ const actions = {
     });
     return res;
   },
-  async marketquery({ commit }, { skip = 0, limit, ...info } = {}) {
+  async marketquery({ commit }, { skip = 0, limit, isdel = '0', ...info } = {}) {
     const res = await this.$axios.$get(`${api.indexqueryinfo}`, {
       skip,
       limit,
+      isdel,
       ...info,
     });
     return res;