摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=de 阅读全文
posted @ 2022-06-28 10:14 _心之所向便是光 阅读(27) 评论(0) 推荐(0) 编辑
摘要: downExcelTem = () => { let url = `${config.API_ROOT}/excelTemplateExport` let link = document.createElement('a') link.style.display = 'none' link.href 阅读全文
posted @ 2021-12-03 10:52 _心之所向便是光 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: 1.el-date-picker设置只能选当天 el-date-picker设置 :picker-options="pickerOptions" pickerOptions: { onPick: (time) => { //当第一时间选中才设置禁用 if (time.minDate && !time 阅读全文
posted @ 2021-11-03 10:01 _心之所向便是光 阅读(694) 评论(0) 推荐(0) 编辑
摘要: <Form.Item label={`发送对象`}> {getFieldDecorator('participants', { rules: [{ required: true, message: '请选择发送对象!' }], })( <Select style={{ width: '300px' 阅读全文
posted @ 2021-09-23 17:40 _心之所向便是光 阅读(1382) 评论(0) 推荐(0) 编辑
摘要: 方法一: (这种方法闰年转化后日期会有问题) function formatDate(numb, format) { if (numb != undefined) { let time = new Date((numb - 1) * 24 * 3600000 + 1) time.setYear(ti 阅读全文
posted @ 2021-04-07 16:35 _心之所向便是光 阅读(298) 评论(0) 推荐(0) 编辑
摘要: 1.手动添加cookie,例如JSESSIONID 在 Console 下输入命令 document.cookie="JSESSIONID=value" 阅读全文
posted @ 2021-03-26 14:48 _心之所向便是光 阅读(2466) 评论(0) 推荐(0) 编辑
摘要: 插件地址:http://www.bacubacu.com/colresizable/#download 阅读全文
posted @ 2021-03-03 13:18 _心之所向便是光 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 1.组件 const watermark = ({ // 使用 ES6 的函数默认值方式设置参数的默认取值 container = document.body, width = '250px', height = '160px', textAlign = 'left', textBaseline = 阅读全文
posted @ 2020-11-24 10:13 _心之所向便是光 阅读(616) 评论(0) 推荐(0) 编辑
摘要: index.jsx /* eslint-disable react/destructuring-assignment */ import React, { PureComponent } from "react"; import { Select } from "antd"; import Drop 阅读全文
posted @ 2020-07-07 09:57 _心之所向便是光 阅读(3454) 评论(0) 推荐(1) 编辑
摘要: 1.执行eject 暴露配置文件 2.安装模块 npm install less less-loader --save-dev 3.添加代码 const lessRegex = /\.less$/; const lessModuleRegex = /\.module\.less$/; 4.参照sas 阅读全文
posted @ 2020-04-30 09:22 _心之所向便是光 阅读(274) 评论(0) 推荐(0) 编辑