MainPage.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665
  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. componentDidMount() {
  41. LibraryUrl.getIndex('PRESCHOOL').success(res => {
  42. console.log(res)
  43. const monthTopicTitle = res.data.monthTopic.zone.title;
  44. const monthTopicScroll = res.data.monthTopic.zoneCourseVOList;
  45. const schedule = res.data.schedule;
  46. const hotCourse = res.data.hotCourse;
  47. const recommend = res.data.recommend; //全部课程
  48. const banner = res.data.banner; //轮播图
  49. // const listData = [];
  50. // for(let item in res.data){
  51. // console.log(item)
  52. // listData.push(1)
  53. // }
  54. // console.log(typeof listData)
  55. // console.log(listData)
  56. // console.log(listData.length)
  57. this.setState({
  58. // listData: listData.length? listData : [],
  59. hotCourse,
  60. monthTopicTitle,
  61. monthTopicScroll,
  62. schedule,
  63. recommend,
  64. banner
  65. })
  66. console.log(this.state.banner)
  67. })
  68. }
  69. state = {
  70. grade: '大学',
  71. text: '小伙子',
  72. ifGradeMenuShow: false,
  73. fadeAnim: new Animated.Value(0),
  74. schedule: [],
  75. recommend: [],
  76. listData: [],
  77. banner: [],
  78. currentSwitch: { title: '学前', param: 'PRESCHOOL' },
  79. switchList: [
  80. { title: '幼儿园', param: 'KINDERGARTEN' },
  81. { title: '学前', param: 'PRESCHOOL' },
  82. { title: '小学', param: 'PRIMARY_SCHOOL' },
  83. { title: '中学', param: 'MIDDLE_SCHOOL' },
  84. ]
  85. }
  86. renderBtn = (item, index) => {
  87. return (
  88. this.state.currentSwitch.param === item.param
  89. ?
  90. null
  91. :
  92. <TouchableOpacity onPress={() => this.switchGrade(index)} key={index} style={index === 1 ? styles.gradeItemMid : styles.gradeItem}>
  93. <Text style={styles.gradeText}>{item.title}</Text>
  94. </TouchableOpacity>
  95. )
  96. }
  97. switchGrade = (index) => {
  98. const obj = this.state.switchList[index]
  99. this.setState({
  100. currentSwitch: obj
  101. })
  102. this.hideGradeMenu()
  103. }
  104. render() {
  105. // const abc =Object.keys(this.state.data).map((k)=>this.state.data[k])
  106. return (
  107. <View style={{ flex: 1 }} onPress={this.hideGradeMenu}>
  108. {/* <SectionList sectionList组件 性能好 但是针对当前布局是否有要用的必要,以后可能迭代
  109. sections={this.state.listData}
  110. renderItem={({ item }) => {
  111. return this.loadFlatItem(item);
  112. }}
  113. keyExtractor={(item, index) => item.key.toString()}
  114. ListHeaderComponent={() => this.headerorfooterComponent()}
  115. renderSectionHeader={this.sectionTitle}
  116. onScroll={this.hideGradeMenu}
  117. /> */}
  118. <ScrollView style={{ height: Dimensions.height }} showsVerticalScrollIndicator = {false} onScroll={this.hideGradeMenu} >
  119. {this.headerorfooterComponent()}
  120. {this.getSwiperElement()}
  121. {this.getScheduleElement()}
  122. {this.getMonthTopic()}
  123. {this.getHotCourse()}
  124. {this.getAllCourses()}
  125. </ScrollView>
  126. {
  127. this.state.ifGradeMenuShow ? (
  128. <Animated.View
  129. style={{
  130. ...styles.callUpGrade,
  131. opacity: this.state.fadeAnim
  132. }}>
  133. {/* <TouchableOpacity style={styles.gradeItem}>
  134. <Text style={styles.gradeText}>小学</Text>
  135. </TouchableOpacity>
  136. <TouchableOpacity style={styles.gradeItemMid}>
  137. <Text style={styles.gradeText}>学前</Text>
  138. </TouchableOpacity>
  139. <TouchableOpacity style={styles.gradeItem}>
  140. <Text style={styles.gradeText}>中学</Text>
  141. </TouchableOpacity> */}
  142. {this.state.switchList.map((item, index) => this.renderBtn(item, index))}
  143. </Animated.View>
  144. ) : (
  145. null
  146. )
  147. }
  148. </View>
  149. );
  150. }
  151. // 头部组件
  152. headerorfooterComponent() {
  153. return (
  154. <View>
  155. <Header
  156. uri="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1295208965,3056573814&amp;fm=26&amp;gp=0.jpg"
  157. width={400}
  158. height={150}
  159. username="卡通笨笨熊"
  160. flowerNumber="123234"
  161. onPress={() => this.toNextPage("userCenter")}
  162. />
  163. {/* 搜索区域 */}
  164. <View style={styles.searchSection}>
  165. <TextInput
  166. style={styles.searchBox}
  167. onChangeText={(text) => this.setState({ text })}
  168. value={this.state.text}
  169. />
  170. <TouchableOpacity onPress={this.tabCallOutHandler}>
  171. <View
  172. style={styles.rightBtn}
  173. >
  174. <Image
  175. source={require('../images/common/switch.png')}
  176. style={styles.rightBtnIcon}
  177. />
  178. <Text
  179. style={styles.rightBtnText}
  180. >
  181. {this.state.currentSwitch.title}
  182. </Text>
  183. </View>
  184. </TouchableOpacity>
  185. </View>
  186. </View>
  187. );
  188. }
  189. // 渲染轮播图
  190. getSwiperElement() {
  191. return (
  192. <View
  193. style={{
  194. height: Dimensions.getHeight(163),
  195. flex: 1,
  196. justifyContent: "center",
  197. alignItems: "center",
  198. flexDirection: "row",
  199. }}
  200. >
  201. <View
  202. style={{
  203. width: Dimensions.getWidth(358),
  204. height: Dimensions.getHeight(153),
  205. justifyContent: "center",
  206. overflow: 'hidden'
  207. }}
  208. >
  209. <MySwiper
  210. autoplay={true}
  211. loop={true}
  212. ifShowMiddle={true}
  213. data={this.state.banner}
  214. />
  215. </View>
  216. </View>
  217. );
  218. }
  219. // 渲染课程表
  220. getScheduleElement() {
  221. let renderScheduleItem = (item, index) => {
  222. return (
  223. <TouchableOpacity
  224. style={{
  225. width: Dimensions.getWidth(172),
  226. height: Dimensions.getHeight(86),
  227. marginRight: 12
  228. }}
  229. onPress={() => this.toNextPage('SchedulePage')}
  230. key={index}
  231. activeOpacity={1}
  232. >
  233. <Image
  234. source={{
  235. uri: item.boothContent
  236. }}
  237. key={index}
  238. style={{
  239. flex: 1,
  240. justifyContent: "center",
  241. alignItems: "center",
  242. borderRadius: 10
  243. }}
  244. />
  245. </TouchableOpacity>
  246. )
  247. }
  248. return (
  249. <View
  250. style={{
  251. flex: 1,
  252. flexDirection: "column",
  253. height: Dimensions.getHeight(160),
  254. }}
  255. >
  256. <TopicTitle title={'课程表:第一周'} ifTubeShow={true} />
  257. <View
  258. style={{
  259. flex: 2,
  260. flexDirection: "row",
  261. alignItems: 'center',
  262. paddingLeft: 10
  263. }}
  264. >
  265. {this.state.schedule.map((item, index) => renderScheduleItem(item, index))}
  266. </View>
  267. </View>
  268. );
  269. }
  270. // 渲染月主题
  271. getMonthTopic() {
  272. return (
  273. <View style={{
  274. flex: 1,
  275. height: 225,
  276. }}>
  277. <TopicTitle title={this.state.monthTopicTitle} summary={'每天30分钟'} ifTubeShow={true} />
  278. <ScrollRow itemWidth={352} itemHeight={153} nav={this.props.navigation.navigate} data={this.state.monthTopicScroll} />
  279. </View>
  280. );
  281. }
  282. // 渲染热门课程
  283. getHotCourse() {
  284. return (
  285. <View style={{
  286. flex: 1,
  287. height: 220,
  288. }}>
  289. <TopicTitle title={'热门课程'} ifTubeShow={true} />
  290. <ScrollRow itemWidth={106} itemHeight={150} nav={this.props.navigation.navigate} data={this.state.hotCourse} />
  291. </View>
  292. )
  293. }
  294. // 渲染全部课程
  295. getAllCourses() {
  296. return (
  297. <View>
  298. {this.state.recommend.map((item, index) => {
  299. return (
  300. <View
  301. style={{
  302. flex: 1,
  303. height: 240,
  304. }}
  305. key={index}
  306. >
  307. {index === 0
  308. ?
  309. null
  310. :
  311. <View style={{ width: Dimensions.width, height: 4, backgroundColor: '#f0f1f5' }}></View>
  312. }
  313. <TopicTitle title={item.zone.title} />
  314. <ScrollRow itemWidth={106} itemHeight={150} nav={this.props.navigation.navigate} data={item.zoneCourseVOList} />
  315. </View>
  316. )
  317. })}
  318. </View>
  319. )
  320. }
  321. // 渲染每一个块儿 sectionList组件的data,没有用到,以后可能会用
  322. loadFlatItem(data) {
  323. switch (data.title) {
  324. // 轮播图
  325. case 'banner':
  326. return this.getSwiperElement();
  327. break;
  328. // 课程表
  329. case 'schedule':
  330. return this.getScheduleElement();
  331. break;
  332. // 大图主题
  333. case 'monthTopic':
  334. return this.getMonthTopic();
  335. break;
  336. // 热门课程
  337. case 'hotCourse':
  338. return this.getHotCourse();
  339. break;
  340. case 'recommend':
  341. return this.getAllCourses();
  342. break;
  343. default:
  344. break;
  345. }
  346. }
  347. // 渲染每一个section的title sectionList组件的data,没有用到,以后可能会用
  348. sectionTitle = (info) => {
  349. switch (info.section.title) {
  350. case 'operation':
  351. return (
  352. <View
  353. style={{
  354. width: Dimensions.width,
  355. height: 10,
  356. backgroundColor: '#f0f1f5'
  357. }}
  358. />
  359. );
  360. break;
  361. case 'courses':
  362. return <TopicTitle title={'全部课程'} tubeColor={'#7d9fff'} background={'#f0f1f5'} ifTubeShow={true} />
  363. break;
  364. default:
  365. break;
  366. }
  367. }
  368. // 点击呼出学龄菜单
  369. tabCallOutHandler = () => {
  370. this.setState({
  371. ifGradeMenuShow: !this.state.ifGradeMenuShow
  372. }, () => {
  373. Animated.timing(
  374. this.state.fadeAnim,
  375. {
  376. toValue: this.state.ifGradeMenuShow ? 1 : 0,
  377. duration: 300,
  378. }
  379. ).start();
  380. })
  381. }
  382. // 如果切换学龄在显示状态,那么在它失去焦点时将它隐藏
  383. hideGradeMenu = () => {
  384. if (this.state.ifGradeMenuShow) {
  385. this.setState({
  386. ifGradeMenuShow: false
  387. })
  388. }
  389. }
  390. }
  391. const styles = StyleSheet.create({
  392. title_text: {
  393. justifyContent: "center",
  394. alignItems: "center",
  395. color: "red",
  396. fontSize: 30,
  397. textAlign: "center",
  398. marginTop: 30,
  399. marginBottom: 50
  400. },
  401. /* 搜索区域 */
  402. searchSection: {
  403. flex: 1,
  404. width: Dimensions.width,
  405. height: Dimensions.getHeight(60),
  406. flexDirection: 'row',
  407. alignItems: 'center',
  408. backgroundColor: '#f0f1f5',
  409. justifyContent: 'space-around',
  410. position: 'relative',
  411. },
  412. searchBox: {
  413. width: Dimensions.getWidth(232),
  414. height: Dimensions.getHeight(40),
  415. backgroundColor: '#fff',
  416. borderRadius: 20
  417. },
  418. rightBtn: {
  419. width: Dimensions.getWidth(113),
  420. height: Dimensions.getHeight(40),
  421. backgroundColor: '#fff',
  422. borderRadius: 20,
  423. alignItems: 'center',
  424. justifyContent: 'center',
  425. justifyContent: 'space-around',
  426. flexDirection: 'row',
  427. paddingLeft: 20,
  428. paddingRight: 10,
  429. },
  430. rightBtnIcon: {
  431. width: Dimensions.getWidth(23),
  432. height: Dimensions.getHeight(23),
  433. },
  434. rightBtnText: {
  435. color: '#151515',
  436. fontSize: 18,
  437. },
  438. callUpGrade: {
  439. width: 113,
  440. height: 120,
  441. borderRadius: 20,
  442. position: 'absolute',
  443. right: 9,
  444. top: 125,
  445. zIndex: 999,
  446. elevation: 999,
  447. backgroundColor: '#fff',
  448. flexDirection: 'column'
  449. },
  450. gradeItem: {
  451. zIndex: 999,
  452. flex: 1,
  453. alignItems: 'center',
  454. justifyContent: 'center',
  455. },
  456. gradeItemMid: {
  457. zIndex: 999,
  458. flex: 1,
  459. alignItems: 'center',
  460. justifyContent: 'center',
  461. borderTopWidth: 1,
  462. borderBottomWidth: 1,
  463. borderColor: '#f0f1f5'
  464. },
  465. gradeText: {
  466. color: '#151515',
  467. fontSize: 18,
  468. }
  469. });
  470. const sectionData = [
  471. {
  472. title: 'swiper',
  473. data: [{
  474. //轮播
  475. key: 111,
  476. typea: 1,
  477. text: "第一种类型"
  478. },
  479. {
  480. //只有一个标题下面两个图片
  481. key: 222,
  482. typea: 2,
  483. item: {
  484. item_type: 1,
  485. title: "课程表:第一周",
  486. icon_item: [
  487. {
  488. icon:
  489. "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",
  490. name: "第一张图片文字"
  491. },
  492. {
  493. icon:
  494. "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",
  495. name: "第二张图片文字"
  496. }
  497. ]
  498. }
  499. },]
  500. },
  501. {
  502. title: 'operation',
  503. data: [{
  504. //一个标题,大长图
  505. key: 444,
  506. typea: 3,
  507. title: "五月主题:五一启程,去看看不同世界",
  508. text: "每天30分钟,玩学两不误",
  509. icon_item: [
  510. {
  511. icon:
  512. "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",
  513. name: "第一张图片文字"
  514. },
  515. {
  516. icon:
  517. "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",
  518. name: "第二张图片文字"
  519. },
  520. {
  521. icon:
  522. "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",
  523. name: "第三张图片文字"
  524. },
  525. {
  526. icon:
  527. "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",
  528. name: "第四张图片文字"
  529. },
  530. {
  531. icon:
  532. "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",
  533. name: "第五张图片文字"
  534. }
  535. ]
  536. },
  537. {
  538. key: 555,
  539. typea: 4,
  540. title: "热门课程",
  541. text: "text",
  542. mask: false,
  543. icon_item: [
  544. {
  545. icon:
  546. "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",
  547. name: "第一张图片文字"
  548. },
  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. icon:
  561. "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",
  562. name: "第四张图片文字"
  563. },
  564. {
  565. icon:
  566. "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",
  567. name: "第五张图片文字"
  568. }
  569. ]
  570. },]
  571. },
  572. {
  573. title: 'courses',
  574. data: [{
  575. //一个标题,大长图
  576. key: 444,
  577. typea: 5,
  578. title: "五月主题:五一启程,去看看不同世界",
  579. text: "每天30分钟,玩学两不误",
  580. icon_item: [
  581. {
  582. icon:
  583. "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",
  584. name: "第一张图片文字"
  585. },
  586. {
  587. icon:
  588. "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",
  589. name: "第二张图片文字"
  590. },
  591. {
  592. icon:
  593. "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",
  594. name: "第三张图片文字"
  595. },
  596. {
  597. icon:
  598. "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",
  599. name: "第四张图片文字"
  600. },
  601. {
  602. icon:
  603. "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",
  604. name: "第五张图片文字"
  605. }
  606. ]
  607. },
  608. {
  609. key: 555,
  610. typea: 5,
  611. title: "热门课程",
  612. text: "text",
  613. mask: false,
  614. icon_item: [
  615. {
  616. icon:
  617. "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",
  618. name: "第一张图片文字"
  619. },
  620. {
  621. icon:
  622. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  623. name: "第二张图片文字"
  624. },
  625. {
  626. icon:
  627. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  628. name: "第三张图片文字"
  629. },
  630. {
  631. icon:
  632. "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",
  633. name: "第四张图片文字"
  634. },
  635. {
  636. icon:
  637. "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",
  638. name: "第五张图片文字"
  639. }
  640. ]
  641. },]
  642. }
  643. ]