| 1234567891011121314151617181920212223242526272829 |
- export const teamName = [];
- teamName[0] = [];
- teamName[0][0] = '不组队';
- teamName[0][1] = '红队';
- teamName[0][2] = '黄队';
- teamName[0][3] = '蓝队';
- teamName[0][4] = '紫队';
- teamName[1] = [];
- teamName[1][0] = '不组队';
- teamName[1][1] = '学生队';
- teamName[1][2] = '家长队';
- export const defaultPopUpDataList = [
- {
- type: 2,
- data: {
- title: "活动流程",
- img: "/static/common/hdlc.png",
- }
- }, {
- type: 2,
- data: {
- title: "基本标识",
- img: "/static/common/jbbs.png",
- }
- },
- ];
|