|
@@ -109,7 +109,7 @@ export default new Vuex.Store({
|
|
|
if (type === 'list') {
|
|
|
data = this.$toUndefined(data);
|
|
|
let { schid, corpname, is_practice } = data;
|
|
|
- result = await this.$axios.$get(api.infos, {}, { corpname: corpname, schid: schid, is_practice: is_practice, skip: skip, limit: limit });
|
|
|
+ result = await this.$axios.$get(api.infos, {}, { corpname: corpname, schid: schid, is_practice: is_practice, skip: skip, limit: limit, status: 1 });
|
|
|
}
|
|
|
if (type === 'search') {
|
|
|
let { id } = data;
|
|
@@ -124,7 +124,7 @@ export default new Vuex.Store({
|
|
|
if (type === 'list') {
|
|
|
data = this.$toUndefined(data);
|
|
|
let { schid, corpname, date } = data;
|
|
|
- result = await this.$axios.$get(api.talks, {}, { corpname: corpname, schid: schid, date: date, skip: skip, limit: limit });
|
|
|
+ result = await this.$axios.$get(api.talks, {}, { corpname: corpname, schid: schid, date: date, skip: skip, limit: limit, status: 1 });
|
|
|
}
|
|
|
if (type === 'search') {
|
|
|
let { id } = data;
|