MainPage.js 23 KB

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