摘要: // 方法 var setQueryConfig = function (queryConfig) { var _str = ""; for (var o in queryConfig) { if (queryConfig[o] != -1) { _str += o + "=" + queryCon 阅读全文
posted @ 2022-07-26 12:32 天官赐福· 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-07-15 09:41 天官赐福· 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 1.触发打印页面的方法 const handlePrint = () => { const el = document.getElementById('printElement'); //获取节点 const iframe = document.createElement('IFRAME'); // 阅读全文
posted @ 2022-06-28 17:42 天官赐福· 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 1. 只能选择当月或上一个月 const disabledDate = current => { return current && (current > moment().endOf('day') || current < moment().subtract(1, "months")); }; < 阅读全文
posted @ 2022-06-28 14:38 天官赐福· 阅读(953) 评论(0) 推荐(0) 编辑
摘要: const beforeUpload = (file) => { return new Promise((resolve, reject) => { let acceptList = [".xls",".xlsx",".pdf",".doc",".docx",".jpg",".jpeg",".png 阅读全文
posted @ 2022-06-22 16:53 天官赐福· 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1 先切换到别的分支: git checkout dev20180927 2 删除本地分支: git branch -d dev2020422 3 如果删除不了可以强制删除,git branch -D dev2020422 4 有必要的情况下,删除远程分支:git push origin --del 阅读全文
posted @ 2022-06-22 15:32 天官赐福· 阅读(1310) 评论(0) 推荐(0) 编辑
摘要: import axios from "axios"; export const axiosDownload = async (url, params, fileName) => { let res = await axios.get(url, { responseType: 'blob', head 阅读全文
posted @ 2022-06-21 12:17 天官赐福· 阅读(338) 评论(0) 推荐(0) 编辑
摘要: axios({ // 用axios发送post请求 method: 'post', url: '', // 请求地址 data: req, // 参数 headers: { 'content-type': 'application/json; charset=utf-8', }, responseT 阅读全文
posted @ 2022-06-21 11:20 天官赐福· 阅读(368) 评论(0) 推荐(0) 编辑
摘要: const service = axios.create({}); let formData = new FormData(); formData.append('file', file.file.originFileObj);//文件 formData.append('req', JSON.str 阅读全文
posted @ 2022-06-21 11:11 天官赐福· 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 接口返回内容如下时可以使用: 1 如果返回的数据中有\n 进行处理,用<br/>替换 eg:const info = 'React\n Vue\n Angular'; const replaceInfo = info.replace(/\\n/g, '<br/>); 2 在JSX中,配合danger 阅读全文
posted @ 2022-06-17 14:21 天官赐福· 阅读(733) 评论(0) 推荐(0) 编辑
返回顶端