|
@@ -48,6 +48,7 @@ import TheEmpty from '/src/components/TheEmpty';
|
|
import { setTabsCaches } from '/src/hooks/use-async';
|
|
import { setTabsCaches } from '/src/hooks/use-async';
|
|
import HomeGuide from '/src/custom-plugins/guide-page/home-guide';
|
|
import HomeGuide from '/src/custom-plugins/guide-page/home-guide';
|
|
import TimerMeter from '/src/components/timerMeter';
|
|
import TimerMeter from '/src/components/timerMeter';
|
|
|
|
+import { vaildUrl } from '/src/utils/urlUtils';
|
|
export const formatDateToDay = () => {
|
|
export const formatDateToDay = () => {
|
|
const hours = dayjs().hour();
|
|
const hours = dayjs().hour();
|
|
if (hours < 12) {
|
|
if (hours < 12) {
|
|
@@ -701,7 +702,7 @@ export default defineComponent({
|
|
<div
|
|
<div
|
|
class={styles.modeWrap}
|
|
class={styles.modeWrap}
|
|
>
|
|
>
|
|
- <iframe src="https://test.lexiaoya.cn/metronome/" scrolling='no' frameborder="0" width='100%' height={'650px'} ></iframe>
|
|
|
|
|
|
+ <iframe src={ `${vaildUrl()}metronome/?id=${new Date().getTime()}` } scrolling='no' frameborder="0" width='100%' height={'650px'} ></iframe>
|
|
</div>
|
|
</div>
|
|
</NModal>
|
|
</NModal>
|
|
|
|
|