pinglun
This commit is contained in:
parent
42c6e14e6e
commit
f460fe9f23
@ -482,6 +482,21 @@ export async function getcommentlist(data?:any) {
|
|||||||
const res=await get<CommentlData>('comments',data)
|
const res=await get<CommentlData>('comments',data)
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发布评论
|
||||||
|
*/
|
||||||
|
interface SendData{
|
||||||
|
type?:number,
|
||||||
|
cid?:number,
|
||||||
|
teacherid?:number,
|
||||||
|
score?:number,
|
||||||
|
content?:string
|
||||||
|
}
|
||||||
|
export async function addcomment(data?:any):Promise<void> {
|
||||||
|
const res=await post<SendData>('comments',data)
|
||||||
|
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* 发送验证码
|
* 发送验证码
|
||||||
* @param phone 手机号
|
* @param phone 手机号
|
||||||
|
@ -1,25 +1,25 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="reviewitem">
|
<div class="reviewitem">
|
||||||
<div class="top">
|
<div class="top">
|
||||||
<img src="" alt="">
|
<img :src="photo" alt="">
|
||||||
<div class="name">qweqw</div>
|
<div class="name">{{username}}</div>
|
||||||
<div class="lv">
|
<div class="lv">
|
||||||
<div class="img">
|
<div class="img">
|
||||||
<img src="@/static/images/starred.png" alt="">
|
<div v-for="(i,j) in stars" :key="j">
|
||||||
<img src="@/static/images/starred.png" alt="">
|
<img src="@/static/images/starred.png" alt="" :key="j" v-if="i==1">
|
||||||
<img src="@/static/images/starred.png" alt="">
|
<img src="@/static/images/star.png" alt="" v-else>
|
||||||
<img src="@/static/images/star.png" alt="">
|
</div>
|
||||||
<img src="@/static/images/star.png" alt="">
|
|
||||||
</div>
|
</div>
|
||||||
<div class="num">8.0</div>
|
<div class="num">{{(score+'').split('.')[1]?score:score+'.0'}}分</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="cont">
|
<div class="cont">
|
||||||
dafjkldashfjksdhjkhfgjkdshjkfgsdhjkghjkshgjsjkhg
|
{{content}}
|
||||||
</div>
|
</div>
|
||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
<div class="date">2020-10-10</div>
|
<div class="date">{{date}}</div>
|
||||||
<div class="reply">回复</div>
|
<div class="reply" @click="reply(username)">回复</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -88,11 +88,60 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent } from 'vue';
|
import { defineComponent, ref } from 'vue';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
setup(){
|
props:{
|
||||||
console.log(1)
|
photo:{
|
||||||
|
type:String
|
||||||
|
},
|
||||||
|
username:{
|
||||||
|
type:String
|
||||||
|
},
|
||||||
|
score:{
|
||||||
|
type:Number,
|
||||||
|
},
|
||||||
|
content:{
|
||||||
|
type:String
|
||||||
|
},
|
||||||
|
date:{
|
||||||
|
type:String
|
||||||
|
},
|
||||||
|
memberid:{
|
||||||
|
type:Number
|
||||||
|
}
|
||||||
|
},
|
||||||
|
setup(prop,context){
|
||||||
|
// console.log(1)
|
||||||
|
const stars=ref<Array<number>>([])
|
||||||
|
console.log(prop.score)
|
||||||
|
let score1=ref<any>(prop.score)
|
||||||
|
// console.log(score1)
|
||||||
|
if(score1.value==5){
|
||||||
|
for(let i=0;i < score1.value ; i++){
|
||||||
|
// console.log(i)
|
||||||
|
stars.value.push(1)
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
for(let i=0;i < 5 ; i++){
|
||||||
|
// console.log(i)
|
||||||
|
stars.value.push(0)
|
||||||
|
}
|
||||||
|
for(let i=0;i < score1.value ; i++){
|
||||||
|
// console.log(i)
|
||||||
|
stars.value[i]=1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function reply(e?:string){
|
||||||
|
console.log(155)
|
||||||
|
context.emit("replying",{name:e,memberid:prop.memberid,score:prop.score})
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
stars,
|
||||||
|
reply
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
@ -9,16 +9,24 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="list">
|
<div class="list">
|
||||||
<ReviewItem></ReviewItem>
|
<ReviewItem v-for="(i,j) in reviewlist"
|
||||||
<ReviewItem></ReviewItem>
|
:key="j"
|
||||||
<div class="huifu">
|
:photo="i.img"
|
||||||
|
:username="i.name"
|
||||||
|
:score="i.score"
|
||||||
|
:content="i.content"
|
||||||
|
:date="i.created_at"
|
||||||
|
:memberid="i.memberid"
|
||||||
|
@replying="reply"></ReviewItem>
|
||||||
|
<!-- <div class="huifu">
|
||||||
<ReviewItemtwo></ReviewItemtwo>
|
<ReviewItemtwo></ReviewItemtwo>
|
||||||
<ReviewItemtwo></ReviewItemtwo>
|
<ReviewItemtwo></ReviewItemtwo>
|
||||||
</div>
|
</div> -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="reply">
|
<div class="reply">
|
||||||
|
@{{uinfo.name}}
|
||||||
<a-textarea v-model:value="commentval" placeholder="Basic usage" :rows="4" />
|
<a-textarea v-model:value="commentval" placeholder="Basic usage" :rows="4" />
|
||||||
<div class="send" @click="send">发表留言</div>
|
<div class="send" @click="send">发表留言</div>
|
||||||
</div>
|
</div>
|
||||||
@ -85,23 +93,57 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, ref } from 'vue';
|
import { addcomment } from '@/api';
|
||||||
|
import { defineComponent, ref, toRaw } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
import ReviewItem from "./ReviewItem.vue"
|
import ReviewItem from "./ReviewItem.vue"
|
||||||
import ReviewItemtwo from "./ReviewItemtwo.vue"
|
// import ReviewItemtwo from "./ReviewItemtwo.vue"
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components:{
|
components:{
|
||||||
ReviewItem,
|
ReviewItem,
|
||||||
ReviewItemtwo
|
// ReviewItemtwo
|
||||||
},
|
},
|
||||||
setup(){
|
props:{
|
||||||
|
reviewlist:{
|
||||||
|
type:Array
|
||||||
|
},
|
||||||
|
videoid:{
|
||||||
|
type:Number
|
||||||
|
}
|
||||||
|
},
|
||||||
|
setup(prop){
|
||||||
const commentval=ref<string>('')
|
const commentval=ref<string>('')
|
||||||
|
const uinfo=ref<any>({})
|
||||||
|
console.log(useRoute().query)
|
||||||
|
interface SendData{
|
||||||
|
type?:number,
|
||||||
|
cid?:number,
|
||||||
|
teacherid?:number,
|
||||||
|
score?:number,
|
||||||
|
content?:string
|
||||||
|
}
|
||||||
function send(){
|
function send(){
|
||||||
console.log(commentval.value,2221)
|
const data = ref<SendData>({})
|
||||||
|
data.value.type=3;
|
||||||
|
data.value.cid=prop.videoid
|
||||||
|
// data.value.teacherid=uinfo.value.memberid
|
||||||
|
// data.value.score=uinfo.value.score
|
||||||
|
data.value.content=commentval.value
|
||||||
|
console.log(data.value,2221)
|
||||||
|
addcomment(toRaw(data.value))
|
||||||
|
|
||||||
|
}
|
||||||
|
const reply: (val: number) => void = (val: number) => {
|
||||||
|
console.log("收到子组件事件", val)
|
||||||
|
uinfo.value=val
|
||||||
}
|
}
|
||||||
console.log(1)
|
console.log(1)
|
||||||
return {
|
return {
|
||||||
commentval,
|
commentval,
|
||||||
send
|
send,
|
||||||
|
reply,
|
||||||
|
uinfo
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<VideoPlay :url="result.fileurl"></VideoPlay>
|
<VideoPlay :url="result.fileurl"></VideoPlay>
|
||||||
<VideoCont :videoid="result.videoid" :date="result.created_at" :watch="result.watch" :share="result.share" :status="result.status"></VideoCont>
|
<VideoCont :videoid="result.videoid" :date="result.created_at" :watch="result.watch" :share="result.share" :status="result.status"></VideoCont>
|
||||||
</div>
|
</div>
|
||||||
<VideoReview class="review" ></VideoReview>
|
<VideoReview class="review" :reviewlist="commentlist.data" :videoid="videoid"></VideoReview>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
@ -45,7 +45,9 @@ export default defineComponent({
|
|||||||
})
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
result
|
result,
|
||||||
|
commentlist,
|
||||||
|
videoid
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user