This commit is contained in:
2020-10-31 11:06:39 +08:00
parent af67231430
commit a9fe2cddbc
9 changed files with 32 additions and 10 deletions

View File

@@ -23,7 +23,7 @@
</div>
<div class="bottom">
<div class="date">{{date}}</div>
<div class="reply" @click="reply(username)">{{lan.$t('huifu ')}}</div>
<div class="reply" @click="reply(username)">{{lan.$t('huifu')}}</div>
</div>
<div class="huifu" v-if="ifshow">
@@ -122,6 +122,7 @@
</style>
<script lang="ts">
import { getcommentlist } from '@/api';
import { useI18n } from '@/utils/i18n';
import { defineComponent, onMounted, ref } from 'vue';
import { useRoute } from 'vue-router';
import ReviewItemtwo from "./ReviewItemtwo.vue"
@@ -154,6 +155,7 @@ export default defineComponent({
},
setup(prop,context){
// console.log(1)
const lan = useI18n()
const replylist =ref({})
const reviewlist=ref({})
const videoid=ref(useRoute().query.id)
@@ -203,7 +205,8 @@ export default defineComponent({
replylist,
reviewlist,
refresh,
ifshow
ifshow,
lan
}
}
})

View File

@@ -76,11 +76,14 @@
width: 62px;
height: 22px;
margin-top: 30px;
background-color: #07AD97;
background-color: #ccc;
text-align: center;
line-height: 22px;
color: #fff;
font-size: 9px;
&:hover{
background-color: #07AD97;
}
}
}