This commit is contained in:
bobobobo
2026-02-05 01:09:52 +08:00
parent 8cefc2f670
commit a54dfee158
8 changed files with 163 additions and 226 deletions

View File

@@ -73,7 +73,14 @@
class="action-btn"
src="/static/images/fengxiang.png"
style="width: 72rpx; height: 72rpx;"
@click="shareDialog = true"
@click="navigateTo('/pages/shop-together/user', {
type: 1,
id: currentLive.liveID,
text: currentLive.liveName,
cover: currentLive.coverUrl,
avatarUrl: currentLive.liveOwner.avatarUrl
title: currentLive.liveOwner.title
})"
/>
<Like />
</view>
@@ -102,17 +109,10 @@
<ActionSheet v-model="isShowCoGuestSheet" :title="coGuestSheetTitle" :itemList="coGuestSheetItems"
@select="onCoGuestSheetSelect" />
<share-popup
v-model:show="shareDialog"
:id="currentLive.liveId"
:text="currentLive.liveName"
:cover="currentLive.coverUrl"
:userLiveData="currentLive.liveOwner"
type="1"
></share-popup>
</template>
<script setup lang="ts">
import { navigateTo } from '@/utils/router'
import { imDataEndLive, getLiveActivityDetail, getLiveActivityRecord } from '@/api/tui-kit'
import { onLoad } from '@dcloudio/uni-app';
import { ref, onMounted, computed, onUnmounted, watch, nextTick } from 'vue';