|
@@ -1,11 +1,10 @@
|
|
|
<script setup>
|
|
|
import { computed, reactive, ref,onMounted } from "vue";
|
|
|
-import { useRoute } from "vue-router";
|
|
|
+import { useRoute,useRouter } from "vue-router";
|
|
|
import { formatActivityTime } from "./utils";
|
|
|
import { ElMessage } from 'element-plus'
|
|
|
-import useHZRouter from '@/hooks/useHZRouter'
|
|
|
|
|
|
-const HZRouter=useHZRouter()
|
|
|
+const router=useRouter()
|
|
|
|
|
|
const route = useRoute();
|
|
|
|
|
@@ -128,7 +127,7 @@ const formatAudioTime=(e)=>{
|
|
|
const goDetail=()=>{
|
|
|
let params=info.value.reportLink.split('?')[1]
|
|
|
let research_report_id=params.split('=')[1]
|
|
|
- HZRouter.push({
|
|
|
+ router.push({
|
|
|
path:'/activity/reportdetail',
|
|
|
query:{
|
|
|
research_report_id:research_report_id
|
|
@@ -165,10 +164,10 @@ const handlePlayAudio=(index)=>{
|
|
|
const goBack=()=>{
|
|
|
if(window.history.state.back){
|
|
|
console.log('返回上一页');
|
|
|
- HZRouter.go(-1)
|
|
|
+ router.go(-1)
|
|
|
}else{
|
|
|
console.log('返回首页');
|
|
|
- HZRouter.push({path:'/report/index'})
|
|
|
+ router.push({path:'/report/index'})
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -190,7 +189,7 @@ const handleApply=()=>{
|
|
|
}else{
|
|
|
if(!noAuth.data.customer_info.status||noAuth.data.customer_info.status!='流失'){
|
|
|
console.log('跳转申请页');
|
|
|
- HZRouter.push({
|
|
|
+ router.push({
|
|
|
path:'/apply/permission',
|
|
|
query:{
|
|
|
source:2,
|