提交 a79474a9 authored 作者: 徐立's avatar 徐立

调整config引入

上级 a7c5f8cd
......@@ -3,9 +3,25 @@ import { message, Icon, Spin } from 'antd';
import QRCode from 'qrcode.react';
import fetch from 'dva/fetch';
import FormdataWrapper from '../utils/object-to-formdata-custom';
import { isJSON } from '../utils/utils';
let ws = null;
/**
* 判断是否为JSON文本
* @param {string} str 是否为json文本
*/
function isJSON(str) {
if (typeof str == 'string') {
try {
JSON.parse(str);
if(typeof JSON.parse(str) === 'number'){
return false;
}
return true;
} catch (e) {
return false;
}
}
}
/**
* props{
* url: 二维码url
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论