8ede71b2 by 杨炀

no message

1 parent e1adf2be
......@@ -229,7 +229,7 @@
<el-row :gutter="20">
<el-col :lg="8">
<div class="liveImgbox" @click="goDetail(livelist[0])">
<i class="ii">直播中</i>
<!-- <i class="ii">直播中</i>-->
<img :src="fillImgUrl_webSite(livelist[0]?.picUrl)">
<h3 class="esp">{{ livelist[0]?.name }}
</h3>
......
......@@ -47,16 +47,17 @@ const props = defineProps({
}
})
const user = useUserStore().user
const groupInfo = useUserStore().group
if(props.groupId){
const group = useUserStore().group
const groupInfo = ref({})
if(props.matchId){
getGroupIdByCptId()
} else {
getGroupInfo()
}
}
function getGroupIdByCptId() {
match.getMyGroupForCpt(props.groupId, props.matchId).then(res=>{
match.getMyGroupForCpt(props.groupId || group.id, props.matchId).then(res=>{
groupInfo.value = res.data
})
}
......
......@@ -7,7 +7,7 @@
</div>
<match-info-row v-if="matchId" :match-id="matchId"/>
<div v-if="isLogin">
<group-info-row v-if="groupId" :group-id="groupId"/>
<group-info-row v-if="groupId" :group-id="groupId" :match-id="matchId"/>
<coach-info-row v-if="groupId" :group-id="groupId" :match-id="matchId"/>
<div class="pd20" v-if="user.utype=='1'&&myMemberTable.length>0">
......
......@@ -9,7 +9,7 @@
<el-row :gutter="20">
<el-col :lg="12" :sm="24" :md="12">
<div class="liveImgbox" @click="goDetail(newsList[0])">
<i class="ii">直播中</i>
<!-- <i class="ii">直播中</i>-->
<img :src="fillImgUrl_webSite(newsList[0]?.picUrl)">
<h3 class="esp">{{ newsList[0]?.name }}
</h3>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!