|
@@ -104,6 +104,7 @@
|
|
|
|
|
|
|
|
import { useUserStore } from '@/store/modules/user';
|
|
import { useUserStore } from '@/store/modules/user';
|
|
|
import { useGlobSetting } from '@/hooks/setting';
|
|
import { useGlobSetting } from '@/hooks/setting';
|
|
|
|
|
+ import urlJoin from 'url-join';
|
|
|
|
|
|
|
|
const userStore = useUserStore();
|
|
const userStore = useUserStore();
|
|
|
// const { aiOptions, manualOptions, getAIOptions, getManualOptions } = useIssueType();
|
|
// const { aiOptions, manualOptions, getAIOptions, getManualOptions } = useIssueType();
|
|
@@ -169,7 +170,7 @@
|
|
|
const month = String(now.getMonth() + 1).padStart(2, '0');
|
|
const month = String(now.getMonth() + 1).padStart(2, '0');
|
|
|
const day = String(now.getDate()).padStart(2, '0');
|
|
const day = String(now.getDate()).padStart(2, '0');
|
|
|
const currentDate = `${year}${month}${day}`;
|
|
const currentDate = `${year}${month}${day}`;
|
|
|
- const currentUrl = window.location.origin + window.location.pathname;
|
|
|
|
|
|
|
+ const currentUrl = urlJoin(window.location.origin, window.location.pathname);
|
|
|
|
|
|
|
|
const requestBody = {
|
|
const requestBody = {
|
|
|
endTime: queryForm.endTime,
|
|
endTime: queryForm.endTime,
|