1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378 |
- <template>
- <view class="camera-container">
- <!-- 顶部标题栏 -->
- <!-- <view class="header">
- <view class="back-button" @click="back">
- <text class="iconfont icon-back"></text>
- </view>
- <view class="title">中国传统文化测试</view>
- <view class="controls">
- <text class="iconfont icon-mic"></text>
- <text class="iconfont icon-settings" @click="toggleSettings"></text>
- </view>
- </view> -->
- <!-- 主要内容区域 -->
- <view class="content">
- <!-- 数字人头像 -->
- <view class="digital-avatar">
- <!-- <view class="message-box">
- <text class="message-text">面试官会根据您的自我介绍内容对您提出以下问题,请您回答相关问题,请知悉答题即可</text>
- </view> -->
- <view class="user-avatar">
- <camera v-if="!digitalHumanUrl" device-position="front" flash="auto" class="camera"
- :mode="mode" @error="handleCameraError"></camera>
- <web-view v-else-if="digitalHumanUrl" :src="digitalHumanUrl" class="digital-human-webview"></web-view>
- <image v-else src="/static/avatar.png" mode="aspectFill" class="avatar-image"></image>
- </view>
- </view>
- <!-- 进度指示器 -->
- <!-- <view class="progress-container">
- <view class="progress-step" v-for="(step, index) in 3" :key="index">
- <view class="step-circle" :class="{'active': currentStep >= index+1}">{{index+1}}</view>
- <view class="step-text">{{stepTexts[index]}}</view>
- </view>
- <view class="progress-bar">
- <view class="progress-fill" :style="{width: progressWidth + '%'}"></view>
- </view>
- </view> -->
- <!-- 测试内容区域 -->
- <view class="interview-content">
- <!-- 问题编号和进度 -->
- <view class="question-number">
- <text>{{currentQuestionIndex + 1}}/{{questions.length}}</text>
- </view>
-
- <!-- 问题和选项区域 -->
- <view class="question-area">
- <view class="question-importance">
- <!-- <text v-if="currentQuestion.isImportant">重点题</text> -->
- <text class="question-type">{{currentQuestion.questionTypeName}}</text>
- {{currentQuestion.text}}
- </view>
- <view class="options">
- <!-- 只渲染非开放问题 (questionType: 1 或 2) 'option-wrong': showResult && (
- currentQuestion.questionType === 1 ?
- (selectedOption === index && index !== currentQuestion.correctAnswer) :
- (selectedOptions.includes(index) && !currentQuestion.correctAnswers.includes(index))
- )-->
- <view
- v-if="currentQuestion.questionType !== 0"
- v-for="(option, index) in currentQuestion.options"
- :key="index"
- class="option-item"
- :class="{
- 'option-selected': currentQuestion.questionType === 1 ? selectedOption === index : selectedOptions.includes(index),
- 'option-correct': showResult && (
- currentQuestion.questionType === 1 ? index === currentQuestion.correctAnswer : currentQuestion.correctAnswers.includes(index)
- ),
-
- }"
- @click="selectOption(index)">
- <!-- 使用字母标识 A、B、C、D、E 等 -->
- <text class="option-prefix">{{ String.fromCharCode(65 + index) }}.</text>
- <text class="option-text">{{ option.option_text || (typeof option === 'string' ? option : JSON.stringify(option)) }}</text>
- </view>
- </view>
- <!-- 添加计时器显示 -->
- <!-- <view class="timer-container">
- <text class="timer-text">本题剩余({{remainingTime}})</text>
- </view> -->
-
- <view class="bottom-button-container">
- <view class="bottom-button-wrapper">
- <button class="next-button" @click="nextQuestion(option)"
- :disabled="
- (currentQuestion.questionType === 0 && openQuestionAnswer.trim() === '') ||
- (currentQuestion.questionType === 1 && selectedOption === null) ||
- (currentQuestion.questionType === 2 && selectedOptions.length === 0)
- ">
- 本题剩余{{remainingTime}} {{"进入下一题"}}<!-- showResult ? '进入下一题' : '提交答案' -->
- </button>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 底部控制栏 -->
- <!-- <view class="footer">
- <view class="timer">本题剩余 {{remainingTime}}</view>
- <view class="next-step">进入下一题</view>
- </view> -->
- <!-- 面试结束弹窗 -->
- <view class="interview-end-modal" v-if="showEndModal">
- <view class="modal-content">
- <view class="modal-title">测试已完成</view>
- <!-- <view class="score-display">{{score}}/{{totalQuestions}}</view>
- <view class="modal-message">您在本次测试中答了{{score}}道题目,共{{totalQuestions}}道题目。</view> -->
- <view class="modal-buttons">
- <!-- <button type="default" class="modal-button" @click="restartTest">重新测试</button> -->
- <button type="primary" class="modal-button" @click="navigateToInterview">进入面试</button>
- </view>
- </view>
- </view>
- <!-- AI面试结束页面 -->
- <view class="interview-complete-screen" v-if="interviewCompleted">
- <view class="digital-avatar-large">
- <image src="/static/avatar.png" mode="aspectFill" class="avatar-image-large"></image>
- </view>
- <view class="complete-message">AI面试已结束</view>
- <view class="complete-description">本次面试的全部环节已结束。非常感谢您的参与。</view>
- <button class="complete-button" @click="back">我知道了</button>
- </view>
- <!-- 在模板中添加一个测试按钮(开发时使用,发布前删除) -->
- <!-- <button @click="testEndScreen" style="position: absolute; top: 10px; right: 10px; z-index: 9999;">测试结束页</button> -->
- <!-- 添加加载状态 -->
- <view class="loading-container" v-if="loading">
- <uni-load-more status="loading" :contentText="{contentdown: '加载中...'}" />
- <text class="loading-text">正在加载面试题目...</text>
- </view>
- <!-- 添加加载错误提示 -->
- <view class="loading-container" v-if="!loading && loadError">
- <view class="error-container">
- <text class="error-message">加载面试题目失败</text>
- <button class="retry-button" @click="fetchInterviewData">重试</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { getInterviewList, getInterviewDetail } from '@/api/user.js';
- import { apiBaseUrl } from '@/common/config.js';
- export default {
- data() {
- return {
- cameraContext: null,
- devicePosition: 'front',
- interviewStarted: true,
- showEndModal: false,
- currentQuestionIndex: 0,
- currentStep: 1,
- stepTexts: ['测试准备', '回答问题', '测试结束'],
- progressWidth: 50,
- remainingTime: '00:27',
- selectedOption: null,
- selectedOptions: [],
- showResult: false,
- isAnswerCorrect: false,
- questions: [], // 改为空数组,将通过API获取
- interviewId: null, // 存储当前面试ID
- useVideo: false,
- timerInterval: null,
- score: 0,
- totalQuestions: 0,
- interviewCompleted: false,
- digitalHumanUrl: '', // 数字人URL
- loading: true, // 添加加载状态
- loadError: false, // 添加加载错误状态
- errorMessage: '', // 添加错误消息
- answers: [], // 存储用户的所有答案
- currentQuestionDetail: null, // 当前题目详情
- isSubmitting: false, // 是否正在提交答案
- openQuestionAnswer: '', // 存储开放问题的答案
- currentAnswer: null, // 存储当前答案以便提交
- questionStartTime: null, // 存储问题开始时间
- mode: 'normal', // 相机模式
- }
- },
- computed: {
- currentQuestion() {
- console.log(this.questions[this.currentQuestionIndex]);
- return this.questions[this.currentQuestionIndex];
- }
- },
- onLoad(options) {
- // 从路由参数中获取面试ID
- if (options && options.id) {
- this.interviewId = options.id;
- this.fetchInterviewData();
- } else {
- // 如果没有ID,可以获取面试列表并使用第一个
- this.fetchInterviewList();
- }
- },
- onReady() {
- // 创建相机上下文
- this.cameraContext = uni.createCameraContext();
- // 创建AI视频上下文
- if (this.useVideo) {
- this.aiVideoContext = uni.createVideoContext('aiInterviewer');
- }
-
- // 初始化数字人
- this.initDigitalHuman();
- },
- methods: {
- // 获取面试列表
- async fetchInterviewList() {
- try {
- this.loading = true;
- const res = await getInterviewList({job_id:JSON.parse(uni.getStorageSync('selectedJob')).id});
- console.log(res);
- // 使用第一个面试
- this.interviewId = res//[0].id;
-
- this.fetchInterviewData(res);
- } catch (error) {
- console.error('获取面试列表失败:', error);
- this.handleLoadError('获取面试列表失败');
- }
- },
-
- // 获取面试详情数据
- async fetchInterviewData(data) {
- try {
- this.loading = true;
- // const res = await getInterviewDetail({ id: this.interviewId });
- // console.log('API返回数据:', res);
-
- // 如果返回的是问题列表
- if (data && Array.isArray(data)) {
- // 处理多个问题,并过滤掉 question_form 为 0 的问题
- this.questions = data
- .filter(q => q.question_form !== 0) // 过滤掉开放问题
- .map((q, index) => ({
- id: q.id || index + 1,
- text: q.question || '未知问题',
- options: q.options || [],
- correctAnswer: q.correctAnswer || 0,
- isImportant: q.is_system || false,
- explanation: q.explanation || '',
- questionType: q.question_form,
- questionTypeName: q.question_form_name || '单选题',
- correctAnswers: q.correct_answers || [],
- difficulty: q.difficulty || 1,
- difficultyName: q.difficulty_name || '初级'
- }));
- } else {
- // 处理单个问题
- this.processInterviewData(res);
- }
- console.log(this.questions);
- // 设置总题目数
- this.totalQuestions = this.questions.length;
-
- // 启动倒计时
- if (this.questions.length > 0) {
- this.startTimer();
- }
- } catch (error) {
- console.error('获取面试详情失败:', error);
- this.handleLoadError('获取面试详情失败');
- } finally {
- this.loading = false;
- }
- },
-
- // 处理面试数据
- processInterviewData(data) {
- // 清空现有问题列表
- this.questions = [];
-
- // 检查数据格式并处理
- if (data && data.question_form !== 0) { // 只处理非开放问题
- // 创建一个格式化的问题对象
- const formattedQuestion = {
- id: data.id || 1,
- text: data.question || '未知问题',
- options: data.options || [],
- correctAnswer: data.correctAnswer || 0,
- isImportant: data.is_system || false,
- explanation: data.explanation || '',
- questionType: data.question_form, // 1-单选题,2-多选题
- questionTypeName: data.question_form_name || '单选题',
- correctAnswers: data.correct_answers || [],
- difficulty: data.difficulty || 1,
- difficultyName: data.difficulty_name || '初级'
- };
-
- // 添加到问题列表
- this.questions.push(formattedQuestion);
-
- // 设置总题目数
- this.totalQuestions = this.questions.length;
-
- // 启动倒计时
- this.startTimer();
- } else {
- this.handleLoadError('没有可用的选择题');
- }
- },
-
- // 处理加载错误
- handleLoadError(message) {
- this.loadError = true;
- this.loading = false;
- this.errorMessage = message || '加载失败';
- uni.showToast({
- title: message || '加载失败',
- icon: 'none',
- duration: 2000
- });
- },
-
- startTimer() {
- // 确保问题已加载
- if (this.questions.length === 0) return;
-
- // 记录开始时间
- this.questionStartTime = new Date();
-
- // 设置倒计时时间(秒)
- let seconds = 60; // 每题60秒,可以根据需要调整
- this.remainingTime = `01:00`;
-
- this.timerInterval = setInterval(() => {
- seconds--;
- if (seconds <= 0) {
- clearInterval(this.timerInterval);
- // 时间到,自动提交答案并进入下一题
- if (!this.showResult) {
- this.checkAnswer();
- // 短暂延迟后自动进入下一题
- setTimeout(() => {
- if (this.currentQuestionIndex < this.questions.length - 1) {
- this.goToNextQuestion();
- } else {
- // 如果是最后一题,显示结束模态框或跳转
- uni.navigateTo({
- url: '/pages/interview-question/interview-question'
- });
- }
- }, 1500); // 1.5秒后自动进入下一题
- }
- }
-
- // 格式化显示时间
- const min = Math.floor(seconds / 60).toString().padStart(2, '0');
- const sec = (seconds % 60).toString().padStart(2, '0');
- this.remainingTime = `${min}:${sec}`;
- }, 1000);
- },
- resetTimer() {
- clearInterval(this.timerInterval);
- this.startTimer();
- },
- selectOption(index) {
- if (this.showResult) return; // 已显示结果时不能再选择
-
- // 判断当前题目类型
- if (this.currentQuestion.questionType === 2) { // 多选题
- // 如果已经选中,则取消选中
- const optionIndex = this.selectedOptions.indexOf(index);
- if (optionIndex > -1) {
- this.selectedOptions.splice(optionIndex, 1);
- } else {
- // 否则添加到已选中数组
- this.selectedOptions.push(index);
- }
- } else if (this.currentQuestion.questionType === 1) { // 单选题
- this.selectedOption = index;
- }
-
- this.playAiSpeaking();
- },
-
- checkAnswer() {
- clearInterval(this.timerInterval); // 停止计时
-
- // 确保当前问题存在
- if (!this.currentQuestion) {
- console.error('当前问题不存在');
- return;
- }
-
- // 根据题目类型检查答案是否正确
- if (this.currentQuestion.questionType === 0) { // 开放问题
- // 开放问题没有标准答案,可以根据需要设置为正确或待评估
- this.isAnswerCorrect = true; // 或者设置为 null 表示待评估
- } else if (this.currentQuestion.questionType === 2) { // 多选题
- const sortedSelected = [...this.selectedOptions].sort();
- const sortedCorrect = [...this.currentQuestion.correctAnswers].sort();
-
- if (sortedSelected.length !== sortedCorrect.length) {
- this.isAnswerCorrect = false;
- } else {
- this.isAnswerCorrect = sortedSelected.every((value, index) => value === sortedCorrect[index]);
- }
- } else { // 单选题
- this.isAnswerCorrect = this.selectedOption === this.currentQuestion.correctAnswer;
- }
-
- // 显示结果
- this.showResult = true;
-
- // 保存当前题目的答案
- this.saveAnswer();
-
- // 提交答案
- this.submitCurrentAnswer().catch(error => {
- console.error('提交答案失败:', error);
- });
- },
- nextQuestion(data) {
- // 如果还没有显示结果,先检查答案并提交
- if (!this.showResult) {
- this.checkAnswer();
-
- // 保存当前题目的答案
- this.saveAnswer();
-
- // 提交答案
- this.submitCurrentAnswer().then(() => {
- // 提交成功后,短暂延迟后自动进入下一题
- setTimeout(() => {
- // 如果是最后一题,跳转到面试页面
- if (this.currentQuestionIndex >= this.questions.length - 1) {
- uni.navigateTo({
- url: '/pages/interview-question/interview-question'
- });
- } else {
- // 否则进入下一题
- this.goToNextQuestion();
- }
- }, 500); // 1秒后自动进入下一题
- }).catch(error => {
- console.error('提交答案失败:', error);
- // 即使提交失败也继续下一题
- setTimeout(() => {
- if (this.currentQuestionIndex >= this.questions.length - 1) {
- uni.navigateTo({
- url: '/pages/interview-question/interview-question'
- });
- } else {
- this.goToNextQuestion();
- }
- }, 1000);
- });
- return;
- }
-
- // 如果已经显示结果,点击"下一题"按钮时执行
- // 如果是最后一题,直接跳转到手部照片采集页面
- if (this.currentQuestionIndex >= this.questions.length - 1) {
- uni.navigateTo({
- url: '/pages/interview-question/interview-question'
- });
- return;
- }
-
- // 前往下一题
- this.goToNextQuestion();
- },
- // 保存当前题目的答案
- saveAnswer() {
- let answer;
-
- if (this.currentQuestion.questionType === 0) { // 开放问题
- answer = {
- questionId: this.currentQuestion.id,
- questionType: this.currentQuestion.questionType,
- answer: this.openQuestionAnswer,
- answerDuration: this.getAnswerDuration() // 添加答题时长
- };
- } else { // 单选或多选
- answer = {
- questionId: this.currentQuestion.id,
- questionType: this.currentQuestion.questionType,
- answer: this.currentQuestion.questionType === 1 ?
- this.selectedOption : this.selectedOptions,
- answerDuration: this.getAnswerDuration() // 添加答题时长
- };
- }
-
- // 检查是否已存在该题目的答案,如果存在则更新
- const existingIndex = this.answers.findIndex(a => a.questionId === answer.questionId);
- if (existingIndex > -1) {
- this.answers[existingIndex] = answer;
- } else {
- this.answers.push(answer);
- }
-
- // 保存当前答案以便提交
- this.currentAnswer = answer;
-
- console.log('已保存答案:', this.answers);
- },
-
- // 获取答题时长(秒)
- getAnswerDuration() {
- // 这里假设每题默认30秒,根据剩余时间计算用时
- // 您可以根据实际情况调整计算逻辑
- const remainingTimeArr = this.remainingTime.split(':');
- const remainingSeconds = parseInt(remainingTimeArr[0]) * 60 + parseInt(remainingTimeArr[1]);
- return 30 - remainingSeconds; // 假设每题30秒
- },
- // 提交当前答案
- async submitCurrentAnswer() {
- if (!this.currentAnswer) return;
-
- try {
- // 显示提交中提示
- uni.showLoading({
- title: '正在提交答案...'
- });
-
- // 构建提交数据
- let answerContent = '';
-
- if (this.currentAnswer.questionType === 0) {
- // 开放题直接使用文本答案
- answerContent = this.currentAnswer.answer;
- } else if (this.currentAnswer.questionType === 1) {
- // 单选题,获取选项ID而不是索引
- const selectedIndex = this.currentAnswer.answer;
- const selectedOption = this.currentQuestion.options[selectedIndex];
- // 使用选项的ID或其他唯一标识符
- answerContent = selectedOption.id ? selectedOption.id.toString() : selectedIndex.toString();
- } else if (this.currentAnswer.questionType === 2) {
- // 多选题,将选项ID数组转为逗号分隔的字符串
- const selectedIndices = this.currentAnswer.answer;
- const selectedOptionIds = selectedIndices.map(index => {
- const option = this.currentQuestion.options[index];
- // 使用选项的ID或其他唯一标识符
- return option.id ? option.id : index;
- });
- answerContent = selectedOptionIds.join(',');
- }
-
- const submitData = {
- job_id: JSON.parse(uni.getStorageSync('selectedJob')).id,
- applicant_id: JSON.parse(uni.getStorageSync('userInfo')).id,//uni.getStorageSync('appId'), // 或者使用其他合适的ID
- question_id: this.currentAnswer.questionId,
- answer_content: answerContent,
- answer_duration: this.currentAnswer.answerDuration || 0,
- // 如果需要tenant_id,请在这里添加
- tenant_id: 1
- };
-
- console.log('提交数据:', submitData);
-
- // 调用API提交答案
- const res = await this.$http.post(`${apiBaseUrl}/api/job/submit_answer`, submitData);
-
- console.log('提交答案响应:', res);
-
- // 隐藏加载提示
- uni.hideLoading();
-
- return res;
-
- } catch (error) {
- console.error('提交答案失败:', error);
- // 隐藏加载提示
- uni.hideLoading();
-
- // 显示错误提示
- uni.showToast({
- title: '提交答案失败,请重试',
- icon: 'none'
- });
-
- throw error;
- }
- },
-
- // 修改 goToNextQuestion 方法,添加 async 关键字
- async goToNextQuestion() {
- // 重置状态
- this.showResult = false;
- this.selectedOption = null;
- this.selectedOptions = [];
- this.openQuestionAnswer = ''; // 重置开放问题答案
-
- // 前往下一题
- this.currentQuestionIndex++;
-
- // 如果已经有下一题的详情,直接使用
- if (this.questions[this.currentQuestionIndex]) {
- // 更新进度
- this.progressWidth = (this.currentQuestionIndex + 1) / this.questions.length * 100;
-
- // 重置计时器
- this.resetTimer();
-
- // 播放AI介绍下一题
- this.playAiSpeaking();
-
- setTimeout(() => {
- this.pauseAiSpeaking();
- }, 2000);
-
- return;
- }
-
- // 否则请求下一题详情
- try {
- this.loading = true;
-
- // 假设您有一个获取单个题目详情的API
- // const res = await getQuestionDetail({
- // interviewId: this.interviewId,
- // questionIndex: this.currentQuestionIndex
- // });
-
- // 模拟API调用
- await new Promise(resolve => setTimeout(resolve, 1000));
- const res = { /* 模拟的题目数据 */ };
-
- // 处理题目数据
- if (res) {
- const formattedQuestion = {
- id: res.id || this.currentQuestionIndex + 1,
- text: res.question || '未知问题',
- options: res.options || [],
- correctAnswer: res.correctAnswer || 0,
- isImportant: res.is_system || false,
- explanation: res.explanation || '',
- questionType: res.question_form || 1,
- questionTypeName: res.question_form_name || '单选题',
- correctAnswers: res.correct_answers || [],
- difficulty: res.difficulty || 1,
- difficultyName: res.difficulty_name || '初级'
- };
-
- // 添加到问题列表
- this.questions.push(formattedQuestion);
- }
-
- } catch (error) {
- console.error('获取题目详情失败:', error);
- uni.showToast({
- title: '获取题目失败,请重试',
- icon: 'none'
- });
-
- // 出错时回到上一题
- this.currentQuestionIndex--;
-
- } finally {
- this.loading = false;
-
- // 更新进度
- this.progressWidth = (this.currentQuestionIndex + 1) / this.questions.length * 100;
-
- // 重置计时器
- this.resetTimer();
- }
- },
- toggleSettings() {
- // 打开设置面板
- uni.showToast({
- title: '设置功能开发中',
- icon: 'none'
- });
- },
- back(target) {
- // 清除计时器
- if (this.timerInterval) {
- clearInterval(this.timerInterval);
- }
-
- // 如果指定了跳转目标
- if (target) {
- uni.navigateTo({
- url: target
- });
- return;
- }
-
- // 否则尝试返回上一页,如果失败则跳转到首页
- // try {
- // const pages = getCurrentPages();
- // if (pages.length > 1) {
- // uni.reLaunch({
- // url: '/pages/index/index'
- // });
- // } else {
- // // 如果当前是第一页,则跳转到首页
- // uni.reLaunch({
- // url: '/pages/index/index'
- // });
- // }
- // } catch (e) {
- // console.error('导航错误:', e);
- // // 出错时也跳转到首页
- // uni.reLaunch({
- // url: '/pages/index/index'
- // });
- // }
- },
- error(e) {
- // 相机错误事件
- console.error(e.detail);
- uni.showToast({
- title: '相机启动失败,请检查权限设置',
- icon: 'none'
- });
- },
- playAiSpeaking() {
- if (this.useVideo && this.aiVideoContext) {
- this.aiVideoContext.play();
- }
-
- // 触发数字人说话动画
- if (this.digitalHumanUrl) {
- // 假设当前问题的文本作为数字人要说的内容
- const speakText = this.currentQuestion ? this.currentQuestion.text : '';
- this.interactWithDigitalHuman(speakText);
- }
- },
- pauseAiSpeaking() {
- if (this.useVideo && this.aiVideoContext) {
- this.aiVideoContext.pause();
- }
- },
-
- // 修改 restartTest 方法,添加可选的跳转目标
- restartTest(target) {
- this.currentQuestionIndex = 0;
- this.score = 0;
- this.showEndModal = false;
- this.showResult = false;
- this.selectedOption = null;
- this.selectedOptions = [];
- this.resetTimer();
-
- // 如果指定了跳转目标
- if (target) {
- uni.navigateTo({
- url: target
- });
- }
- },
- // 在methods中添加测试方法
- testEndScreen() {
- this.interviewCompleted = true;
- this.showEndModal = false;
- },
- // 初始化数字人
- initDigitalHuman() {
- // 移除不可用的示例URL
- // this.digitalHumanUrl = 'https://your-digital-human-service.com/avatar?id=123';
-
- // 暂时不使用数字人服务,直接使用本地图片
- this.digitalHumanUrl = '';
-
- // 如果您有实际可用的数字人服务,可以在这里设置
- // 例如:this.digitalHumanUrl = 'https://your-actual-service.com/avatar';
-
- // 或者使用本地HTML文件(如果有的话)
- // this.digitalHumanUrl = '/hybrid/html/digital-human.html';
- },
-
- // 与数字人交互的方法
- interactWithDigitalHuman(message) {
- // 如果数字人是通过web-view加载的,可以使用postMessage与其通信
- const webview = this.$mp.page.$getAppWebview().children()[0];
- if (webview) {
- webview.evalJS(`receiveMessage('${message}')`);
- }
- },
- // 添加 navigateToInterview 方法
- navigateToInterview() {
- // 关闭模态框
- this.showEndModal = false;
-
- // 跳转到interview页面
- uni.navigateTo({
- url: '/pages/interview/interview',
- success: () => {
- console.log('成功跳转到interview页面');
- },
- fail: (err) => {
- console.error('跳转失败:', err);
- uni.showToast({
- title: '跳转失败,请手动返回首页',
- icon: 'none'
- });
- }
- });
- },
- // 添加 handleCameraError 方法
- handleCameraError(e) {
- console.error('相机错误:', e.detail);
- uni.showToast({
- title: '相机启动失败,请检查权限设置',
- icon: 'none'
- });
- },
- },
- // 添加生命周期钩子,确保在组件销毁时清除计时器
- beforeDestroy() {
- if (this.timerInterval) {
- clearInterval(this.timerInterval);
- }
- }
- }
- </script>
- <style>
- .camera-container {
- position: relative;
- width: 100%;
- height: 100vh;
- background-color: #ffffff;
- display: flex;
- flex-direction: column;
- }
- .header {
- height: 90rpx;
- /* background-color: #000000; */
- display: flex;
- align-items: center;
- padding: 0 30rpx;
- /* color: #ffffff; */
- }
- .back-button {
- width: 60rpx;
- height: 60rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .title {
- flex: 1;
- text-align: center;
- font-size: 32rpx;
- font-weight: bold;
- }
- .controls {
- display: flex;
- gap: 30rpx;
- }
- .iconfont {
- font-size: 40rpx;
- }
- .content {
- flex: 1;
- display: flex;
- flex-direction: column;
- position: relative;
- padding: 50rpx 20rpx 0;
- }
- .progress-container {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- margin-bottom: 20rpx;
- }
- .progress-step {
- display: flex;
- align-items: center;
- margin-bottom: 10rpx;
- }
- .step-circle {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- background-color: #e0e0e0;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 24rpx;
- margin-right: 10rpx;
- }
- .step-circle.active {
- background-color: #ff9500;
- color: #ffffff;
- }
- .step-text {
- font-size: 24rpx;
- color: #666666;
- }
- .progress-bar {
- height: 10rpx;
- background-color: #e0e0e0;
- border-radius: 5rpx;
- overflow: hidden;
- margin-bottom: 20rpx;
- }
- .progress-fill {
- height: 100%;
- background-color: #00c853;
- transition: width 0.3s;
- }
- .interview-content {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .video-area {
- display: flex;
- /* flex-direction: column; */
- justify-content: space-between;
- height: auto;
- margin-bottom: 20rpx;
- }
- .video-camera {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- width: 65%;
- }
- .interviewer {
- background-color: #f5f5f5;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- width: 48% !important;
- height: 300rpx;
- }
- .interviewer-video {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .interviewer-avatar {
- width: 80%;
- height: 80%;
- object-fit: contain;
- }
- .user-camera-container {
- width: 48%;
- height: 300rpx;
- border-radius: 10rpx;
- overflow: hidden;
- border: 4rpx solid #ffffff;
- box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.2);
- }
- .question-area {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .question-number {
- font-size: 28rpx;
- color: #666;
- margin-bottom: 20rpx;
- }
-
- .question-importance {
- background-color: #f9f9f9;
- padding: 20rpx;
- border-radius: 10rpx;
- margin-bottom: 20rpx;
- font-size: 28rpx;
- color: #333;
- }
-
- .question-importance text {
- color: #ff0000;
- margin-right: 10rpx;
- }
- .options {
- display: flex;
- flex-direction: column;
- gap: 20rpx;
- margin-bottom: 30rpx;
- }
- .option-item {
- padding: 20rpx;
- background-color: #f5f5f5;
- border-radius: 10rpx;
- font-size: 28rpx;
- transition: all 0.3s;
- border: 1px solid #e0e0e0;
- display: flex;
- align-items: center;
- }
- .option-selected {
- background-color: #e6f7ff;
- border: 1px solid #1890ff;
- }
-
- .option-correct {
- background-color: #d4f7d4;
- border: 1px solid #52c41a;
- }
-
- .option-wrong {
- background-color: #fff1f0;
- border: 1px solid #ff4d4f;
- }
- .option-text {
- color: #333;
- }
-
- .timer-container {
- text-align: right;
- margin: 20rpx 0;
- }
-
- .timer-text {
- font-size: 24rpx;
- color: #666;
- background-color: #f0f0f0;
- padding: 6rpx 12rpx;
- border-radius: 6rpx;
- }
- .bottom-button-container {
- position: fixed;
- bottom: 30px;
- left:7%;
- right: 0;
- background-color: #ffffff;
- /* border-top: 1px solid #e0e0e0; */
- padding: 20rpx;
- display: flex;
- justify-content: center;
- }
- .bottom-button-wrapper {
- display: flex;
- width: 100%;
- justify-content: space-between;
- align-items: center;
- }
- .timer-display {
- font-size: 28rpx;
- color: #666;
- padding: 10rpx 20rpx;
- border-radius: 6rpx;
- }
- .next-button {
- background-color: #0039b3;
- color: #ffffff;
- border-radius: 10rpx;
- font-size: 30rpx;
- height: 80rpx;
- line-height: 80rpx;
- width: 90%;
- text-align: center;
- margin: 0;
- }
- .footer {
- height: 100rpx;
- background-color: #000000;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- color: #ffffff;
- }
- .timer {
- font-size: 28rpx;
- }
- .next-step {
- font-size: 28rpx;
- }
- .interview-end-modal {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.5);
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 999;
- }
- .modal-content {
- width: 80%;
- background-color: #ffffff;
- border-radius: 20rpx;
- padding: 40rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .modal-title {
- font-size: 36rpx;
- font-weight: bold;
- margin-bottom: 30rpx;
- }
- .score-display {
- font-size: 48rpx;
- font-weight: bold;
- color: #0039b3;
- margin: 20rpx 0;
- }
-
- .modal-message {
- font-size: 28rpx;
- color: #666;
- text-align: center;
- margin-bottom: 40rpx;
- }
-
- .modal-buttons {
- display: flex;
- justify-content: space-between;
- width: 100%;
- margin-top: 20rpx;
- }
-
- .modal-button {
- width: 45%;
- }
- @keyframes speaking {
- 0% {
- opacity: 0.8;
- }
- 50% {
- opacity: 1;
- }
- 100% {
- opacity: 0.8;
- }
- }
- .speaking {
- animation: speaking 1.5s infinite;
- }
- .digital-avatar {
- display: flex;
- flex-direction: row;
- align-items: flex-start;
- justify-content: space-between;
- width: 100%;
- margin-bottom: 20rpx;
- }
-
- .message-box {
- width: 65%;
- min-height: 120rpx;
- background-color: #f5f5f5;
- border-radius: 10rpx;
- padding: 15rpx;
- margin-right: 20rpx;
- display: flex;
- align-items: center;
- }
- .message-text {
- font-size: 24rpx;
- color: #333;
- line-height: 1.5;
- }
- .user-avatar {
- width: 110px;
- height: 160px;
- border-radius: 10rpx;
- overflow: hidden;
- }
- .camera {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- border: 2rpx solid #e0e0e0;
- }
- .avatar-image {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- border: 2rpx solid #e0e0e0;
- }
- .digital-human-webview {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- border: 2rpx solid #e0e0e0;
- }
- .interview-complete-screen {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: #f0f5ff;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- z-index: 1000;
- padding: 40rpx;
- }
- .digital-avatar-large {
- width: 200rpx;
- height: 200rpx;
- margin-bottom: 60rpx;
- }
- .avatar-image-large {
- width: 100%;
- height: 100%;
- border-radius: 30rpx;
- }
- .complete-message {
- font-size: 40rpx;
- font-weight: bold;
- color: #333;
- margin-bottom: 30rpx;
- }
- .complete-description {
- font-size: 28rpx;
- color: #666;
- text-align: center;
- margin-bottom: 80rpx;
- line-height: 1.5;
- }
- .complete-button {
- background-color: #0039b3;
- color: #ffffff;
- border-radius: 10rpx;
- font-size: 32rpx;
- padding: 20rpx 60rpx;
- margin-top: 40rpx;
- }
- /* 添加加载状态样式 */
- .loading-container {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background-color: rgba(255, 255, 255, 0.9);
- z-index: 100;
- }
-
- .loading-text {
- margin-top: 20rpx;
- font-size: 28rpx;
- color: #666;
- }
-
- .error-container {
- text-align: center;
- }
-
- .error-message {
- font-size: 28rpx;
- color: #ff4d4f;
- margin-bottom: 30rpx;
- }
-
- .retry-button {
- background-color: #0039b3;
- color: #ffffff;
- border-radius: 10rpx;
- font-size: 28rpx;
- padding: 10rpx 30rpx;
- }
- .question-type {
- display: inline-block;
- /* background-color: #0039b3; */
- color: white;
- font-size: 24rpx;
- padding: 4rpx 10rpx;
- border-radius: 6rpx;
- margin-right: 10rpx;
- }
- /* 新增的开放问题样式 */
- .open-question-container {
- display: flex;
- flex-direction: column;
- width: 100%;
- margin-bottom: 20rpx;
- }
- .open-question-input {
- width: 100%;
- height: 300rpx;
- background-color: #f9f9f9;
- border: 1px solid #e0e0e0;
- border-radius: 10rpx;
- padding: 20rpx;
- font-size: 28rpx;
- color: #333;
- }
- .word-count {
- text-align: right;
- font-size: 24rpx;
- color: #999;
- margin-top: 10rpx;
- }
- .option-prefix {
- margin-right: 10rpx;
- font-weight: bold;
- color: #333;
- min-width: 30rpx;
- }
- </style>
|