MainPage.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. *
  5. * @format
  6. * @flow
  7. */
  8. import React, { Component } from 'react';
  9. import {
  10. Platform,
  11. StyleSheet,
  12. Text,
  13. View,
  14. Image,
  15. FlatList,
  16. TouchableOpacity,
  17. ImageBackground,
  18. TextInput,
  19. Button,
  20. ViewPagerAndroid,
  21. DeviceEventEmitter,
  22. SectionList,
  23. Animated,
  24. TouchableHighlight
  25. } from 'react-native';
  26. import Swiper from 'react-native-swiper';
  27. import AndroidUtil from '../../util/AndroidUtil';
  28. import BasePage from '../BasePage';
  29. import Header from './Header';
  30. import MySwiper from './Swiper';
  31. import Dimensions from '../utils/dimensions';
  32. import TopicTitle from './TopicTitle';
  33. import ScrollRow from './ScrollRow';
  34. import LibraryUrl from '../services/library';
  35. import { ScrollView } from 'react-native-gesture-handler';
  36. export default class MainPage extends BasePage {
  37. constructor(props) {
  38. super(props);
  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 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. });
  72. console.log(this.state.banner);
  73. });
  74. }
  75. state = {
  76. grade: '大学',
  77. text: '小伙子',
  78. ifGradeMenuShow: false,
  79. fadeAnim: new Animated.Value(0),
  80. schedule: [],
  81. recommend: [],
  82. listData: [],
  83. banner: [],
  84. currentSwitch: { title: '小学', param: 'PRIMARY_SCHOOL' },
  85. switchList: [
  86. // { title: '幼儿园', param: 'KINDERGARTEN' },
  87. { title: '学前', param: 'PRESCHOOL' },
  88. { title: '小学', param: 'PRIMARY_SCHOOL' },
  89. { title: '中学', param: 'MIDDLE_SCHOOL' }
  90. ],
  91. scheduleWeek: '1'
  92. };
  93. renderBtn = (item, index) => {
  94. return (
  95. // this.state.currentSwitch.param === item.param
  96. // ?
  97. // null
  98. // :
  99. // <TouchableOpacity onPress={() => this.switchGrade(index)} key={index} style={index === 1 ? styles.gradeItemMid : styles.gradeItem}>
  100. // <Text style={styles.gradeText}>{item.title}</Text>
  101. // </TouchableOpacity>
  102. <TouchableOpacity
  103. onPress={() => this.switchGrade(index)}
  104. key={index}
  105. style={index === 1 ? styles.gradeItemMid : styles.gradeItem}
  106. >
  107. <Text style={styles.gradeText}>{item.title}</Text>
  108. </TouchableOpacity>
  109. );
  110. };
  111. componentWillMount() {
  112. var index = 0;
  113. if (this.props.navigation.state.params == undefined) {
  114. index = 0;
  115. } else {
  116. index = this.props.navigation.state.params.index;
  117. }
  118. this.switchGrade(index);
  119. }
  120. componentDidMount() {
  121. // this.updateRender('PRIMARY_SCHOOL');
  122. }
  123. switchGrade = (index) => {
  124. const obj = this.state.switchList[index];
  125. this.setState({
  126. currentSwitch: obj
  127. });
  128. this.hideGradeMenu();
  129. // if (obj.param === this.state.currentSwitch.param) return
  130. 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. <ScrollView
  147. style={{ height: Dimensions.height }}
  148. showsVerticalScrollIndicator={false}
  149. onScroll={this.hideGradeMenu}
  150. >
  151. {this.headerorfooterComponent()}
  152. {this.getSwiperElement()}
  153. {this.getScheduleElement()}
  154. {this.getMonthTopic()}
  155. {this.getHotCourse()}
  156. {this.getAllCourses()}
  157. </ScrollView>
  158. {this.state.ifGradeMenuShow ? (
  159. <Animated.View
  160. style={{
  161. ...styles.callUpGrade,
  162. opacity: this.state.fadeAnim
  163. }}
  164. >
  165. {this.state.switchList.map((item, index) => this.renderBtn(item, index))}
  166. </Animated.View>
  167. ) : null}
  168. </View>
  169. );
  170. }
  171. // 头部组件
  172. headerorfooterComponent() {
  173. return (
  174. <View>
  175. <Header
  176. uri="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&amp;fm=26&amp;gp=0.jpg"
  177. width={400}
  178. height={150}
  179. username="卡通笨笨熊"
  180. flowerNumber="123234"
  181. onPress={() => this.toNextPage('userCenter')}
  182. />
  183. {/* 搜索区域 */}
  184. <View style={styles.searchSection}>
  185. <TextInput
  186. style={styles.searchBox}
  187. onChangeText={(text) => this.setState({ text })}
  188. value={this.state.text}
  189. />
  190. <TouchableOpacity onPress={this.tabCallOutHandler}>
  191. <View style={styles.rightBtn}>
  192. <Image source={require('../images/common/switch.png')} style={styles.rightBtnIcon} />
  193. <Text style={styles.rightBtnText}>{this.state.currentSwitch.title}</Text>
  194. </View>
  195. </TouchableOpacity>
  196. </View>
  197. </View>
  198. );
  199. }
  200. // 渲染轮播图
  201. getSwiperElement() {
  202. return (
  203. <View
  204. style={{
  205. height: Dimensions.getHeight(163),
  206. flex: 1,
  207. justifyContent: 'center',
  208. alignItems: 'center',
  209. flexDirection: 'row'
  210. }}
  211. >
  212. <View
  213. style={{
  214. width: Dimensions.getWidth(358),
  215. height: Dimensions.getHeight(153),
  216. justifyContent: 'center',
  217. overflow: 'hidden'
  218. }}
  219. >
  220. <MySwiper autoplay={true} loop={true} ifShowMiddle={true} data={this.state.banner} />
  221. </View>
  222. </View>
  223. );
  224. }
  225. // 渲染课程表
  226. getScheduleElement() {
  227. let renderScheduleItem = (item, index) => {
  228. const id = item.boothId;
  229. return (
  230. <TouchableOpacity
  231. style={{
  232. width: Dimensions.getWidth(172),
  233. height: Dimensions.getHeight(86),
  234. marginRight: 12
  235. }}
  236. onPress={() => this.toNextPage('SchedulePage', { id })}
  237. key={index}
  238. activeOpacity={1}
  239. >
  240. <ImageBackground
  241. source={{
  242. uri: item.boothContent
  243. }}
  244. key={index}
  245. style={{
  246. flex: 1,
  247. // justifyContent: "center",
  248. // alignItems: "center",
  249. borderRadius: 10
  250. }}
  251. >
  252. {item.operationContent === 'KINDERGARTE' ? null : (
  253. <View
  254. style={{
  255. width: Dimensions.getWidth(90),
  256. height: Dimensions.getHeight(45),
  257. marginLeft: Dimensions.getWidth(15),
  258. marginTop: Dimensions.getHeight(15),
  259. justifyContent: 'center',
  260. alignItems: 'center'
  261. }}
  262. >
  263. <Text
  264. style={{
  265. color: '#fff',
  266. fontSize: 18
  267. }}
  268. >
  269. {item.title}
  270. </Text>
  271. <Text
  272. style={{
  273. color: '#fff',
  274. fontSize: 18
  275. }}
  276. >
  277. {item.summary}
  278. </Text>
  279. </View>
  280. )}
  281. </ImageBackground>
  282. </TouchableOpacity>
  283. );
  284. };
  285. return (
  286. <View
  287. style={{
  288. flex: 1,
  289. flexDirection: 'column',
  290. height: Dimensions.getHeight(160)
  291. }}
  292. >
  293. <TopicTitle title={`课程表:第${this.state.scheduleWeek}周`} ifTubeShow={true} />
  294. {/* <View
  295. style={{
  296. flex: 2,
  297. flexDirection: "row",
  298. alignItems: 'center',
  299. paddingLeft: 10
  300. }}
  301. >
  302. {this.state.schedule.map((item, index) => renderScheduleItem(item, index))}
  303. </View> */}
  304. <FlatList
  305. data={this.state.schedule}
  306. horizontal={true}
  307. style={{ paddingLeft: '3.2%' }}
  308. renderItem={({ item, index }) => renderScheduleItem(item, index)}
  309. keyExtractor={(item, index) => index.toString()}
  310. showsHorizontalScrollIndicator={false}
  311. />
  312. </View>
  313. );
  314. }
  315. // 渲染月主题
  316. getMonthTopic() {
  317. return (
  318. <View
  319. style={{
  320. flex: 1,
  321. height: 225
  322. }}
  323. >
  324. <TopicTitle title={this.state.monthTopicTitle} summary={'每天30分钟'} ifTubeShow={true} />
  325. <ScrollRow
  326. itemWidth={352}
  327. itemHeight={153}
  328. nav={this.props.navigation.navigate}
  329. data={this.state.monthTopicScroll}
  330. />
  331. </View>
  332. );
  333. }
  334. // 渲染热门课程
  335. getHotCourse() {
  336. return (
  337. <View
  338. style={{
  339. flex: 1,
  340. height: 220
  341. }}
  342. >
  343. <TopicTitle title={'热门课程'} ifTubeShow={true} />
  344. <ScrollRow
  345. itemWidth={106}
  346. itemHeight={150}
  347. nav={this.props.navigation.navigate}
  348. data={this.state.hotCourse}
  349. />
  350. </View>
  351. );
  352. }
  353. // 渲染全部课程
  354. getAllCourses() {
  355. return (
  356. <View>
  357. {this.state.recommend.map((item, index) => {
  358. return (
  359. <View
  360. style={{
  361. flex: 1,
  362. height: 240
  363. }}
  364. key={index}
  365. >
  366. {index === 0 ? null : (
  367. <View style={{ width: Dimensions.width, height: 4, backgroundColor: '#f0f1f5' }} />
  368. )}
  369. <TopicTitle title={item.zone.title} />
  370. <ScrollRow
  371. itemWidth={106}
  372. itemHeight={150}
  373. nav={this.props.navigation.navigate}
  374. data={item.zoneCourseVOList}
  375. />
  376. </View>
  377. );
  378. })}
  379. </View>
  380. );
  381. }
  382. // 渲染每一个块儿 sectionList组件的data,没有用到,以后可能会用
  383. loadFlatItem(data) {
  384. switch (data.title) {
  385. // 轮播图
  386. case 'banner':
  387. return this.getSwiperElement();
  388. break;
  389. // 课程表
  390. case 'schedule':
  391. return this.getScheduleElement();
  392. break;
  393. // 大图主题
  394. case 'monthTopic':
  395. return this.getMonthTopic();
  396. break;
  397. // 热门课程
  398. case 'hotCourse':
  399. return this.getHotCourse();
  400. break;
  401. case 'recommend':
  402. return this.getAllCourses();
  403. break;
  404. default:
  405. break;
  406. }
  407. }
  408. // 渲染每一个section的title sectionList组件的data,没有用到,以后可能会用
  409. sectionTitle = (info) => {
  410. switch (info.section.title) {
  411. case 'operation':
  412. return (
  413. <View
  414. style={{
  415. width: Dimensions.width,
  416. height: 10,
  417. backgroundColor: '#f0f1f5'
  418. }}
  419. />
  420. );
  421. break;
  422. case 'courses':
  423. return <TopicTitle title={'全部课程'} tubeColor={'#7d9fff'} background={'#f0f1f5'} ifTubeShow={true} />;
  424. break;
  425. default:
  426. break;
  427. }
  428. };
  429. // 点击呼出学龄菜单
  430. tabCallOutHandler = () => {
  431. this.setState(
  432. {
  433. ifGradeMenuShow: !this.state.ifGradeMenuShow
  434. },
  435. () => {
  436. Animated.timing(this.state.fadeAnim, {
  437. toValue: this.state.ifGradeMenuShow ? 1 : 0,
  438. duration: 300
  439. }).start();
  440. }
  441. );
  442. };
  443. // 如果切换学龄在显示状态,那么在它失去焦点时将它隐藏
  444. hideGradeMenu = () => {
  445. if (this.state.ifGradeMenuShow) {
  446. this.setState({
  447. ifGradeMenuShow: false
  448. });
  449. }
  450. };
  451. }
  452. const styles = StyleSheet.create({
  453. title_text: {
  454. justifyContent: 'center',
  455. alignItems: 'center',
  456. color: 'red',
  457. fontSize: 30,
  458. textAlign: 'center',
  459. marginTop: 30,
  460. marginBottom: 50
  461. },
  462. /* 搜索区域 */
  463. searchSection: {
  464. flex: 1,
  465. width: Dimensions.width,
  466. height: Dimensions.getHeight(60),
  467. flexDirection: 'row',
  468. alignItems: 'center',
  469. backgroundColor: '#f0f1f5',
  470. justifyContent: 'space-around',
  471. position: 'relative'
  472. },
  473. searchBox: {
  474. width: Dimensions.getWidth(232),
  475. height: Dimensions.getHeight(40),
  476. backgroundColor: '#fff',
  477. borderRadius: 20
  478. },
  479. rightBtn: {
  480. width: Dimensions.getWidth(113),
  481. height: Dimensions.getHeight(40),
  482. backgroundColor: '#fff',
  483. borderRadius: 20,
  484. alignItems: 'center',
  485. justifyContent: 'center',
  486. justifyContent: 'space-around',
  487. flexDirection: 'row',
  488. paddingLeft: 20,
  489. paddingRight: 10
  490. },
  491. rightBtnIcon: {
  492. width: Dimensions.getWidth(23),
  493. height: Dimensions.getHeight(23)
  494. },
  495. rightBtnText: {
  496. color: '#151515',
  497. fontSize: 18
  498. },
  499. callUpGrade: {
  500. width: 113,
  501. height: 120,
  502. borderRadius: 20,
  503. position: 'absolute',
  504. right: 9,
  505. top: 125,
  506. zIndex: 999,
  507. elevation: 999,
  508. backgroundColor: '#fff',
  509. flexDirection: 'column'
  510. },
  511. gradeItem: {
  512. zIndex: 999,
  513. flex: 1,
  514. alignItems: 'center',
  515. justifyContent: 'center'
  516. },
  517. gradeItemMid: {
  518. zIndex: 999,
  519. flex: 1,
  520. alignItems: 'center',
  521. justifyContent: 'center',
  522. borderTopWidth: 1,
  523. borderBottomWidth: 1,
  524. borderColor: '#f0f1f5'
  525. },
  526. gradeText: {
  527. color: '#151515',
  528. fontSize: 18
  529. }
  530. });
  531. const sectionData = [
  532. {
  533. title: 'swiper',
  534. data: [
  535. {
  536. //轮播
  537. key: 111,
  538. typea: 1,
  539. text: '第一种类型'
  540. },
  541. {
  542. //只有一个标题下面两个图片
  543. key: 222,
  544. typea: 2,
  545. item: {
  546. item_type: 1,
  547. title: '课程表:第一周',
  548. icon_item: [
  549. {
  550. icon:
  551. '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',
  552. name: '第一张图片文字'
  553. },
  554. {
  555. icon:
  556. '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',
  557. name: '第二张图片文字'
  558. }
  559. ]
  560. }
  561. }
  562. ]
  563. },
  564. {
  565. title: 'operation',
  566. data: [
  567. {
  568. //一个标题,大长图
  569. key: 444,
  570. typea: 3,
  571. title: '五月主题:五一启程,去看看不同世界',
  572. text: '每天30分钟,玩学两不误',
  573. icon_item: [
  574. {
  575. icon:
  576. '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',
  577. name: '第一张图片文字'
  578. },
  579. {
  580. icon:
  581. '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',
  582. name: '第二张图片文字'
  583. },
  584. {
  585. icon:
  586. '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',
  587. name: '第三张图片文字'
  588. },
  589. {
  590. icon:
  591. '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',
  592. name: '第四张图片文字'
  593. },
  594. {
  595. icon:
  596. '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',
  597. name: '第五张图片文字'
  598. }
  599. ]
  600. },
  601. {
  602. key: 555,
  603. typea: 4,
  604. title: '热门课程',
  605. text: 'text',
  606. mask: false,
  607. icon_item: [
  608. {
  609. icon:
  610. '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',
  611. name: '第一张图片文字'
  612. },
  613. {
  614. icon:
  615. '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',
  616. name: '第二张图片文字'
  617. },
  618. {
  619. icon:
  620. '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',
  621. name: '第三张图片文字'
  622. },
  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. }
  635. ]
  636. },
  637. {
  638. title: 'courses',
  639. data: [
  640. {
  641. //一个标题,大长图
  642. key: 444,
  643. typea: 5,
  644. title: '五月主题:五一启程,去看看不同世界',
  645. text: '每天30分钟,玩学两不误',
  646. icon_item: [
  647. {
  648. icon:
  649. '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',
  650. name: '第一张图片文字'
  651. },
  652. {
  653. icon:
  654. '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',
  655. name: '第二张图片文字'
  656. },
  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. },
  674. {
  675. key: 555,
  676. typea: 5,
  677. title: '热门课程',
  678. text: 'text',
  679. mask: false,
  680. icon_item: [
  681. {
  682. icon:
  683. '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',
  684. name: '第一张图片文字'
  685. },
  686. {
  687. icon:
  688. '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',
  689. name: '第二张图片文字'
  690. },
  691. {
  692. icon:
  693. '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',
  694. name: '第三张图片文字'
  695. },
  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. }
  708. ]
  709. }
  710. ];