自定义主题 首先自定义主题需要修改antd,antd本身也是less写的之后编译成css的,所以当我们需要使用less. 1.yarn add react-app-rewire-less --dev const { injectBabelPlugin } = require('react-app-rewired'); + const rewireLess = require('react-app-rewire-less'); module.exports = function override(…
什么是react按需加载?简单来说就是当我们引用antd的时候需要引入全局css样式,这会对性能造成一定的影响,那么使用按需加载以后就不需要引入css全局样式了,直接引入功能模块即可,既然需要设置按需加载就要对webpack文件进行修改,需要我们执行npm run eject命令来展开项目的隐藏文件,如果只是简单的修改,我们可以使用react-app-rewired定义全局变量,react-app-rewired的作用就是在不eject的情况下,覆盖create-react-app的配置.具体如…
废话不多说,直接上代码.一目了然. import React, { Component } from "react"; import { Table } from "antd"; import PropTypes from "prop-types"; class TableBar extends Component { constructor(props) { super(props); this.onScrollEvent = this.onS…
最近在做react+antd项目.不可避免的遇到了修改antd默认样式的问题. 比如,table组件的表头背景色设置,如果直接使用元素样式,会修改整个项目的table.这里我用的方法是,给table添加一个div父元素,给他设置个className,然后设置这个样式内的table表头样式. 我使用的.less预编译. <div className={styles.boxW} > <Table columns={colType} rowKey='fxwd' pagination={fals…
1.在Component的Radio中加个style={radioStyle}. <RadioGroup> <Radio style={radioStyle} value={}>多和他人谈话</Radio> <Radio style={radioStyle} value={}>写下计划</Radio>> </RadioGroup> 2.在style-components中写 export const radioStyle = {…
1.less使用报错 less配置修改一般都是1个修改1个增加 test: /\.(css|less)$/, // 修改 // 增加 { loader: require.resolve('less-loader') // compiles Less to CSS } 将增加的改为{ loader: 'less-loader', options: { javascriptEnabled: true } }便可以使用了 2.项目打包后文件很大.js文件很大,css文件也不小,导致项目访问太慢 要注意…
1.antd官网: https://ant.design/docs/react/introduce-cn 2.React中使用Antd 1.安装antd npm install antd --save / yarn add antd / cnpm install antd --save 2.在您的react项目的css文件中引入 Antd的css @import '~antd/dist/antd.css'; 3.看文档使用: 如使用Button: 1.在对应的组件中引入Antd import {…
antd 和 css modules 不能混用,针对antd的css 单独写一条loader的规则,不开启 css modules. 使用 exclude 和 include 配置参考(https://segmentfault.com/q/1010000011223900),修改webpack.config.dev.js 和 webpack.config-prod.js 配置文件 (尽量不要使用less-loader 来处理css文件,在与antd一起使用时可能出现错误,单独写一条规则),所以我…
一.Antd(Ant Design)的使用:引入全部Css样式 1.1 antd官网: https://ant.design/docs/react/introduce-cn 1.2 React中使用Antd 1.在项目根目录安装antd[每个项目都安装一次]: npm install antd --save / yarn add antd / cnpm install antd --save 2.在您的react项目的css文件中引入Antd的css[会引入所有css样式]: @import '…
5.el表达式 dataSource = (userPage, orgList) => userPage.map(item => { const org = orgList.find(org => org.orgId === item.ORG_ID); return { ...item, measuresName: item.MEASURES_NAME, measuresId: item.MEASURES_ID, unitedId: item.UNITED_ID, orgId: item…