Antd
Antd
追影的React开发者
注重用户,专注于产品、界面和用户体验
联系邮箱:liuyafeis@outlook.com
展开
-
Antd Checkbox 多选框使用
{getFieldDecorator("IsIssueCorrectionOpinion", { initialValue: record.IsIssueCorrectionOpinion, valuePropName: "checked", })( <Checkbox onChan.原创 2020-08-19 17:02:29 · 5701 阅读 · 0 评论 -
React 使用 Antd 样式
通过 npm 安装antd和babel-plugin-import。babel-plugin-import是用来按需加载 antd 的脚本和样式的。npm install antd babel-plugin-import --save编辑.webpackrc,使babel-plugin-import插件生效。{ "extraBabelPlugins": [...原创 2019-05-17 15:56:48 · 1139 阅读 · 0 评论 -
Antd Modal 拖拽功能
1 安装dragmnpm install dragm2封装组件ModalDrag.jsimport React, { PureComponent } from "react";import DragM from "dragm";export default class ModalDrag extends PureComponent { updateTransform = ...原创 2020-03-03 10:39:47 · 4044 阅读 · 3 评论 -
Antd Checkbox的form表单兼容性
推荐使用getFieldDecorator,不推荐getFieldProps1、正确使用方式<div> {getFieldDecorator('Checkbox', { valuePropName: 'checked', initialValue: false })(<Checkbox />)}</div&g...原创 2019-11-04 11:08:26 · 2548 阅读 · 0 评论 -
Antd Radio单选框使用
<List.Item> 是否批复: {getFieldDecorator("isReply", { initialValue: 0 })( <Radio.Group options={[ ...原创 2019-09-24 15:43:40 · 7452 阅读 · 0 评论 -
Antd form表单的使用、设值、取值、清空值
1、使用{this.props.form.getFieldDecorator("key",{})(<Input />)}3、设值this.props.form.setFieldsValue({ key: '123',});2、取值this.props.form.validateFields((err, values) => { if (...原创 2019-05-07 17:04:36 · 35705 阅读 · 1 评论 -
Antd Carousel走马灯 next() prev() 用法
html<Carousel ref="welcome"> <div><h3>1</h3></div> <div><h3>2</h3></div> <div><h3>3</h3></div> <div&...原创 2019-03-25 15:36:08 · 15497 阅读 · 0 评论