guhongwei 4 years ago
parent
commit
af781a552a
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/store/market/marketproduct.js

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

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