摘要: let propKey = 'foo'; let obj = { [propKey]: true, ['a' + 'bc']: 123 }; 通过先定义变量,在字面量对象中添加属性时,属性名为变量时加上中括号包裹,也可以为表达式来表示 阅读全文
posted @ 2024-01-16 09:14 城南慕北 阅读(17) 评论(0) 推荐(0) 编辑
摘要: import Foo from '../components/Foo'; import Bar from '../components/Bar'; export default class LazyPage extends Component { render() { return ( <> <Ba 阅读全文
posted @ 2024-01-15 09:17 城南慕北 阅读(13) 评论(0) 推荐(0) 编辑
摘要: echarts做成的饼图,鼠标移到相应的饼图上会出现闪动的问题,是color配置有问题,颜色值为#f85858c6,这种值的长度不对就出现闪烁现象,换成##f85858就会正常 阅读全文
posted @ 2023-09-07 17:19 城南慕北 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 1.startOf( )设置开始时间 moment().startOf('day').subtract(15,'d)//指定前15天的日期, subtract(num,string)//通过减去时间来改变原始时间 add(num,string)//通过增加时间改变原始时间 第二个参数列表 momen 阅读全文
posted @ 2023-05-04 15:28 城南慕北 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 合并代码: 注:次方法行不通,换另外的一个 { title: '第二列', dataIndex: 'name', customRender: (text, record, index) => { const obj = { children: text , props: {} } obj.props 阅读全文
posted @ 2022-06-21 10:29 城南慕北 阅读(224) 评论(0) 推荐(0) 编辑
摘要: git 本地分支提交代码至远程另外的分支,如果没有,则会创建新分支 阅读全文
posted @ 2021-11-26 17:28 城南慕北 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 在title属性里面可以放字符串文字,也可以放组件,但是需要用小括号包起来 否则不会生效 <Form.Item label="关联推荐位" name="has_recommend" tooltip={{ title: ( “我是浮动提示内容” ), color: 'red', placement: 阅读全文
posted @ 2021-08-16 10:18 城南慕北 阅读(884) 评论(0) 推荐(0) 编辑
摘要: <Modal /> 和 Form 一起配合使用时,设置 destroyOnClose 也不会在 Modal 关闭时销毁表单字段数据,需要设置 <Form preserve={false} /> 阅读全文
posted @ 2021-01-07 16:51 城南慕北 阅读(1543) 评论(0) 推荐(0) 编辑
摘要: /*整个滚动条*/ ::-webkit-scrollbar { width: 5px; height: 8px; background-color: #fff; } /*定义滚动条轨道*/ ::-webkit-scrollbar-track { background-color: #fff; } / 阅读全文
posted @ 2020-12-16 16:15 城南慕北 阅读(957) 评论(0) 推荐(0) 编辑
摘要: <Input onChange={(e)=>{this.handleInput(e,'type')}} /> e代表事件参数,Input组件内部的,e.target里面有很多方法可以用 ‘type’就是组件非内部的传递参数,一般用作识别该方法的唯一性较多 阅读全文
posted @ 2020-10-15 10:21 城南慕北 阅读(116) 评论(0) 推荐(0) 编辑