diff --git a/app/components/AppHeader.vue b/app/components/AppHeader.vue index 6d8365a..7dc7ee9 100644 --- a/app/components/AppHeader.vue +++ b/app/components/AppHeader.vue @@ -1,10 +1,15 @@ diff --git a/app/components/liveBroadcast/index.vue b/app/components/liveBroadcast/index.vue index eb342a6..cc3090b 100644 --- a/app/components/liveBroadcast/index.vue +++ b/app/components/liveBroadcast/index.vue @@ -3,8 +3,7 @@ - - + diff --git a/app/layouts/default.vue b/app/layouts/default.vue index 2fcbd57..957db21 100644 --- a/app/layouts/default.vue +++ b/app/layouts/default.vue @@ -1,13 +1,13 @@ - - - + - \ No newline at end of file diff --git a/app/pages/LiveRoom/index.client.vue b/app/pages/LiveRoom/index.client.vue index 5c3e970..06e7dbc 100644 --- a/app/pages/LiveRoom/index.client.vue +++ b/app/pages/LiveRoom/index.client.vue @@ -8,7 +8,12 @@ const player = ref(null) const quoteStatus = ref(false) const isPlayerReady = ref(false) const config = useRuntimeConfig() -console.log('config', config) +const props = defineProps({ + fullLive: { + type: Boolean, + default: false, + }, +}) const playerConfig = { id: 'J_prismPlayer', source: 'artc://live-pull-sh-01.szjixun.cn/live/live?auth_key=1736748343-0-0-feef65166e5cc62957c35b6e3eec82a1', @@ -56,43 +61,45 @@ onBeforeUnmount(() => { - - - - - 拍品 - (1/188) - - - - + + + + + + 拍品 + (1/188) - - {{ quoteStatus ? '关闭出价' : '开启出价' }} + + + + + + {{ quoteStatus ? '关闭出价' : '开启出价' }} + - + + + 当前价:RMB + + + + 下口价:RMB + + + + {{ quoteStatus ? '确认出价 RMB 3,000' : '点击"开启出价",即刻参与竞拍 ' }} + + + + + - - - 当前价:RMB - - - - 下口价:RMB - - - - {{ quoteStatus ? '确认出价 RMB 3,000' : '点击"开启出价",即刻参与竞拍 ' }} - - - - @@ -108,4 +115,7 @@ onBeforeUnmount(() => { --van-rolling-text-font-size: 16px; --van-rolling-text-color: #FFF; } +:deep(.prism-license-watermark){ + display: none!important; +} \ No newline at end of file diff --git a/app/pages/home/index.vue b/app/pages/home/index.vue index 904281d..2e65e1e 100644 --- a/app/pages/home/index.vue +++ b/app/pages/home/index.vue @@ -1,9 +1,11 @@ - - - - - - - - - - - - - LOT{{ index * 2 + 1 }} + + + + + + + + + + + + + + + + + + LOT{{ index * 2 + 1 }} + + + + + {{ item.title }} + + + 起拍价:{{ item.startingPrice }} + + + 成交价:{{ item.transactionPrice }} + - - - {{ item.title }} + + + + + + + LOT{{ index * 2 + 2 }} + - - 起拍价:{{ item.startingPrice }} - - - 成交价:{{ item.transactionPrice }} + + + {{ item.title }} + + + 起拍价:{{ item.startingPrice }} + + + 成交价:{{ item.transactionPrice }} + - - - - - - LOT{{ index * 2 + 2 }} - - - - - {{ item.title }} - - - 起拍价:{{ item.startingPrice }} - - - 成交价:{{ item.transactionPrice }} - - - - - - - - - - - - - 这里是后台富文本配置的说明,啊即可打开三等奖撒度老师的湿答答是快乐的阿四大皆空 + + - + + + + + 这里是后台富文本配置的说明,啊即可打开三等奖撒度老师的湿答答是快乐的阿四大皆空 + + + + + + + + + - - - - - - - - + + + + + + \ No newline at end of file diff --git a/app/stores/home/index.js b/app/stores/home/index.js new file mode 100644 index 0000000..8e6d038 --- /dev/null +++ b/app/stores/home/index.js @@ -0,0 +1,7 @@ +import { createGlobalState } from '@vueuse/core' +export const homeStore = createGlobalState(() => { + const fullLive=ref(false) + return{ + fullLive + } +}) \ No newline at end of file