删除完成

This commit is contained in:
luyuan 2020-11-12 16:16:56 +08:00
parent 06ecc8e678
commit 9702477c23
Signed by: theluyuan
GPG Key ID: A7972FD973317FF3
2 changed files with 15 additions and 8 deletions

View File

@ -249,6 +249,7 @@ export default defineComponent({
if(res.code != 0){
message.error(res.msg)
}
context.emit("reload")
reload()
}

View File

@ -18,6 +18,7 @@
:replyid="i.commentid"
@replying="reply"
@findall="findreply"
@reload="getlist"
:ref="el => {list[j] = el}"
></ReviewItem>
@ -126,16 +127,20 @@ export default defineComponent({
const videoid=ref(useRoute().query.id)
const url = useRoute().path
const list = ref<any>([])
onMounted(async () => {
let type = 1;
if(url == '/regime/livedetail'){
type = 1;
}else{
type = 2;
}
let type = 1;
if(url == '/regime/livedetail'){
type = 1;
}else{
type = 2;
}
async function getlist(){
reviewlist.value=await getcommentlist({type: type,id: videoid.value})
}
onMounted(async () => {
getlist()
})
console.log(useRoute().query)
console.log(store.state.userinfo.memberid,"userifno")
interface SendData{
@ -194,7 +199,8 @@ export default defineComponent({
reviewlist,
refresh,
lan,
list
list,
getlist
}