MainPage.js 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from 'react';
  9. import {
  10. Platform,
  11. StyleSheet,
  12. Text,
  13. View,
  14. Image,
  15. FlatList,
  16. TouchableOpacity,
  17. ImageBackground,
  18. TextInput,
  19. Button,
  20. ViewPagerAndroid,
  21. DeviceEventEmitter,
  22. SectionList,
  23. Animated,
  24. TouchableHighlight
  25. } from 'react-native';
  26. import BasePage from '../BasePage';
  27. import Header from './Header';
  28. import MySwiper from './Swiper';
  29. import Dimensions from '../utils/dimensions';
  30. import TopicTitle from './TopicTitle';
  31. import ScrollRow from './ScrollRow';
  32. import LibraryUrl from '../services/library';
  33. import { ScrollView } from 'react-native-gesture-handler';
  34. import commonutil from '../utils/commonutil';
  35. import http_user from '../services/user';
  36. export default class MainPage extends BasePage {
  37. constructor(props) {
  38. super(props);
  39. state: {
  40. file_user_data: new Map();
  41. }
  42. }
  43. updateRender(index) {
  44. // LibraryUrl.getIndex(index).success(res => {
  45. // }).fail(() => {
  46. // alert(1111)
  47. // })
  48. LibraryUrl.getIndex(index).then((res) => {
  49. console.log(res);
  50. const monthTopicTitle = res.data.monthTopic.zone.title;
  51. const monthTopicScroll = res.data.monthTopic.zoneCourseVOList;
  52. const schedule = res.data.schedule;
  53. const hotCourse = res.data.hotCourse;
  54. const recommend = res.data.recommend; //全部课程
  55. const banner = res.data.banner; //轮播图
  56. // const listData = [];
  57. // for(let item in res.data){
  58. // console.log(item)
  59. // listData.push(1)
  60. // }
  61. // console.log(typeof listData)
  62. // console.log(listData)
  63. // console.log(listData.length)
  64. let scheduleWeek = schedule[0].featureMap ? schedule[0].featureMap.weekSeq : '1';
  65. this.setState({
  66. // listData: listData.length? listData : [],
  67. hotCourse,
  68. monthTopicTitle,
  69. monthTopicScroll,
  70. schedule,
  71. recommend,
  72. banner,
  73. scheduleWeek
  74. });
  75. console.log(this.state.banner);
  76. });
  77. }
  78. state = {
  79. grade: '大学',
  80. text: '小伙子',
  81. ifGradeMenuShow: false,
  82. fadeAnim: new Animated.Value(0),
  83. schedule: [],
  84. recommend: [],
  85. listData: [],
  86. banner: [],
  87. currentSwitch: { title: '小学', param: 'PRIMARY_SCHOOL' },
  88. switchList: [
  89. // { title: '幼儿园', param: 'KINDERGARTEN' },
  90. { title: '学前', param: 'PRESCHOOL' },
  91. { title: '小学', param: 'PRIMARY_SCHOOL' },
  92. { title: '中学', param: 'MIDDLE_SCHOOL' }
  93. ],
  94. scheduleWeek: '1'
  95. };
  96. renderBtn = (item, index) => {
  97. return (
  98. // this.state.currentSwitch.param === item.param
  99. // ?
  100. // null
  101. // :
  102. // <TouchableOpacity onPress={() => this.switchGrade(index)} key={index} style={index === 1 ? styles.gradeItemMid : styles.gradeItem}>
  103. // <Text style={styles.gradeText}>{item.title}</Text>
  104. // </TouchableOpacity>
  105. <TouchableOpacity
  106. onPress={() => this.switchGrade(index)}
  107. key={index}
  108. style={index === 1 ? styles.gradeItemMid : styles.gradeItem}
  109. >
  110. <Text style={styles.gradeText}>{item.title}</Text>
  111. </TouchableOpacity>
  112. );
  113. };
  114. componentWillMount() {
  115. this.getUserInfo();
  116. }
  117. componentDidMount() {
  118. // this.updateRender('PRIMARY_SCHOOL');
  119. }
  120. switchGrade = (index) => {
  121. console.log('====================================');
  122. console.log('switchGrade:' + index);
  123. console.log('====================================');
  124. const obj = this.state.switchList[index];
  125. this.setState({
  126. currentSwitch: obj
  127. });
  128. this.hideGradeMenu();
  129. // if (obj.param === this.state.currentSwitch.param) return
  130. //这里更新个人信息学龄选项
  131. var bool = this.updateUserInfo(obj.param);
  132. this.updateRender(obj.param);
  133. };
  134. render() {
  135. // const abc =Object.keys(this.state.data).map((k)=>this.state.data[k])
  136. return (
  137. <View style={{ flex: 1 }} onPress={this.hideGradeMenu}>
  138. {/* <SectionList sectionList组件 性能好 但是针对当前布局是否有要用的必要,以后可能迭代
  139. sections={this.state.listData}
  140. renderItem={({ item }) => {
  141. return this.loadFlatItem(item);
  142. }}
  143. keyExtractor={(item, index) => item.key.toString()}
  144. ListHeaderComponent={() => this.headerorfooterComponent()}
  145. renderSectionHeader={this.sectionTitle}
  146. onScroll={this.hideGradeMenu}
  147. /> */}
  148. <ScrollView
  149. style={{ height: Dimensions.height }}
  150. showsVerticalScrollIndicator={false}
  151. onScroll={this.hideGradeMenu}
  152. >
  153. {this.headerorfooterComponent()}
  154. {this.getSwiperElement()}
  155. {this.getScheduleElement()}
  156. {this.getMonthTopic()}
  157. {this.getHotCourse()}
  158. {this.getAllCourses()}
  159. </ScrollView>
  160. {this.state.ifGradeMenuShow ? (
  161. <Animated.View
  162. style={{
  163. ...styles.callUpGrade,
  164. opacity: this.state.fadeAnim
  165. }}
  166. >
  167. {this.state.switchList.map((item, index) => this.renderBtn(item, index))}
  168. </Animated.View>
  169. ) : null}
  170. </View>
  171. );
  172. }
  173. // 头部组件
  174. headerorfooterComponent() {
  175. return (
  176. <View>
  177. <Header
  178. uri="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&amp;fm=26&amp;gp=0.jpg"
  179. width={400}
  180. height={150}
  181. username="卡通笨笨熊"
  182. flowerNumber="123234"
  183. onPress={() => this.toNextPage('userCenter')}
  184. />
  185. {/* 搜索区域 */}
  186. <View style={styles.searchSection}>
  187. <TextInput
  188. style={styles.searchBox}
  189. onChangeText={(text) => this.setState({ text })}
  190. value={this.state.text}
  191. />
  192. <TouchableOpacity onPress={this.tabCallOutHandler}>
  193. <View style={styles.rightBtn}>
  194. <Image source={require('../images/common/switch.png')} style={styles.rightBtnIcon} />
  195. <Text style={styles.rightBtnText}>{this.state.currentSwitch.title}</Text>
  196. </View>
  197. </TouchableOpacity>
  198. </View>
  199. </View>
  200. );
  201. }
  202. // 渲染轮播图
  203. getSwiperElement() {
  204. return (
  205. <View
  206. style={{
  207. height: Dimensions.getHeight(163),
  208. flex: 1,
  209. justifyContent: 'center',
  210. alignItems: 'center',
  211. flexDirection: 'row'
  212. }}
  213. >
  214. <View
  215. style={{
  216. width: Dimensions.getWidth(358),
  217. height: Dimensions.getHeight(153),
  218. justifyContent: 'center',
  219. overflow: 'hidden'
  220. }}
  221. >
  222. <MySwiper autoplay={true} loop={true} ifShowMiddle={true} data={this.state.banner} />
  223. </View>
  224. </View>
  225. );
  226. }
  227. // 渲染课程表
  228. getScheduleElement() {
  229. let renderScheduleItem = (item, index) => {
  230. const id = item.boothId;
  231. return (
  232. <TouchableOpacity
  233. style={{
  234. width: Dimensions.getWidth(172),
  235. height: Dimensions.getHeight(86),
  236. marginRight: 12
  237. }}
  238. onPress={() => this.toNextPage('SchedulePage', { id })}
  239. key={index}
  240. activeOpacity={1}
  241. >
  242. <ImageBackground
  243. source={{
  244. uri: item.boothContent
  245. }}
  246. key={index}
  247. style={{
  248. flex: 1,
  249. // justifyContent: "center",
  250. // alignItems: "center",
  251. borderRadius: 10
  252. }}
  253. >
  254. {item.operationContent === 'KINDERGARTE' ? null : (
  255. <View
  256. style={{
  257. width: Dimensions.getWidth(90),
  258. height: Dimensions.getHeight(45),
  259. marginLeft: Dimensions.getWidth(15),
  260. marginTop: Dimensions.getHeight(15),
  261. justifyContent: 'center',
  262. alignItems: 'center'
  263. }}
  264. >
  265. <Text
  266. style={{
  267. color: '#fff',
  268. fontSize: 18
  269. }}
  270. >
  271. {item.title}
  272. </Text>
  273. <Text
  274. style={{
  275. color: '#fff',
  276. fontSize: 18
  277. }}
  278. >
  279. {item.summary}
  280. </Text>
  281. </View>
  282. )}
  283. </ImageBackground>
  284. </TouchableOpacity>
  285. );
  286. };
  287. return (
  288. <View
  289. style={{
  290. flex: 1,
  291. flexDirection: 'column',
  292. height: Dimensions.getHeight(160)
  293. }}
  294. >
  295. <TopicTitle title={`课程表:第${this.state.scheduleWeek}周`} ifTubeShow={true} />
  296. {/* <View
  297. style={{
  298. flex: 2,
  299. flexDirection: "row",
  300. alignItems: 'center',
  301. paddingLeft: 10
  302. }}
  303. >
  304. {this.state.schedule.map((item, index) => renderScheduleItem(item, index))}
  305. </View> */}
  306. <FlatList
  307. data={this.state.schedule}
  308. horizontal={true}
  309. style={{ paddingLeft: '3.2%' }}
  310. renderItem={({ item, index }) => renderScheduleItem(item, index)}
  311. keyExtractor={(item, index) => index.toString()}
  312. showsHorizontalScrollIndicator={false}
  313. />
  314. </View>
  315. );
  316. }
  317. // 渲染月主题
  318. getMonthTopic() {
  319. return (
  320. <View
  321. style={{
  322. flex: 1,
  323. height: 225
  324. }}
  325. >
  326. <TopicTitle title={this.state.monthTopicTitle} summary={'每天30分钟'} ifTubeShow={true} />
  327. <ScrollRow
  328. itemWidth={352}
  329. itemHeight={153}
  330. nav={this.props.navigation.navigate}
  331. data={this.state.monthTopicScroll}
  332. />
  333. </View>
  334. );
  335. }
  336. // 渲染热门课程
  337. getHotCourse() {
  338. return (
  339. <View
  340. style={{
  341. flex: 1,
  342. height: 220
  343. }}
  344. >
  345. <TopicTitle title={'热门课程'} ifTubeShow={true} />
  346. <ScrollRow
  347. itemWidth={106}
  348. itemHeight={150}
  349. nav={this.props.navigation.navigate}
  350. data={this.state.hotCourse}
  351. />
  352. </View>
  353. );
  354. }
  355. // 渲染全部课程
  356. getAllCourses() {
  357. return (
  358. <View>
  359. {this.state.recommend.map((item, index) => {
  360. return (
  361. <View
  362. style={{
  363. flex: 1,
  364. height: 240
  365. }}
  366. key={index}
  367. >
  368. {index === 0 ? null : (
  369. <View style={{ width: Dimensions.width, height: 4, backgroundColor: '#f0f1f5' }} />
  370. )}
  371. <TopicTitle title={item.zone.title} />
  372. <ScrollRow
  373. itemWidth={106}
  374. itemHeight={150}
  375. nav={this.props.navigation.navigate}
  376. data={item.zoneCourseVOList}
  377. />
  378. </View>
  379. );
  380. })}
  381. </View>
  382. );
  383. }
  384. // 渲染每一个块儿 sectionList组件的data,没有用到,以后可能会用
  385. loadFlatItem(data) {
  386. switch (data.title) {
  387. // 轮播图
  388. case 'banner':
  389. return this.getSwiperElement();
  390. break;
  391. // 课程表
  392. case 'schedule':
  393. return this.getScheduleElement();
  394. break;
  395. // 大图主题
  396. case 'monthTopic':
  397. return this.getMonthTopic();
  398. break;
  399. // 热门课程
  400. case 'hotCourse':
  401. return this.getHotCourse();
  402. break;
  403. case 'recommend':
  404. return this.getAllCourses();
  405. break;
  406. default:
  407. break;
  408. }
  409. }
  410. // 渲染每一个section的title sectionList组件的data,没有用到,以后可能会用
  411. sectionTitle = (info) => {
  412. switch (info.section.title) {
  413. case 'operation':
  414. return (
  415. <View
  416. style={{
  417. width: Dimensions.width,
  418. height: 10,
  419. backgroundColor: '#f0f1f5'
  420. }}
  421. />
  422. );
  423. break;
  424. case 'courses':
  425. return <TopicTitle title={'全部课程'} tubeColor={'#7d9fff'} background={'#f0f1f5'} ifTubeShow={true} />;
  426. break;
  427. default:
  428. break;
  429. }
  430. };
  431. // 点击呼出学龄菜单
  432. tabCallOutHandler = () => {
  433. this.setState(
  434. {
  435. ifGradeMenuShow: !this.state.ifGradeMenuShow
  436. },
  437. () => {
  438. Animated.timing(this.state.fadeAnim, {
  439. toValue: this.state.ifGradeMenuShow ? 1 : 0,
  440. duration: 300
  441. }).start();
  442. }
  443. );
  444. };
  445. // 如果切换学龄在显示状态,那么在它失去焦点时将它隐藏
  446. hideGradeMenu = () => {
  447. if (this.state.ifGradeMenuShow) {
  448. this.setState({
  449. ifGradeMenuShow: false
  450. });
  451. }
  452. };
  453. async getUserInfo() {
  454. await global.storage
  455. .load({
  456. key: 'userInfo'
  457. })
  458. .then((result) => {
  459. this.state.file_user_data = commonutil.jsonToMap(result);
  460. console.log('=====MainPage获取本地用户信息============');
  461. console.log(commonutil.mapToJson(this.state.file_user_data));
  462. var ageGroup = this.state.file_user_data.get('ageGroup');
  463. var ageindex = 0;
  464. if (ageGroup === 'PRESCHOOL') {
  465. ageindex = 0;
  466. } else if (ageGroup === 'PRIMARY_SCHOOL') {
  467. ageindex = 1;
  468. } else if (ageGroup === 'MIDDLE_SCHOOL') {
  469. ageindex = 2;
  470. }
  471. this.switchGrade(ageindex);
  472. })
  473. .catch((err) => {
  474. console.log('ERROR' + err.message);
  475. });
  476. }
  477. async updateUserInfo(group) {
  478. let opts = {
  479. method: 'PUT', //请求方法
  480. body: { ageGroup: group } //请求体
  481. };
  482. await http_user.update_UserInfo(opts).then((res) => {
  483. this.state.file_user_data.set('ageGroup', res.data.ageGroup);
  484. this.state.file_user_data.set('avatar', res.data.avatar);
  485. this.state.file_user_data.set('birthday', res.data.birthday);
  486. this.state.file_user_data.set('channel', res.data.channel);
  487. this.state.file_user_data.set('city', res.data.city);
  488. this.state.file_user_data.set('country', res.data.country);
  489. this.state.file_user_data.set('eid', res.data.eid);
  490. this.state.file_user_data.set('gmtCreated', res.data.gmtCreated);
  491. this.state.file_user_data.set('gmtModified', res.data.gmtModified);
  492. this.state.file_user_data.set('mobile', res.data.mobile);
  493. this.state.file_user_data.set('nickName', res.data.nickName);
  494. this.state.file_user_data.set('province', res.data.province);
  495. this.state.file_user_data.set('school', res.data.school);
  496. this.state.file_user_data.set('sex', res.data.sex);
  497. this.state.file_user_data.set('status', res.data.status);
  498. this.state.file_user_data.set('uid', res.data.uid);
  499. this.saveUserInfo(commonutil.mapToJson(this.state.file_user_data));
  500. return true;
  501. });
  502. }
  503. }
  504. const styles = StyleSheet.create({
  505. title_text: {
  506. justifyContent: 'center',
  507. alignItems: 'center',
  508. color: 'red',
  509. fontSize: 30,
  510. textAlign: 'center',
  511. marginTop: 30,
  512. marginBottom: 50
  513. },
  514. /* 搜索区域 */
  515. searchSection: {
  516. flex: 1,
  517. width: Dimensions.width,
  518. height: Dimensions.getHeight(60),
  519. flexDirection: 'row',
  520. alignItems: 'center',
  521. backgroundColor: '#f0f1f5',
  522. justifyContent: 'space-around',
  523. position: 'relative'
  524. },
  525. searchBox: {
  526. width: Dimensions.getWidth(232),
  527. height: Dimensions.getHeight(40),
  528. backgroundColor: '#fff',
  529. borderRadius: 20
  530. },
  531. rightBtn: {
  532. width: Dimensions.getWidth(113),
  533. height: Dimensions.getHeight(40),
  534. backgroundColor: '#fff',
  535. borderRadius: 20,
  536. alignItems: 'center',
  537. justifyContent: 'center',
  538. justifyContent: 'space-around',
  539. flexDirection: 'row',
  540. paddingLeft: 20,
  541. paddingRight: 10
  542. },
  543. rightBtnIcon: {
  544. width: Dimensions.getWidth(23),
  545. height: Dimensions.getHeight(23)
  546. },
  547. rightBtnText: {
  548. color: '#151515',
  549. fontSize: 18
  550. },
  551. callUpGrade: {
  552. width: 113,
  553. height: 120,
  554. borderRadius: 20,
  555. position: 'absolute',
  556. right: 9,
  557. top: 125,
  558. zIndex: 999,
  559. elevation: 999,
  560. backgroundColor: '#fff',
  561. flexDirection: 'column'
  562. },
  563. gradeItem: {
  564. zIndex: 999,
  565. flex: 1,
  566. alignItems: 'center',
  567. justifyContent: 'center'
  568. },
  569. gradeItemMid: {
  570. zIndex: 999,
  571. flex: 1,
  572. alignItems: 'center',
  573. justifyContent: 'center',
  574. borderTopWidth: 1,
  575. borderBottomWidth: 1,
  576. borderColor: '#f0f1f5'
  577. },
  578. gradeText: {
  579. color: '#151515',
  580. fontSize: 18
  581. }
  582. });
  583. const sectionData = [
  584. {
  585. title: 'swiper',
  586. data: [
  587. {
  588. //轮播
  589. key: 111,
  590. typea: 1,
  591. text: '第一种类型'
  592. },
  593. {
  594. //只有一个标题下面两个图片
  595. key: 222,
  596. typea: 2,
  597. item: {
  598. item_type: 1,
  599. title: '课程表:第一周',
  600. icon_item: [
  601. {
  602. icon:
  603. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  604. name: '第一张图片文字'
  605. },
  606. {
  607. icon:
  608. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  609. name: '第二张图片文字'
  610. }
  611. ]
  612. }
  613. }
  614. ]
  615. },
  616. {
  617. title: 'operation',
  618. data: [
  619. {
  620. //一个标题,大长图
  621. key: 444,
  622. typea: 3,
  623. title: '五月主题:五一启程,去看看不同世界',
  624. text: '每天30分钟,玩学两不误',
  625. icon_item: [
  626. {
  627. icon:
  628. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  629. name: '第一张图片文字'
  630. },
  631. {
  632. icon:
  633. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  634. name: '第二张图片文字'
  635. },
  636. {
  637. icon:
  638. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  639. name: '第三张图片文字'
  640. },
  641. {
  642. icon:
  643. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  644. name: '第四张图片文字'
  645. },
  646. {
  647. icon:
  648. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  649. name: '第五张图片文字'
  650. }
  651. ]
  652. },
  653. {
  654. key: 555,
  655. typea: 4,
  656. title: '热门课程',
  657. text: 'text',
  658. mask: false,
  659. icon_item: [
  660. {
  661. icon:
  662. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  663. name: '第一张图片文字'
  664. },
  665. {
  666. icon:
  667. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  668. name: '第二张图片文字'
  669. },
  670. {
  671. icon:
  672. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  673. name: '第三张图片文字'
  674. },
  675. {
  676. icon:
  677. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  678. name: '第四张图片文字'
  679. },
  680. {
  681. icon:
  682. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  683. name: '第五张图片文字'
  684. }
  685. ]
  686. }
  687. ]
  688. },
  689. {
  690. title: 'courses',
  691. data: [
  692. {
  693. //一个标题,大长图
  694. key: 444,
  695. typea: 5,
  696. title: '五月主题:五一启程,去看看不同世界',
  697. text: '每天30分钟,玩学两不误',
  698. icon_item: [
  699. {
  700. icon:
  701. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  702. name: '第一张图片文字'
  703. },
  704. {
  705. icon:
  706. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  707. name: '第二张图片文字'
  708. },
  709. {
  710. icon:
  711. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  712. name: '第三张图片文字'
  713. },
  714. {
  715. icon:
  716. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  717. name: '第四张图片文字'
  718. },
  719. {
  720. icon:
  721. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  722. name: '第五张图片文字'
  723. }
  724. ]
  725. },
  726. {
  727. key: 555,
  728. typea: 5,
  729. title: '热门课程',
  730. text: 'text',
  731. mask: false,
  732. icon_item: [
  733. {
  734. icon:
  735. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  736. name: '第一张图片文字'
  737. },
  738. {
  739. icon:
  740. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  741. name: '第二张图片文字'
  742. },
  743. {
  744. icon:
  745. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  746. name: '第三张图片文字'
  747. },
  748. {
  749. icon:
  750. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  751. name: '第四张图片文字'
  752. },
  753. {
  754. icon:
  755. 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg',
  756. name: '第五张图片文字'
  757. }
  758. ]
  759. }
  760. ]
  761. }
  762. ];