MainPage.js 23 KB

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