12345678910111213141516171819202122232425262728293031323334353637383940 |
- import BaseStore from '@src/stores/base';
- export default class MainStore extends BaseStore {
- /**
- * 获取首页配置
- */
- getIndex() {
- return this.apiGet('/base/index');
- }
- /**
- * 获取广告列表
- */
- getAd() {
- return this.apiGet('/base/ad');
- }
- /**
- * 获取考分排行信息
- */
- getScore(total, quant) {
- return this.apiGet('/base/score', { total, quant });
- }
- /**
- * 所有练习层级
- */
- getExercise() {
- return this.apiGet('/exercise/struct');
- }
- /**
- * 所有模考层级
- */
- getExamination() {
- return this.apiGet('/examination/struct');
- }
- }
- export const Main = new MainStore({ key: 'main' });
|