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