MainPage.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661
  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 }} 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.getDp(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.getDp(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={{ width: 172, height: 86, marginRight: 12 }}
  225. onPress={() => this.toNextPage('SchedulePage')}
  226. key={index}
  227. activeOpacity={1}
  228. >
  229. <Image
  230. source={{
  231. uri: item.boothContent
  232. }}
  233. key={index}
  234. style={{
  235. flex: 1,
  236. justifyContent: "center",
  237. alignItems: "center",
  238. borderRadius: 10
  239. }}
  240. />
  241. </TouchableOpacity>
  242. )
  243. }
  244. return (
  245. <View
  246. style={{
  247. flex: 1,
  248. flexDirection: "column",
  249. height: 160,
  250. }}
  251. >
  252. <TopicTitle title={'课程表:第一周'} ifTubeShow={true} />
  253. <View
  254. style={{
  255. flex: 2,
  256. flexDirection: "row",
  257. alignItems: 'center',
  258. paddingLeft: 10
  259. }}
  260. >
  261. {this.state.schedule.map((item, index) => renderScheduleItem(item, index))}
  262. </View>
  263. </View>
  264. );
  265. }
  266. // 渲染月主题
  267. getMonthTopic() {
  268. return (
  269. <View style={{
  270. flex: 1,
  271. height: 225,
  272. }}>
  273. <TopicTitle title={this.state.monthTopicTitle} summary={'每天30分钟'} ifTubeShow={true} />
  274. <ScrollRow itemWidth={352} itemHeight={153} nav={this.props.navigation.navigate} data={this.state.monthTopicScroll} />
  275. </View>
  276. );
  277. }
  278. // 渲染热门课程
  279. getHotCourse() {
  280. return (
  281. <View style={{
  282. flex: 1,
  283. height: 220,
  284. }}>
  285. <TopicTitle title={'热门课程'} ifTubeShow={true} />
  286. <ScrollRow itemWidth={106} itemHeight={150} nav={this.props.navigation.navigate} data={this.state.hotCourse} />
  287. </View>
  288. )
  289. }
  290. // 渲染全部课程
  291. getAllCourses() {
  292. return (
  293. <View>
  294. {this.state.recommend.map((item, index) => {
  295. return (
  296. <View
  297. style={{
  298. flex: 1,
  299. height: 240,
  300. }}
  301. key={index}
  302. >
  303. {index === 0
  304. ?
  305. null
  306. :
  307. <View style={{ width: Dimensions.width, height: 4, backgroundColor: '#f0f1f5' }}></View>
  308. }
  309. <TopicTitle title={item.zone.title} />
  310. <ScrollRow itemWidth={106} itemHeight={150} nav={this.props.navigation.navigate} data={item.zoneCourseVOList} />
  311. </View>
  312. )
  313. })}
  314. </View>
  315. )
  316. }
  317. // 渲染每一个块儿 sectionList组件的data,没有用到,以后可能会用
  318. loadFlatItem(data) {
  319. switch (data.title) {
  320. // 轮播图
  321. case 'banner':
  322. return this.getSwiperElement();
  323. break;
  324. // 课程表
  325. case 'schedule':
  326. return this.getScheduleElement();
  327. break;
  328. // 大图主题
  329. case 'monthTopic':
  330. return this.getMonthTopic();
  331. break;
  332. // 热门课程
  333. case 'hotCourse':
  334. return this.getHotCourse();
  335. break;
  336. case 'recommend':
  337. return this.getAllCourses();
  338. break;
  339. default:
  340. break;
  341. }
  342. }
  343. // 渲染每一个section的title sectionList组件的data,没有用到,以后可能会用
  344. sectionTitle = (info) => {
  345. switch (info.section.title) {
  346. case 'operation':
  347. return (
  348. <View
  349. style={{
  350. width: Dimensions.width,
  351. height: 10,
  352. backgroundColor: '#f0f1f5'
  353. }}
  354. />
  355. );
  356. break;
  357. case 'courses':
  358. return <TopicTitle title={'全部课程'} tubeColor={'#7d9fff'} background={'#f0f1f5'} ifTubeShow={true} />
  359. break;
  360. default:
  361. break;
  362. }
  363. }
  364. // 点击呼出学龄菜单
  365. tabCallOutHandler = () => {
  366. this.setState({
  367. ifGradeMenuShow: !this.state.ifGradeMenuShow
  368. }, () => {
  369. Animated.timing(
  370. this.state.fadeAnim,
  371. {
  372. toValue: this.state.ifGradeMenuShow ? 1 : 0,
  373. duration: 300,
  374. }
  375. ).start();
  376. })
  377. }
  378. // 如果切换学龄在显示状态,那么在它失去焦点时将它隐藏
  379. hideGradeMenu = () => {
  380. if (this.state.ifGradeMenuShow) {
  381. this.setState({
  382. ifGradeMenuShow: false
  383. })
  384. }
  385. }
  386. }
  387. const styles = StyleSheet.create({
  388. title_text: {
  389. justifyContent: "center",
  390. alignItems: "center",
  391. color: "red",
  392. fontSize: 30,
  393. textAlign: "center",
  394. marginTop: 30,
  395. marginBottom: 50
  396. },
  397. /* 搜索区域 */
  398. searchSection: {
  399. flex: 1,
  400. width: Dimensions.width,
  401. height: 60,
  402. flexDirection: 'row',
  403. alignItems: 'center',
  404. backgroundColor: '#f0f1f5',
  405. justifyContent: 'space-around',
  406. position: 'relative',
  407. },
  408. searchBox: {
  409. width: 232,
  410. height: 40,
  411. backgroundColor: '#fff',
  412. borderRadius: 20
  413. },
  414. rightBtn: {
  415. width: 113,
  416. height: 40,
  417. backgroundColor: '#fff',
  418. borderRadius: 20,
  419. alignItems: 'center',
  420. justifyContent: 'center',
  421. justifyContent: 'space-around',
  422. flexDirection: 'row',
  423. paddingLeft: 20,
  424. paddingRight: 10,
  425. },
  426. rightBtnIcon: {
  427. width: 14,
  428. height: 14
  429. },
  430. rightBtnText: {
  431. color: '#151515',
  432. fontSize: 18,
  433. },
  434. callUpGrade: {
  435. width: 113,
  436. height: 120,
  437. borderRadius: 20,
  438. position: 'absolute',
  439. right: 9,
  440. top: 125,
  441. zIndex: 999,
  442. elevation: 999,
  443. backgroundColor: '#fff',
  444. flexDirection: 'column'
  445. },
  446. gradeItem: {
  447. zIndex: 999,
  448. flex: 1,
  449. alignItems: 'center',
  450. justifyContent: 'center',
  451. },
  452. gradeItemMid: {
  453. zIndex: 999,
  454. flex: 1,
  455. alignItems: 'center',
  456. justifyContent: 'center',
  457. borderTopWidth: 1,
  458. borderBottomWidth: 1,
  459. borderColor: '#f0f1f5'
  460. },
  461. gradeText: {
  462. color: '#151515',
  463. fontSize: 18,
  464. }
  465. });
  466. const sectionData = [
  467. {
  468. title: 'swiper',
  469. data: [{
  470. //轮播
  471. key: 111,
  472. typea: 1,
  473. text: "第一种类型"
  474. },
  475. {
  476. //只有一个标题下面两个图片
  477. key: 222,
  478. typea: 2,
  479. item: {
  480. item_type: 1,
  481. title: "课程表:第一周",
  482. icon_item: [
  483. {
  484. icon:
  485. "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",
  486. name: "第一张图片文字"
  487. },
  488. {
  489. icon:
  490. "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",
  491. name: "第二张图片文字"
  492. }
  493. ]
  494. }
  495. },]
  496. },
  497. {
  498. title: 'operation',
  499. data: [{
  500. //一个标题,大长图
  501. key: 444,
  502. typea: 3,
  503. title: "五月主题:五一启程,去看看不同世界",
  504. text: "每天30分钟,玩学两不误",
  505. icon_item: [
  506. {
  507. icon:
  508. "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",
  509. name: "第一张图片文字"
  510. },
  511. {
  512. icon:
  513. "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",
  514. name: "第二张图片文字"
  515. },
  516. {
  517. icon:
  518. "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",
  519. name: "第三张图片文字"
  520. },
  521. {
  522. icon:
  523. "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",
  524. name: "第四张图片文字"
  525. },
  526. {
  527. icon:
  528. "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",
  529. name: "第五张图片文字"
  530. }
  531. ]
  532. },
  533. {
  534. key: 555,
  535. typea: 4,
  536. title: "热门课程",
  537. text: "text",
  538. mask: false,
  539. icon_item: [
  540. {
  541. icon:
  542. "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",
  543. name: "第一张图片文字"
  544. },
  545. {
  546. icon:
  547. "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",
  548. name: "第二张图片文字"
  549. },
  550. {
  551. icon:
  552. "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",
  553. name: "第三张图片文字"
  554. },
  555. {
  556. icon:
  557. "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",
  558. name: "第四张图片文字"
  559. },
  560. {
  561. icon:
  562. "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",
  563. name: "第五张图片文字"
  564. }
  565. ]
  566. },]
  567. },
  568. {
  569. title: 'courses',
  570. data: [{
  571. //一个标题,大长图
  572. key: 444,
  573. typea: 5,
  574. title: "五月主题:五一启程,去看看不同世界",
  575. text: "每天30分钟,玩学两不误",
  576. icon_item: [
  577. {
  578. icon:
  579. "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",
  580. name: "第一张图片文字"
  581. },
  582. {
  583. icon:
  584. "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",
  585. name: "第二张图片文字"
  586. },
  587. {
  588. icon:
  589. "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",
  590. name: "第三张图片文字"
  591. },
  592. {
  593. icon:
  594. "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",
  595. name: "第四张图片文字"
  596. },
  597. {
  598. icon:
  599. "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",
  600. name: "第五张图片文字"
  601. }
  602. ]
  603. },
  604. {
  605. key: 555,
  606. typea: 5,
  607. title: "热门课程",
  608. text: "text",
  609. mask: false,
  610. icon_item: [
  611. {
  612. icon:
  613. "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",
  614. name: "第一张图片文字"
  615. },
  616. {
  617. icon:
  618. "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",
  619. name: "第二张图片文字"
  620. },
  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. icon:
  633. "https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1556277324856&di=dc1548a0c5ba10481af922e174912937&imgtype=0&src=http%3A%2F%2Fwww.51pptmoban.com%2Fd%2Ffile%2F2012%2F05%2F12%2F82c4568a90055adcf8fbb896f0841c69.jpg",
  634. name: "第五张图片文字"
  635. }
  636. ]
  637. },]
  638. }
  639. ]