提交 bee0ebe2 authored 作者: 钟是志's avatar 钟是志

优化代码结构

上级 2792a64d
......@@ -7,6 +7,9 @@ import { deepCopy } from '@/webPublic/one_stop_public/utils/myutils';
import { countAllValues } from '@/webPublic/one_stop_public/Base16/SplitBase16Index';
// import strToBinary from './strToBinary'; // 字符串转二进制 混淆代码
// import binaryToStr from './binaryToStr'; // 二进制字符串转JSON字符串 混淆代码
const test = !!getUserInfo().test;
/**
* 字符串转二进制
* */
......@@ -48,7 +51,9 @@ function binaryToStr(binaryStr = '') {
function formatDatas(datas, url = '') {
let datasCode = JSON.stringify(datas);
const openIsBinary = window.CONFIG?.IS_BINARY;
console.log(url,datas);
if(test){
console.log(url,datas);
}
if (openIsBinary) {
datasCode = strToBinary(datasCode);
}
......@@ -158,7 +163,6 @@ export async function requestFileInfo(url, datas) {
});
return false;
}
// console.log(res.status);
return res.json();
})
.then(res => {
......@@ -168,7 +172,6 @@ export async function requestFileInfo(url, datas) {
if (isJSON(res)) {
res = JSON.parse(res);
}
// console.log(res);
}
if (res && res.errCode) {
qqCw({
......@@ -178,7 +181,7 @@ export async function requestFileInfo(url, datas) {
return false;
}
if (window.location.origin.indexOf('localhost') > -1 || getUserInfo().test) {
if (test) {
console.log({
url,
res,
......
......@@ -126,8 +126,8 @@ const loginUmiRequest = extend({
// mode: 'cors',
});
const getUrl = url => (url.startsWith('/') ? url : '/' + url);
const test = getUrlInfo().test;
// const getUrl = url => (url.startsWith('/') ? url : '/' + url);
// const test = getUrlInfo().test;
export const request = (url, data, options = {}) => {
return giveBase16EnCode(data, url)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论