|
@@ -1,5 +1,5 @@
|
|
|
<script setup>
|
|
|
-import {reactive, ref} from 'vue'
|
|
|
+import {onActivated, reactive, ref} from 'vue'
|
|
|
import moment from 'moment';
|
|
|
import SelfList from '@/components/SelfList.vue'
|
|
|
import {apiSpecialColumnDetail,apiSpecialColumnReportList,apiSpecialColumnComment} from '@/api/report'
|
|
@@ -12,9 +12,10 @@ const store=useStore()
|
|
|
|
|
|
let nav=ref('专栏介绍')
|
|
|
|
|
|
+let classify_id_second=ref(route.query.columnId||0)
|
|
|
let info=ref(null)//专栏详情
|
|
|
const getSpecialColumnDetail=async ()=>{
|
|
|
- const res=await apiSpecialColumnDetail({classify_id_second:Number(route.query.columnId)})
|
|
|
+ const res=await apiSpecialColumnDetail({classify_id_second:Number(classify_id_second.value)})
|
|
|
if(res.code===200){
|
|
|
info.value=res.data
|
|
|
document.title=res.data.classify_name_second
|
|
@@ -26,7 +27,7 @@ getSpecialColumnDetail()
|
|
|
// 客户评价
|
|
|
let commentList=ref([])
|
|
|
const getComment=async ()=>{
|
|
|
- const res=await apiSpecialColumnComment({classify_id_second:Number(route.query.columnId)})
|
|
|
+ const res=await apiSpecialColumnComment({classify_id_second:Number(classify_id_second.value)})
|
|
|
if(res.code===200){
|
|
|
commentList.value=res.data
|
|
|
}
|
|
@@ -45,7 +46,7 @@ let listState=reactive({
|
|
|
const getReportList=async ()=>{
|
|
|
listState.loading=true
|
|
|
const res=await apiSpecialColumnReportList({
|
|
|
- classify_id_second:Number(route.query.columnId||0),
|
|
|
+ classify_id_second:Number(classify_id_second.value),
|
|
|
current_index:listState.page,
|
|
|
page_size:listState.pageSize
|
|
|
})
|
|
@@ -95,6 +96,20 @@ const handlePlayAudio=(item)=>{
|
|
|
}
|
|
|
|
|
|
|
|
|
+// 组件激活时
|
|
|
+onActivated(()=>{
|
|
|
+ const temClassify_id_second=route.query.columnId
|
|
|
+ if(temClassify_id_second!=classify_id_second.value){
|
|
|
+ nav.value='专栏介绍'
|
|
|
+ classify_id_second.value=temClassify_id_second
|
|
|
+ listState.list=[]
|
|
|
+ listState.page=1
|
|
|
+ listState.finished=false
|
|
|
+ getSpecialColumnDetail()
|
|
|
+ getReportList()
|
|
|
+ }
|
|
|
+})
|
|
|
+
|
|
|
|
|
|
</script>
|
|
|
|