Explorar o código

Merge branch 'release' into dev

# Conflicts:
#	src/views/todo/seats/accept/Call-summary.vue
zhangchong hai 10 meses
pai
achega
984a85e02d
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/views/todo/seats/accept/Call-summary.vue

+ 2 - 2
src/views/todo/seats/accept/Call-summary.vue

@@ -93,12 +93,12 @@ const route = useRoute();
 const loading = ref(false);
 // 无效id
 const invalidId = computed(() => {
-	return !route.query.callId || route.query.callId.length === 13;
+	return !route.query.callId || route.params.query.length === 13;
 });
 const getRecognize = async () => {
 	loading.value = true;
 	try {
-		const callId = route.query.callId;
+		const callId = route.params.query;
 		if (invalidId.value) {
 			// ElMessage.info('暂未获取到通话ID,请关闭页面重新进入重试');
 			loading.value = false;