编辑工作台稿件查重显示问题

This commit is contained in:
2026-05-20 11:40:00 +08:00
parent 7542d724ce
commit 7868c25643
2 changed files with 5 additions and 2 deletions

View File

@@ -19,8 +19,8 @@ const service = axios.create({
// baseURL: 'https://submission.tmrjournals.com/', //正式 记得切换 // baseURL: 'https://submission.tmrjournals.com/', //正式 记得切换
// baseURL: 'http://www.tougao.com/', //测试本地 记得切换 // baseURL: 'http://www.tougao.com/', //测试本地 记得切换
// baseURL: 'http://192.168.110.110/tougao/public/index.php/', // baseURL: 'http://192.168.110.110/tougao/public/index.php/',
baseURL: '/api', //本地 // baseURL: '/api', //本地
// baseURL: '/', //正式 baseURL: '/', //正式
}); });

View File

@@ -3132,7 +3132,10 @@ export default {
return !!this.resolvePlagiarismPdfUrl(row); return !!this.resolvePlagiarismPdfUrl(row);
}, },
openPlagiarismReportPage(row) { openPlagiarismReportPage(row) {
const url = this.resolvePlagiarismPdfUrl(row); const url = this.resolvePlagiarismPdfUrl(row);
if (!url) return; if (!url) return;
window.open(url, '_blank', 'noopener,noreferrer'); window.open(url, '_blank', 'noopener,noreferrer');
}, },