Compare commits
No commits in common. "2a277d1388235df08517334bf08b13e53d4af56a" and "3d98a1b9d752f2fd1a5573add24bd6ea182dd8fa" have entirely different histories.
2a277d1388
...
3d98a1b9d7
@ -23,13 +23,14 @@ const player = ref(null)
|
||||
const {quoteStatus, show, playerId, show1, auctionData, getSocketData, getLiveLink, fullLive} = liveStore()
|
||||
const pullLink = ref('')
|
||||
const handlePlayerError = (error) => {
|
||||
showConfirmDialog({
|
||||
message: t('live_room.error_mess'),
|
||||
showCancelButton: true
|
||||
}).then(() => {
|
||||
initializePlayer()
|
||||
}).catch(() => {
|
||||
})
|
||||
// showConfirmDialog({
|
||||
// message: t('live_room.error_mess'),
|
||||
// showCancelButton: true
|
||||
// }).then(() => {
|
||||
// initializePlayer()
|
||||
// }).catch(() => {
|
||||
// })
|
||||
// player.value?.play()
|
||||
}
|
||||
const loading1=ref(false)
|
||||
const initializePlayer = async () => {
|
||||
@ -86,13 +87,13 @@ const initializePlayer = async () => {
|
||||
})
|
||||
player.value.on('error', handlePlayerError)
|
||||
} catch (error) {
|
||||
showConfirmDialog({
|
||||
message: t('live_room.error_mess'),
|
||||
showCancelButton: true
|
||||
}).then(() => {
|
||||
initializePlayer()
|
||||
}).catch(() => {
|
||||
})
|
||||
// showConfirmDialog({
|
||||
// message: t('live_room.error_mess'),
|
||||
// showCancelButton: true
|
||||
// }).then(() => {
|
||||
// initializePlayer()
|
||||
// }).catch(() => {
|
||||
// })
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -11,7 +11,7 @@ const router = useRouter();
|
||||
const route = useRoute();
|
||||
const { locale } = useI18n()
|
||||
definePageMeta({
|
||||
name: 'login',
|
||||
keepalive: true,
|
||||
i18n: 'login.title'
|
||||
})
|
||||
const loadingRef=ref({
|
||||
|
@ -4,7 +4,7 @@ import { contractView } from "~/api/goods/index.js"
|
||||
import { signOnline } from "~/api/goods/index.js"
|
||||
import { authStore } from "~/stores/auth/index.js"
|
||||
import {useI18n} from "vue-i18n";
|
||||
import { useThrottleFn } from '@vueuse/core'
|
||||
|
||||
definePageMeta({
|
||||
layout: 'default',
|
||||
i18n: 'signature.protocol.title'
|
||||
@ -46,7 +46,7 @@ const handleCollapseChange = (name) => {
|
||||
}
|
||||
}
|
||||
|
||||
const goSignature =useThrottleFn(async () => {
|
||||
const goSignature = async () => {
|
||||
const res = await signOnline({
|
||||
auctionArtworkUuid:payment.value.auctionArtworkUuid
|
||||
})
|
||||
@ -64,7 +64,7 @@ const goSignature =useThrottleFn(async () => {
|
||||
// router.push({
|
||||
// path: '/signature/panel'
|
||||
// })
|
||||
},2000)
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -153,7 +153,7 @@ export default defineNuxtConfig({
|
||||
// 指定 Nuxt 应用程序的兼容性日期,确保应用程序在未来的 Nuxt 版本中保持稳定性
|
||||
compatibilityDate: '2025-02-28',
|
||||
devServer: {
|
||||
https: httpsOptions,
|
||||
// https: httpsOptions,
|
||||
host: '0.0.0.0',
|
||||
port: 3000,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user