博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
react---简易展开收起组件
阅读量:5314 次
发布时间:2019-06-14

本文共 1282 字,大约阅读时间需要 4 分钟。

组件核心代码:

import React from 'react';// import PropTypes from 'prop-types';// 展开收起组件class ArrowSlide extends React.Component {  static defaultProps = {    itemLable: false, // 是否展开    itemsName: '' // 检查项目名称  };  constructor(props) {    super(props);    const { itemLable } = props; // 是否展开收起列表项    this.state = {      itemLable    };  }  /**   * 展开收起切换   * @memberof EleItem   */  handleToggleCondition = () => {    const { itemLable } = this.state;    this.setState({ itemLable: !itemLable });  }  render() {    const { itemsName } = this.props;    const { itemLable } = this.state;    return (      
{itemsName}
{this.props.children}
); }}export default ArrowSlide;

  组件调用:

handleTemplateFieldsChange(e, field, code, id)} > {(exam_pro_lists || []).map(({ exam_code: code = 0 }) => { const checkItem = TemplateBase.config[code]; const config = `${code}` === '326'; if (checkItem) { return
; } return ''; })}

  页面:

且默认第一项是展开的,代码控制:

 

转载于:https://www.cnblogs.com/yxfboke/p/11281030.html

你可能感兴趣的文章
asp.net 调用前台JS调用后台,后台掉前台JS
查看>>
Attribute(特性)与AOP
查看>>
苹果手表:大方向和谷歌一样,硬件分道扬镳
查看>>
Competing Consumers Pattern (竞争消费者模式)
查看>>
Android面试收集录15 Android Bitmap压缩策略
查看>>
PHP魔术方法之__call与__callStatic方法
查看>>
ubuntu 安装后的配置
查看>>
【模板】对拍程序
查看>>
【转】redo与undo
查看>>
解决升级系统导致的 curl: (48) An unknown option was passed in to libcurl
查看>>
Java Session 介绍;
查看>>
spoj TBATTLE 质因数分解+二分
查看>>
Django 模型层
查看>>
dedecms讲解-arc.listview.class.php分析,列表页展示
查看>>
P2P综述
查看>>
第五章 如何使用Burp Target
查看>>
Sprint阶段测试评分总结
查看>>
sqlite3经常使用命令&语法
查看>>
linux下编译openjdk8
查看>>
【python】--迭代器生成器装饰器
查看>>