2020年4月16日

React后台管理系统- rc-pagination分页组件封装

摘要: React后台管理系统 rc pagination分页组件封装 1.用户列表页面使用的rc pagination分页组件 Github地址: https://github.com/react component/pagination 2.安装 cnpm install save dev rc pag 阅读全文

posted @ 2020-04-16 19:51 six、hc 阅读(568) 评论(0) 推荐(0) 编辑

React后台管理系统-用户列表页面

摘要: React后台管理系统 用户列表页面 1.页面的结构 //遍历list, 返回数据 let listBody= this.state.list.map((user,index)= { return ( <tr key={index} <td {user.id}</td <td {user.usern 阅读全文

posted @ 2020-04-16 19:50 six、hc 阅读(394) 评论(0) 推荐(0) 编辑

React后台管理系统-table-list组件

摘要: React后台管理系统 table list组件 table list组件可用于商品列表,用户列表页面 需要传入一个tableHeads集合和tablebody import React from 'react'; // 通用的列表 class TableList extends React.Com 阅读全文

posted @ 2020-04-16 19:49 six、hc 阅读(430) 评论(0) 推荐(0) 编辑

React后台管理系统-商品列表搜索框listSearch组件

摘要: React后台管理系统 商品列表搜索框listSearch组件 1.商品列表搜索框 2.搜索框页面的结构为 <div className="row search wrap" <div className="col md 12" <div className="form inline" <div cl 阅读全文

posted @ 2020-04-16 19:48 six、hc 阅读(361) 评论(0) 推荐(0) 编辑

React台管理系统-商品管理列表组件

摘要: React后台管理系统 商品管理列表组件 1.商品列表页面结构 <div id="page wrapper" <PageTitle title="商品列表" <div className="page header right" <Link to="/product/save" className=" 阅读全文

posted @ 2020-04-16 19:47 six、hc 阅读(263) 评论(0) 推荐(0) 编辑

React后台管理系统-file-uploader组件

摘要: React后台管理系统 file uploader组件 1.React文件上传组件github地址: https://github.com/SoAanyip/React FileUpload 2.Util里边新建file uploader文件夹,里边新建index.jsx import React 阅读全文

posted @ 2020-04-16 19:45 six、hc 阅读(504) 评论(0) 推荐(0) 编辑

React后台管理系统-rich-editor组件

摘要: React后台管理系统 rich editor组件 1.Simditor组件的github地址:https://github.com/mycolorway/simditor 网址:http://simditor.tower.im/ 2.在util里边新建rich editor文件夹,里边新建inde 阅读全文

posted @ 2020-04-16 19:44 six、hc 阅读(225) 评论(0) 推荐(0) 编辑

React管理系统-添加商品组件

摘要: React后台管理系统 添加商品组件 引入了CategorySelector 二级联动组件、FileUploader图片上传组件和RichEditor富文本编辑组件 import React from 'react'; import MUtil from 'util/mm.jsx' import P 阅读全文

posted @ 2020-04-16 17:48 six、hc 阅读(174) 评论(0) 推荐(0) 编辑

React管理系统-商品详情detail组件

摘要: React后端管理系统 商品详情detail组件 import React from 'react'; import MUtil from 'util/mm.jsx' import Product from 'service/product service.jsx' import PageTitle 阅读全文

posted @ 2020-04-16 17:47 six、hc 阅读(235) 评论(0) 推荐(0) 编辑

React管理系统-品类选择器二级联动组件

摘要: React后台管理系统 品类选择器二级联动组件 1.页面大致是这个样子 2.页面结构 <div className="col md 10" <select name="" onChange={(e) = this.onFirstCategoryChange(e)} className="form c 阅读全文

posted @ 2020-04-16 17:28 six、hc 阅读(449) 评论(0) 推荐(0) 编辑

导航