提交 a4b057c4 authored 作者: 姚鑫国's avatar 姚鑫国
...@@ -345,7 +345,11 @@ export default class ImportUtil extends React.PureComponent { ...@@ -345,7 +345,11 @@ export default class ImportUtil extends React.PureComponent {
exportData = (isPass) => { exportData = (isPass) => {
const type = isPass ? 'passList' : 'noPassList'; const type = isPass ? 'passList' : 'noPassList';
const { filekey, exportTemplateUrl } = this.state; const { filekey, exportTemplateUrl } = this.state;
window.open(`${exportTemplateUrl}&cacheKey=${filekey}&dataType=${type}&token=${getToken()}`); let splitCode = '?';
if(exportTemplateUrl && exportTemplateUrl.indexOf('?') > -1){
splitCode = '&';
}
window.open(`${exportTemplateUrl}${splitCode}cacheKey=${filekey}&dataType=${type}&token=${getToken()}`);
}; };
continueImport = () => { continueImport = () => {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论