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

学生加密接口地址改成 safe 取消interface

上级 4be61f52
...@@ -21,13 +21,11 @@ function formatDatas(datas, url = '') { ...@@ -21,13 +21,11 @@ function formatDatas(datas, url = '') {
// 按欢哥的要求 getSqlData 接口要加上appId 参数 // 按欢哥的要求 getSqlData 接口要加上appId 参数
// 解决北电科接口越权的问题. // 解决北电科接口越权的问题.
datas.appId = window.smartFormGlobalProps?.data.appId || window.smartFormGlobalProps?.data.id; datas.appId = window.smartFormGlobalProps?.data.appId || window.smartFormGlobalProps?.data.id;
// console.log('getSqlData,AppId', datas.appId);
} }
let datasCode = JSON.stringify(datas); let datasCode = JSON.stringify(datas);
const openIsBinary = window.CONFIG?.IS_BINARY; const openIsBinary = window.CONFIG?.IS_BINARY;
// if (test) { // if (test) {
// console.log(url, datas);
// } // }
if (openIsBinary) { if (openIsBinary) {
...@@ -63,8 +61,7 @@ function formatDatas(datas, url = '') { ...@@ -63,8 +61,7 @@ function formatDatas(datas, url = '') {
} }
export async function giveFilePostData(datas, url) { export async function giveFilePostData(datas, url) {
const staticS = window.CONFIG.SAFE_TYPE === 2 ? 'interface' : 'safe'; const staticS = window.CONFIG.SAFE_TYPE === 2 ? 'safe' : 'safe';
// console.log(datas, url);
for (let i in datas) { for (let i in datas) {
if ( if (
datas[i] === null || datas[i] === null ||
...@@ -110,7 +107,7 @@ function testPromise(d) { ...@@ -110,7 +107,7 @@ function testPromise(d) {
} }
export async function requestFileInfo(url, datas) { export async function requestFileInfo(url, datas) {
const staticS = window.CONFIG.SAFE_TYPE === 2 ? 'interface' : 'safe'; const staticS = window.CONFIG.SAFE_TYPE === 2 ? 'safe' : 'safe';
// for (let i = 0; i < 100; i++) { // for (let i = 0; i < 100; i++) {
// datas = await testPromise(datas); // datas = await testPromise(datas);
// } // }
...@@ -199,7 +196,7 @@ export async function requestFileInfo(url, datas) { ...@@ -199,7 +196,7 @@ export async function requestFileInfo(url, datas) {
} }
export function giveFilePostDataInfoForTrue(datas, url) { export function giveFilePostDataInfoForTrue(datas, url) {
const staticS = window.CONFIG.SAFE_TYPE === 2 ? 'interface' : 'safe'; const staticS = window.CONFIG.SAFE_TYPE === 2 ? 'safe' : 'safe';
if (!window.CONFIG?.IS_SAFE) { if (!window.CONFIG?.IS_SAFE) {
return { return {
datas, datas,
......
...@@ -894,6 +894,7 @@ export function getWord({ ...@@ -894,6 +894,7 @@ export function getWord({
apiUrl + `/DataColumnApi/exportWord`, apiUrl + `/DataColumnApi/exportWord`,
); );
let token = getToken(); let token = getToken();
downloadFile( downloadFile(
getFileData.url, getFileData.url,
{ {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论