MainPage.js 23 KB

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