上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 38 下一页
摘要: antd Table 组件columns列表设置有宽度,但就是不生效 解决方案: 设置scroll的width等于所有列宽之和(scroll={{x: 100%}}) 阅读全文
posted @ 2021-04-30 14:39 雪莉06 阅读(3848) 评论(0) 推荐(0) 编辑
摘要: DatePicker组件默认语言是英语,需要设置为中文的话,需要安装moment。 import moment from "moment"; import "moment/locale/zh-cn" format属性,设置日期的格式,如“2020-02-28”。 设置日期 选择日期是今天之前【包含今 阅读全文
posted @ 2021-04-30 14:37 雪莉06 阅读(7930) 评论(0) 推荐(0) 编辑
摘要: idea解决日志输出乱码的问题,要做如下两步: 1、配置idea文件(idea安装目录的bin目录下):64位系统配置idea64.exe.vmoptions,32位配置idea.exe.vmoptions,在文件内容末尾添加:-Dfile.encoding=UTF-8。保存后重新启动idea(必须 阅读全文
posted @ 2021-04-27 09:22 雪莉06 阅读(1553) 评论(0) 推荐(0) 编辑
摘要: 1 删除数组的重复项 var fruits = [“banana”, “apple”, “orange”, “watermelon”, “apple”, “orange”, “grape”, “apple”]; // First method var uniqueFruits = Array.fro 阅读全文
posted @ 2021-03-12 15:31 雪莉06 阅读(88) 评论(0) 推荐(0) 编辑
摘要: Select类型: {getFieldDecorator('sceneCategoryId', { rules: [{ required: true, message: '请选择场景类型' }], initialValue: sceneCategoryId })( <Select style={{  阅读全文
posted @ 2021-03-05 17:54 雪莉06 阅读(2053) 评论(0) 推荐(0) 编辑
摘要: trim(str) { return str.replace(/(^\s*)|(\s*$)/g, ""); } 转换数据格式 convertField(record) { return { code: record.label, name: record.label, ord: record.key 阅读全文
posted @ 2021-02-25 14:30 雪莉06 阅读(326) 评论(0) 推荐(0) 编辑
摘要: uniqObjInArray(objarray){ let len = objarray.length; let tempJson = { }; let res = []; for(let i = 0;i < len;i++){ //取出每一个对象 tempJson[JSON.stringify(o 阅读全文
posted @ 2021-02-23 10:26 雪莉06 阅读(42) 评论(0) 推荐(0) 编辑
摘要: value.forEach((item) => { let obj = {} for (let i=0; i< value.length; i++) { obj.code = item.key obj.name = item.label } btnValue.push(obj) }) 阅读全文
posted @ 2021-02-23 09:51 雪莉06 阅读(728) 评论(0) 推荐(0) 编辑
摘要: calc() 函数用于动态计算长度值。 需要注意的是,运算符前后都需要保留一个空格,例如:width: calc(100% - 10px);任何长度值都可以使用calc()函数进行计算;calc()函数支持 "+", "-", "*", "/" 运算;calc()函数使用标准的数学运算优先级规则;注 阅读全文
posted @ 2021-01-25 09:43 雪莉06 阅读(1032) 评论(0) 推荐(1) 编辑
摘要: .ant-select-dropdown-menu {background: #1F1F26;border: solid 1px #32323a;}.ant-select-dropdown-menu-item {color: #fff !important;}.ant-select-dropdown 阅读全文
posted @ 2021-01-13 18:22 雪莉06 阅读(4603) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 38 下一页