|
@@ -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;
|