MainPage.js 22 KB

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