12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- export const nianji_list = [{
- label: '一年级',
- id: 1
- },
- {
- label: '二年级',
- id: 2
- },
- {
- label: '三年级',
- id: 3
- },
- {
- label: '四年级',
- id: 4
- },
- {
- label: '五年级',
- id: 5
- },
- {
- label: '六年级',
- id: 6
- },
- ];
- export const SHUXUE = 1; // 数学
- export const YINGYU = 2; // 英语
-
- export const xueke_list = [
- {
- label: "数学",
- id: SHUXUE,
- cardId:1
- },
- {
- label: "英语",
- id: YINGYU,
- cardId: 2
- }
- ]
- export const MESSAGE_BEFORE_PAY = `当前为非会员模式请先购买!`;
- export const MESSAGE_VISITER_TO_LOGIN = `您当前是游客身份,登录后才能浏览内容,现在去登录?`;
|