| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550 |
- <template>
- <!-- AI发展历程 -->
- <div class="home-container">
- <!-- 展开收起侧边栏 -->
- <div
- class="icon-expand"
- :style="{
- backgroundColor: drawerVisible ? '#44449c' : '#7F70C840',
- left: drawerVisible ? '18%' : '0'
- }"
- @click="toggleDrawer"
- >
- <span
- class="vertical-lines"
- :style="{
- color: drawerVisible ? '#8a78d0' : 'white'
- }"
- >||</span
- >
- </div>
- <el-drawer
- v-model="drawerVisible"
- direction="ltr"
- size="18%"
- :with-header="false"
- >
- <!-- 添加抽屉 -->
- <div class="drawer-box">
- <el-row class="tac">
- <el-col :span="12">
- <span class="mb-2">
- <img :src="classImages" alt="课程小节图标" />
- 课程小节
- </span>
- <el-menu
- :default-active="course.key"
- @open="handleOpen"
- @close="handleClose"
- @select="handleSelect"
- :default-openeds="['3']"
- >
- <template v-for="item in menuItems" :key="item.key">
- <el-menu-item v-if="!item.children" :index="item.key">{{
- item.title
- }}</el-menu-item>
- <el-sub-menu v-else :index="item.key">
- <template #title>
- <span>{{ item.title }}</span>
- </template>
- <el-menu-item-group v-if="item.children">
- <template v-for="child in item.children" :key="child.key">
- <el-menu-item :index="child.key"
- >• {{ child.title }}</el-menu-item
- >
- </template>
- </el-menu-item-group>
- </el-sub-menu>
- </template>
- </el-menu>
- </el-col>
- </el-row>
- </div>
- </el-drawer>
- <div class="content-box">
- <div class="box-1">
- <div class="inner-box left-box">
- <div class="box-icon" @click="goBack">
- <el-icon class="left-icon"><ArrowLeftBold /></el-icon>
- {{ boxIconTitle }}
- </div>
- </div>
- <div class="inner-box right-box">
- <div class="top-right-box">
- <el-autocomplete
- v-model="SearchInput"
- :fetch-suggestions="querySearch"
- placeholder="搜索"
- @select="handleSearchSelect"
- class="search-input"
- value-key="title"
- :trigger-on-focus="false"
- >
- <template #prefix>
- <el-icon class="el-input__icon"><search /></el-icon>
- </template>
- <template #popper-append-to-body>
- <el-option
- class="scrollbar"
- v-for="item in filteredTitles"
- :key="item.key"
- :label="item.title"
- :value="item"
- ></el-option>
- </template>
- </el-autocomplete>
- </div>
- </div>
- </div>
- <div class="box-2">
- <!-- 课程标题 autoplay自动播放 @ended="playNextVideo"-->
- <div class="small-title">
- <span>{{ course.courseName }}</span>
- </div>
- <div class="box-video">
- <video
- class="full-box-video video-js vjs-default-skin"
- :src="course.courseVideoPath"
- controlsList="nodownload"
- controls
- @timeupdate="handleTimeUpdate"
- @play="checkVideoPermission"
- @seeked="handleSeeked"
- ref="videoRef"
- >
- <source :src="course.courseVideoPath" type="video/mp4" />
- 您的浏览器不支持视频播放。
- </video>
- </div>
- <!-- 添加切换视频 -->
- <div class="video-switch">
- <!-- 上一个视频 -->
- <div class="caret-left" @click="playPreviousVideo">
- <el-button type="warning" round>
- <img :src="leftImg" alt="Left" />
- 上一节</el-button
- >
- </div>
- <!-- 下一个视频 -->
- <div class="caret-right" @click="playNextVideo">
- <el-button type="warning" round
- >下一节
- <img :src="rightImg" alt="Right" />
- </el-button>
- </div>
- </div>
- </div>
- <!-- 添加试题弹框 -->
- <transition name="fade-scale">
- <div
- v-show="questionDialogVisible"
- class="child-dialog-wrapper"
- @click.self="handleCloseQuestionDialog"
- >
- <div class="child-dialog">
- <div class="question-title">
- <span class="question-icon">?</span>
- <span v-html="courseConfig.ccQuestContent"></span>
- </div>
- <!-- 选项区域 -->
- <div
- v-if="
- courseConfig.ccQuestOption &&
- courseConfig.ccQuestOption.length > 0
- "
- class="options-container"
- >
- <div
- v-for="(option, index) in courseConfig.ccQuestOption"
- :key="index"
- class="question-option"
- >
- <el-radio
- v-model="selectedOption"
- :label="index"
- :value="option"
- v-cloak="(selectedOption = option)"
- >
- <span>{{ option }}</span>
- </el-radio>
- </div>
- </div>
- <div v-else class="no-options">
- <!-- 暂无选项 -->
- </div>
- <!-- 底部按钮 -->
- <div class="dialog-footer">
- <!-- <el-button class="child-button cancel" @click="questionDialogVisible = false; showAIDialog = false">取消</el-button>-->
- <el-button
- class="child-button confirm"
- @click="handleSubmitAnswer"
- >确定</el-button
- >
- </div>
- <!-- 右侧小图标 -->
- <div
- v-if="courseConfig.ccAiAnswer !== null"
- class="ai-icon-container"
- @click="handleAIClick"
- >
- <img
- src="@/assets/images/xiaozhi.png"
- alt="AI对话"
- class="ai-icon"
- />
- <span class="ai-text">小智智能助手</span>
- </div>
- </div>
- </div>
- </transition>
- <!-- AI对话弹框 -->
- <div
- v-show="showAIDialog"
- class="ai-dialog-wrapper"
- @click.self="showAIDialog = false"
- >
- <div class="ai-dialog">
- <div class="ai-dialog-header">
- <h3>
- <img :src="auto" alt="" />
- 小智智能助手
- </h3>
- <el-button @click="showAIDialog = false" class="close-btn"
- >×</el-button
- >
- </div>
- <div class="ai-dialog-content">
- <div class="ai-message-history">
- <div
- v-for="(message, index) in messageHistory"
- :key="index"
- :class="['message', message.type]"
- >
- <img
- v-if="message.type === 'user'"
- src="@/assets/images/user.png"
- class="avatar user"
- />
- <img v-else src="@/assets/images/xiaozhi.png" class="avatar" />
- <div class="message-content" v-html="message.content"></div>
- </div>
- </div>
- <el-input
- v-model="userMessage"
- placeholder="输入问题..."
- class="user-input"
- @keyup.enter="sendMessage"
- >
- <template #append class="flex flex-wrap items-center mb-4">
- <!-- <el-button @click="sendMessage" class="child-button confirm">发送</el-button>-->
- <el-button @click="sendMessage" size="large" round
- >发送</el-button
- >
- </template>
- </el-input>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- import { ref, onMounted, onUnmounted, onBeforeUnmount,computed} from 'vue'
- import { useRouter } from 'vue-router'
- import videojs from 'video.js';
- import 'video.js/dist/video-js.css';
- import '@videojs/http-streaming'; // 支持HLS分片
- const videoPlayer = ref(null);
- let player = null;
- import {
- Expand,
- Fold,
- Memo
- } from '@element-plus/icons-vue'
- import { Search, ArrowLeftBold } from '@element-plus/icons-vue'
- import {
- ElMessage,
- ElMessageBox,
- ElNotification,
- valueEquals
- } from 'element-plus'
- import classImages from '@/assets/icon/class.png'
- import leftImg from '@/assets/icon/backward.png'
- import rightImg from '@/assets/icon/f-backward.png'
- import auto from '@/assets/icon/auto_awesome.png'
- import { ClassType } from '@/api/class.js'
- import { Message } from '@/utils/message/Message.js'
- const router = useRouter() // 获取当前路由对象
- // 添加按钮显示状态
- const buttonVisible = ref(false)
- // 添加抽屉显示状态
- const drawerVisible = ref(false)
- // 添加切换抽屉显示状态的函数
- const toggleDrawer = () => {
- drawerVisible.value = !drawerVisible.value
- }
- // 返回上一页
- const goBack = () => {
- router.go(-1)
- }
- // 渲染页面标题
- const boxIconTitle = ref('')
- // 课程集合数据
- const courseList = ref([])
- //当前课程
- const course = ref({})
- // 菜单数据
- const menuItems = ref([])
- // 课程集合数据
- const videoPathMap = ref({})
- //课程小节字典(需要新加接口调取字典)
- const menuDict = ref({
- "1": "课前回顾",
- "2": "课程引入",
- "3": "知识讲解",
- "4": "趣味实操",
- "5": "课程总结",
- })
- // 渲染 课程数据结构 以及 视频
- onMounted(async () => {
- const typeId = router.currentRoute.value.query.typeId
- if (typeId) {
- try {
- // 取接口课程数据
- const res = await ClassType(typeId)
- courseList.value = res.data
- //课程数据
- courseList.value.forEach((courseTemp,index) => {
- let menuIndex = courseTemp.courseLabel + '-' + (index+1);
- //填充大纲小节
- let menu = menuItems.value.find(menu => courseTemp.courseLabel === menu.index);
- if (menu){//小节
- menu.children = menu.children || [];
- menu.children.push({
- key: menuIndex,
- index: menuIndex,
- title: courseTemp.courseName
- })
- }else {//大节
- let temp = {
- key: menuIndex,
- index: courseTemp.courseLabel,
- title: menuDict.value[courseTemp.courseLabel]
- }
- if (courseTemp.courseLabel === "3"){
- temp.children = [{
- key: menuIndex,
- index: menuIndex,
- title: courseTemp.courseName
- }]
- }
- menuItems.value.push(temp)
- }
- courseTemp["key"] = menuIndex;
- videoPathMap.value[menuIndex] = courseTemp
- //确定默认课程
- if (index === 0) {
- course.value = courseTemp;
- }
- })
- } catch (error) {
- console.error('获取课程数据失败:', error)
- }
- }
- const title = router.currentRoute.value.query.typeName
- if (title) {
- boxIconTitle.value = String(title)
- }
- // 在视频元素上添加时间更新事件监听
- if (videoRef.value) {
- videoRef.value.addEventListener('timeupdate', handleTimeUpdate)
- }
- })
- // 菜单打开和关闭的处理函数
- const handleOpen = () => {}
- const handleClose = () => {}
- // 菜单选择的处理函数
- const handleSelect = index => {
- //测试账号禁用视频
- if (disableVideo(index))return;
- const findTitle = items => {
- for (const item of items) {
- if (item.key === index) {
- return item.title
- }
- if (item.children) {
- const result = findTitle(item.children)
- if (result) {
- return result
- }
- }
- }
- return null
- }
- // 根据索引切换视频,使用新的 videoPathMap
- if (videoPathMap.value[index]) {
- course.value = videoPathMap.value[index]
- // 切换标题后,关闭抽屉
- drawerVisible.value = false
- }else {
- //视频不存在
- Message().notifyWarning('视频不存在!', true);
- }
- //测试账号禁用视频
- if (disableVideo()) return
- }
- // 展平所有菜单项索引
- const flattenMenuItems = () => {
- const indices = []
- const traverse = items => {
- for (const item of items) {
- if (!item.children) {
- indices.push(item.key)
- } else {
- traverse(item.children)
- }
- }
- }
- traverse(menuItems.value)
- return indices
- }
- // 播放下一个视频
- const playNextVideo = () => {
- //测试账号禁用视频
- if (disableVideo())return;
- const allIndices = flattenMenuItems()
- const currentIndexInList = allIndices.indexOf(course.value.key)
- if (currentIndexInList !== -1 && currentIndexInList < allIndices.length - 1) {
- const nextIndex = allIndices[currentIndexInList + 1]
- handleSelect(nextIndex)
- // 切换视频后自动播放
- if (videoRef.value) {
- videoRef.value.addEventListener('loadedmetadata', tryPlayVideo, {
- once: true
- })
- }
- }
- // 重置
- pausedIndices.value = [];
- userMessage.value = ''
- messageHistory.value = []
- }
- // 切换视频
- // 播放上一个视频
- const playPreviousVideo = () => {
- //测试账号禁用视频
- if (disableVideo())return;
- const allIndices = flattenMenuItems()
- const currentIndexInList = allIndices.indexOf(course.value.key)
- if (currentIndexInList > 0) {
- const previousIndex = allIndices[currentIndexInList - 1]
- handleSelect(previousIndex)
- // 切换视频后自动播放
- if (videoRef.value) {
- videoRef.value.addEventListener('loadedmetadata', tryPlayVideo, {
- once: true
- })
- }
- }
- }
- // 尝试播放视频,处理浏览器自动播放限制
- const tryPlayVideo = () => {
- //测试账号禁用视频
- if (disableVideo())return;
- const playPromise = videoRef.value.play()
- if (playPromise !== undefined) {
- playPromise.catch(error => {
- console.error('视频播放失败,可能是浏览器自动播放限制:', error)
- })
- }
- player = videojs(videoPlayer.value, {
- controls: true,
- sources: [
- {
- src: course.value.courseVideoPath,
- type: 'video/mp4'
- }
- ],
- preload:'metadata' // 仅加载元数据,避免预加载整个文件
- });
- }
- // 检查视频播放权限
- const checkVideoPermission = () => {
- if (disableVideo() || questionDialogVisible.value) {
- if (videoRef.value) {
- videoRef.value.pause()
- }
- }
- };
- //禁用视频
- const disableVideo = (index = course.value.key) => {
- let dis = ["3-7","3-8","3-9","3-10","3-11","3-12","3-13","4-14","5-15"]
- if (localStorage.getItem('userName') === "aiTest" &&
- dis.indexOf(index) !== -1) {
- if (videoRef.value) {
- // 记录当前播放时间
- videoRef.value.pause()
- // 阻止用户跳转到新的时间点,将播放时间重置为之前的时间
- videoRef.value.currentTime = 0;
- }
- //提示禁用// 显示消息框
- Message().notifyWarning('您的账号并未开放此课程!', true);
- return true;
- }
- return false;
- }
- // 视频 ref
- const videoRef = ref(null)
- // 记录已经暂停过的时间点索引
- let pausedIndices = ref([])
- // 试题弹框显示状态
- const questionDialogVisible = ref(false)
- // 当前显示的试题
- const courseConfig = ref({})
- // 用户选择的选项
- const selectedOption = ref(null)
- // AI对话弹出框显示状态
- let showAIDialog = ref(false)
- // 用户输入的消息
- let userMessage = ref('')
- // 消息历史记录
- let messageHistory = ref([])
- // 处理视频时间更新事件
- const handleTimeUpdate = () => {
- //测试账号禁用视频
- if (!videoRef.value) return
- const currentTime = parseInt(videoRef.value.currentTime)
- if (!course.value.courseConfigList) return
- course.value.courseConfigList.forEach(courseCofig => {
- //暂停时间
- let time = courseCofig.ccTime
- // 检查是否到达时间点且还未暂停过
- if (currentTime === time && !pausedIndices.value.includes(time) ) {
- videoRef.value.pause()
- //记录暂停时间
- pausedIndices.value.push(currentTime)
- // 显示对应的问题
- if (courseCofig.ccQuestContent) {
- questionDialogVisible.value = true
- courseConfig.value = courseCofig
- //解析选项
- if (courseCofig.ccQuestOption) {
- courseConfig.courseQuestion = courseCofig.ccQuestOption.split(',')
- }
- }
- }
- })
- }
- // 视频完成拖动进度条时触发的方法
- const handleSeeked = () => {
- pausedIndices.value = [];
- }
- // 关闭试题弹框
- const handleCloseQuestionDialog = () => {
- questionDialogVisible.value = false
- // 继续播放视频
- videoRef.value.play()
- }
- // 提交答案
- const handleSubmitAnswer = () => {
- // 这里可以添加答案验证逻辑
- questionDialogVisible.value = false
- // 继续播放视频
- videoRef.value.play()
- selectedOption.value = null
- }
- // 发送消息
- const sendMessage = async () => {
- if (userMessage.value.trim()) {
- // 添加用户消息到历史记录
- messageHistory.value.push({
- type: 'user',
- content: userMessage.value
- })
- // 模拟 AI 回复
- const aiResponse = await simulateAIResponse(userMessage.value)
- messageHistory.value.push({
- type: 'ai',
- content: aiResponse
- })
- // 清空输入框
- userMessage.value = ''
- }
- }
- // 处理 AI 助手点击事件
- const handleAIClick = () => {
- // 清空输入框
- messageHistory = ref([])
- if (courseConfig.value.ccQuestContent) {
- userMessage.value = courseConfig.value.ccQuestContent
- sendMessage()
- userMessage.value = ''
- }
- showAIDialog.value = true
- }
- // 模拟 AI 回复
- const simulateAIResponse = question => {
- return new Promise(resolve => {
- setTimeout(() => {
- if (courseConfig.value.ccAiAnswer) {
- resolve(courseConfig.value.ccAiAnswer)
- return
- }
- // 若未匹配到自定义回复,给出默认回复
- resolve(`您的问题是:${question},这是 AI 的回复示例。`)
- }, 1000)
- })
- }
- // 关闭AI对话弹出框
- const handleCloseAIDialog = () => {
- showAIDialog.value = false
- }
- // 搜索框
- const SearchInput = ref('')
- // 添加搜索建议查询方法
- const querySearch = (queryString, cb) => {
- const sections = getAllCourseSections();
- const results = queryString
- ? sections.filter(section =>
- section.title.toLowerCase().includes(queryString.toLowerCase())
- )
- : sections;
- cb(results);
- };
- const filteredTitles = computed(() => {
- const sections = getAllCourseSections();
- if (!SearchInput.value) {
- return sections;
- }
- return sections.filter(section =>
- section.title.toLowerCase().includes(SearchInput.value.toLowerCase())
- );
- });
- const handleSearchSelect = (item) => {
- handleSelect(item.key);
- // 添加以下代码清空输入框
- SearchInput.value = '';
- };
- // 添加课程小节数据提取方法
- const getAllCourseSections = () => {
- let sections = [];
- const traverse = (items) => {
- items.forEach(item => {
- if (item.children) {
- traverse(item.children);
- } else {
- sections.push({ title: item.title, key: item.key });
- }
- });
- };
- traverse(menuItems.value);
- return sections;
- };
- </script>
- <style scoped lang="scss">
- @use 'sass:math';
- @use 'sass:color'; // 引入 color 模块
- // 定义rpx转换函数
- @function rpx($px) {
- @return math.div($px, 750) * 100vw;
- }
- // 定义儿童风格的蓝紫色调
- $primary-color: rgba(106, 90, 205, 0.52); // 主色调:蓝紫色
- $secondary-color: rgba(147, 112, 219, 0.66); // 辅助色:亮蓝紫色
- $accent-color: rgb(133, 89, 220); // 强调色:暗蓝紫色
- $light-color: #ffffff; // 浅色背景:淡紫色
- $text-color: #483d8b; // 文本颜色:靛蓝色
- /* 添加过渡样式 */
- .drawer-slide-enter-active,
- .drawer-slide-leave-active {
- transition: all 0.3s ease;
- }
- .drawer-slide-enter-from,
- .drawer-slide-leave-to {
- transform: translateX(-100%);
- opacity: 0;
- }
- .home-container ::v-deep(.el-drawer__body) {
- width: rpx(135);
- height: 100%;
- position: relative;
- background: linear-gradient(to bottom, #001169, #8a78d0);
- }
- .content-box {
- flex: 1;
- height: 100%;
- display: flex;
- flex-direction: column; /* 子元素上下排列 */
- background: linear-gradient(to bottom, #001169, #8a78d0);
- }
- .icon-expand {
- width: rpx(8);
- height: rpx(35);
- border-top-right-radius: rpx(5);
- border-bottom-right-radius: rpx(5);
- z-index: 9999;
- position: absolute;
- top: 50%;
- left: 18%;
- transform: translateY(-50%);
- cursor: pointer; // 添加鼠标指针样式
- clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
- display: flex;
- justify-content: center;
- align-items: center;
- transition: all 0.3s ease;
- }
- .icon-expand .vertical-lines {
- color: #8a78d0;
- font-size: rpx(10);
- }
- .home-container {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: linear-gradient(to bottom, #001169, #b4a8e1);
- display: flex;
- }
- .el-row {
- margin: auto;
- margin-top: rpx(20);
- }
- .tac ::v-deep(.el-menu) {
- background-color: transparent;
- border: none;
- width: 100%;
- margin-top: rpx(8);
- }
- /* 取消点击后的蓝色字体 el-sub-menu__title*/
- .tac ::v-deep(.el-menu-item.is-active),
- .tac ::v-deep(.el-sub-menu__title.is-active) {
- color: white;
- }
- // 取消鼠标悬浮颜色
- .tac ::v-deep(.el-sub-menu__title) {
- width: rpx(130);
- height: rpx(20);
- margin-bottom: rpx(5);
- border-radius: rpx(6);
- // 添加flex布局使标题和图标两端对齐
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .el-menu ::v-deep(.el-sub-menu__title:hover),
- .el-menu ::v-deep(.el-sub-menu__title:focus),
- .el-menu ::v-deep(.el-sub-menu__title:active) {
- background: linear-gradient(to bottom, #fee78a, #ffce1b);
- background-color: transparent;
- }
- // 添加二级标题折叠图标样式
- ::v-deep(.el-sub-menu__icon-arrow) {
- color: white;
- font-size: rpx(10); // 增大图标尺寸
- margin-left: auto; // 将图标推到右侧
- margin-top: rpx(-5);
- display: block;
- width: rpx(16); // 确保有明确宽度
- }
- // 鼠标悬停时的图标样式
- .el-menu ::v-deep(.el-sub-menu__title:hover .el-sub-menu__icon-arrow) {
- color: black; // 与悬停状态的文字颜色保持一致
- }
- .el-menu ::v-deep(.el-icon svg) {
- font-size: rpx(9);
- }
- .mb-2 {
- color: white;
- font-size: rpx(9);
- }
- .mb-2 img {
- width: rpx(10);
- height: rpx(10);
- vertical-align: middle;
- margin-top: rpx(-2);
- }
- .el-menu-item {
- width: rpx(100);
- height: rpx(20);
- margin-bottom: rpx(5);
- border-radius: rpx(6);
- color: white;
- font-size: rpx(8);
- }
- .el-menu ::v-deep(.el-sub-menu__title) {
- color: white;
- width: rpx(100);
- height: rpx(20);
- margin-bottom: rpx(5);
- font-size: rpx(8);
- }
- .el-menu ::v-deep(.el-sub-menu__title:hover),
- .el-menu ::v-deep(.el-sub-menu__title:focus),
- .el-menu ::v-deep(.el-sub-menu__title:active) {
- background: linear-gradient(to bottom, #fee78a, #ffce1b);
- color: black;
- }
- .el-menu ::v-deep(.el-menu-item:hover),
- .el-menu ::v-deep(.el-menu-item:focus),
- .el-menu ::v-deep(.el-menu-item:active) {
- background: linear-gradient(to bottom, #fee78a, #ffce1b);
- color: black;
- font-size: rpx(8);
- box-shadow: 0 4px 8px rgba(3, 3, 3, 0.3);
- }
- .el-menu .el-menu-item.is-active {
- background: linear-gradient(to bottom, #fee78a, #ffce1b);
- color: black;
- font-size: rpx(8);
- box-shadow: 0 4px 8px rgba(3, 3, 3, 0.3);
- }
- .drawer-box {
- position: absolute;
- display: flex;
- align-items: center;
- height: 100%;
- width: 80%;
- }
- .drawer-box .toggle-button {
- width: rpx(10);
- height: rpx(50);
- font-size: rpx(7);
- background-color: rgba(17, 23, 29, 0.2);
- border: none;
- position: relative;
- writing-mode: vertical-lr; // 文字垂直排列,从左到右
- text-orientation: upright; // 文字保持正立
- }
- .toggle-button:hover {
- left: 0;
- }
- .toggle-button.is-active,
- .toggle-button:active,
- .toggle-button:focus {
- background-color: rgba(165, 209, 247, 0.8);
- color: white;
- border: none; // 移除点击时的边框
- outline: none; // 移除点击时的外边框
- }
- .box-1 {
- width: 100%;
- height: rpx(50);
- margin-top: rpx(10);
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- font-size: rpx(15); // 默认字体大小
- }
- .inner-box {
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: rpx(16); // 默认字体大小
- }
- .left-box {
- position: relative;
- justify-content: flex-start;
- align-items: flex-start;
- flex: 1; // 设置左侧盒子占比为 2
- cursor: pointer; // 添加鼠标指针样式
- }
- .box-icon {
- width: 100%;
- height: 100%;
- flex: 1;
- display: flex; // 添加 flex 布局
- align-items: center; // 垂直居中
- color: white; // 设置图标颜色为白色
- padding-left: rpx(15);
- font-size: rpx(10); // 设置图标大小,可按需调整
- }
- .box-icon .left-icon {
- margin-left: rpx(10);
- margin-right: rpx(5); // 设置图标和文字之间的间距 ;
- }
- .left-box span {
- position: absolute;
- font-size: rpx(11); // 默认字体大小
- color: white;
- }
- .right-box {
- flex: 1;
- position: relative; // 添加相对定位;
- }
- .top-right-box {
- position: absolute; // 添加绝对定位
- // margin-top: rpx(9); // 调整上边距离
- margin-left: rpx(260); // 调整右边距离
- width: rpx(100); // 设置盒子宽度,可按需调整
- // height: 60px; // 设置盒子高度,可按需调整
- display: flex;
- justify-content: flex-end;
- }
- .top-right-box {
- ::v-deep(.el-input__wrapper) {
- height: rpx(15);
- font-size: rpx(6);
- background-color: rgb(255, 255, 255, 0.5);
- border-radius: rpx(12);
- border: white 1px solid;
- color: white;
- }
- ::v-deep(.el-input__icon) {
- color: white; // 设置输入框图标颜色为白色
- }
- // 添加占位符样式
- ::v-deep(.el-input__inner::placeholder) {
- color: white;
- }
- // 添加输入框文字颜色样式
- ::v-deep(.el-input__inner) {
- color: black;
- }
- }
- // 搜索框
- .search-input {
- width: rpx(100);
- height: rpx(15);
- font-size: rpx(7);
- }
- .box-2 {
- width: 100%;
- flex: 1;
- box-shadow: 0 4px 8px rgba(202, 52, 52, 0.1);
- box-sizing: border-box;
- display: flex; // 确保子元素水平排列
- flex-wrap: wrap; // 允许子元素换行;
- align-content: center; // 顶部对齐;
- cursor: pointer; // 添加鼠标指针样式
- }
- .box-video {
- width: 100%;
- height: rpx(300);
- video.full-box-video {
- height: rpx(280);
- width: 67%;
- margin: 0 auto;
- border-radius: rpx(12);
- object-fit: cover;
- }
- }
- /* 隐藏 Chrome 视频控件的渐变背景等默认样式 */
- video::-webkit-media-controls-panel {
- background: transparent !important; /* 去掉背景渐变,设为透明 */
- }
- .small-title {
- width: 100%;
- margin-top: rpx(-20);
- height: rpx(20);
- color: white;
- font-size: rpx(10);
- justify-content: center; //使子元素水平居中
- }
- .video-switch {
- width: 100%;
- // height: rpx(50);
- display: flex;
- margin-top: rpx(-20);
- // background-color: saddlebrown;
- }
- .caret-right,
- .caret-left {
- width: rpx(50);
- margin: auto;
- display: flex;
- margin-top: rpx(5);
- margin-bottom: rpx(15);
- }
- .caret-left ::v-deep(.el-button.is-round),
- .caret-right ::v-deep(.el-button.is-round) {
- width: rpx(50);
- height: rpx(15);
- color: white;
- font-size: rpx(7);
- border-radius: none;
- border: 1px white solid;
- background-color: rgb(255, 255, 255, 0.5); // 进度条背景颜色,调浅为半透明白色
- box-shadow: 0 4px 8px rgba(202, 52, 52, 0.1);
- }
- .caret-right img,
- .caret-left img {
- width: rpx(12);
- }
- // 儿童风格试题弹框样式
- .child-dialog {
- .el-dialog__header {
- display: none; // 隐藏原有的标题栏
- }
- .el-dialog__body {
- padding: rpx(20);
- position: relative;
- }
- .el-dialog__footer {
- border-top: none;
- padding: rpx(10) rpx(20);
- text-align: center;
- margin-top: auto; // 使底部按钮位于底部
- }
- .el-dialog__wrapper {
- // 修改半透明背景色
- background-color: rgba(0, 0, 0, 0.6);
- }
- .el-dialog {
- border: none;
- border-radius: rpx(20);
- background: linear-gradient(
- 135deg,
- $light-color,
- #d8bfd8
- ); // 柔和的蓝紫色渐变
- overflow: hidden;
- display: flex; // 添加 flex 布局
- flex-direction: column; // 设置垂直布局
- min-height: 0; // 防止子元素溢出
- // 添加装饰元素
- &::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: rpx(10);
- background: linear-gradient(90deg, $secondary-color, $accent-color);
- }
- }
- }
- // 问题标题样式
- .question-title {
- padding: rpx(15);
- border-radius: rpx(12);
- margin-bottom: rpx(20);
- color: #483d8b;
- font-weight: bold;
- font-size: rpx(12);
- position: relative;
- display: flex;
- // align-items: center;
- .question-icon {
- background-color: $accent-color;
- color: white;
- width: rpx(24);
- height: rpx(24);
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: rpx(10);
- font-weight: bold;
- box-shadow: 0 rpx(2) rpx(5) rgba($accent-color, 0.3);
- }
- }
- // 选项容器样式
- .options-container {
- margin-bottom: rpx(20);
- }
- // 问题选项样式
- .question-option {
- margin: rpx(8) 0;
- padding: rpx(10) rpx(15);
- border-radius: rpx(12);
- border: rpx(1) solid rgba($primary-color, 0.3);
- transition: all 0.3s ease;
- display: flex;
- align-items: center;
- background-color: white;
- box-shadow: 0 rpx(2) rpx(5) rgba($primary-color, 0.05);
- ::v-deep(.el-radio__label) {
- color: $text-color;
- margin-left: rpx(8);
- flex: 1;
- text-align: left;
- // 增大字体大小
- font-size: rpx(12);
- }
- // 选中时的样式变化
- .el-radio__input.is-checked + .el-radio__label {
- font-weight: bold;
- color: $accent-color;
- }
- &:hover {
- background-color: rgba($primary-color, 0.05);
- border-color: rgba($primary-color, 0.5);
- transform: translateY(-rpx(1));
- }
- }
- // 暂无选项样式
- .no-options {
- color: rgba($text-color, 0.7);
- text-align: center;
- padding: rpx(20);
- font-size: rpx(12);
- }
- // 底部按钮样式
- .child-button {
- min-width: rpx(80);
- height: rpx(30);
- border-radius: rpx(8);
- font-size: rpx(12);
- font-weight: 500;
- transition: all 0.3s ease;
- box-shadow: 0 rpx(2) rpx(8) rgba(0, 0, 0, 0.1);
- &.confirm {
- background: linear-gradient(to bottom, #ab81ff, #8559dc);
- border: none;
- border-right: 15px;
- color: white;
- &:hover {
- background: linear-gradient(
- to bottom,
- color.adjust(#ab81ff, $lightness: -5%),
- color.adjust(#8559dc, $lightness: -5%)
- );
- transform: translateY(-rpx(1));
- color: white;
- }
- }
- &.cancel {
- background: white;
- border: rpx(1) solid rgba($primary-color, 0.3);
- color: $text-color;
- &:hover {
- background: rgba($primary-color, 0.05);
- border-color: rgba($primary-color, 0.5);
- transform: translateY(-rpx(1));
- }
- }
- }
- // AI对话图标样式
- .ai-icon-container {
- position: absolute;
- bottom: rpx(20);
- right: rpx(20);
- display: flex;
- flex-direction: column;
- align-items: center;
- cursor: pointer;
- transition: all 0.3s ease;
- &:hover {
- transform: translateY(-rpx(2));
- }
- .ai-icon {
- width: rpx(30);
- height: rpx(30);
- margin-bottom: rpx(0);
- filter: drop-shadow(0 rpx(2) rpx(4) rgba($primary-color, 0.3));
- // 添加过渡动画
- transition: transform 0.3s ease;
- }
- // 悬浮时放大效果
- .ai-icon:hover {
- transform: scale(1.5);
- }
- .ai-text {
- color: $text-color;
- font-size: rpx(8);
- background-color: rgba(255, 255, 255, 0.7);
- padding: rpx(2) rpx(5);
- border-radius: rpx(5);
- }
- }
- // AI消息样式
- .ai-message {
- display: flex;
- align-items: flex-start;
- margin-bottom: rpx(15);
- .ai-avatar {
- width: rpx(30);
- height: rpx(30);
- border-radius: 50%;
- margin-right: rpx(10);
- background-color: $primary-color;
- padding: rpx(5);
- // box-shadow: 0 rpx(2) rpx(5) rgba($primary-color, 0.2);
- }
- .ai-text-content {
- background-color: $light-color;
- padding: rpx(8) rpx(12);
- border-radius: rpx(10);
- font-size: rpx(10);
- color: $text-color;
- max-width: 80%;
- // box-shadow: 0 rpx(1) rpx(3) rgba(0, 0, 0, 0.05);
- }
- }
- // 用户输入框样式
- .user-input {
- ::v-deep(.el-input__wrapper) {
- height: rpx(23);
- border-top-left-radius: rpx(5);
- border-bottom-left-radius: rpx(5);
- border-color: rgba($primary-color, 0.3);
- &:focus-within {
- box-shadow: 0 0 0 rpx(1) rgba($primary-color, 0.5);
- }
- }
- ::v-deep(.el-input__inner) {
- font-size: rpx(10);
- // color: $text-color;
- text-indent: 1em;
- }
- ::v-deep(.el-input-group__append, .el-input-group__prepend) {
- background: linear-gradient(to bottom, #ab81ff, #8559dc);
- border-top-right-radius: rpx(5);
- border-bottom-right-radius: rpx(5);
- color: white;
- font-size: rpx(9);
- }
- }
- /* 定义淡入和缩放动画 */
- .fade-scale-enter-active,
- .fade-scale-leave-active {
- transition: all 0.5s ease;
- }
- .fade-scale-enter-from,
- .fade-scale-leave-to {
- opacity: 0.1;
- transform: scale(0.9);
- }
- // 自定义试题弹框背景
- .child-dialog-wrapper {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: rgba(0, 0, 0, 0.6); // 半透明背景
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 1000;
- }
- .child-dialog {
- border: none;
- border-radius: rpx(15);
- background: rgb(255, 255, 255, 0.8); // 柔和的蓝紫色渐变
- overflow: hidden;
- padding: rpx(15);
- width: 40%;
- // height: 60%;
- position: relative;
- }
- // AI对话弹框样式
- .ai-dialog-wrapper {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- z-index: 1001;
- pointer-events: none;
- }
- .ai-dialog {
- border: none;
- border-radius: rpx(15);
- background: rgb(255, 255, 255, 0.8);
- overflow: hidden;
- padding: rpx(20);
- width: 30%;
- // 增加高度
- height: 80%;
- margin-right: rpx(50);
- pointer-events: auto;
- position: relative;
- display: flex;
- flex-direction: column;
- &::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: rpx(10);
- }
- }
- .ai-dialog-header {
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-bottom: rpx(15);
- margin-top: rpx(-10);
- img {
- width: rpx(15);
- }
- h3 {
- color: black;
- font-size: rpx(12);
- }
- .close-btn {
- padding: 0;
- width: rpx(20);
- height: rpx(20);
- font-size: rpx(16);
- line-height: 1;
- position: absolute;
- background-color: transparent;
- border: none;
- margin-left: rpx(200);
- }
- }
- .ai-dialog-content {
- flex: 1;
- display: flex;
- flex-direction: column;
- }
- .ai-message-history {
- flex: 1;
- // 当内容超出容器高度时,显示垂直滚动条
- overflow-y: auto;
- margin-bottom: rpx(15);
- // 可以根据实际情况调整最大高度
- max-height: 50vh;
- // padding: 5px 10px;
- .message {
- display: flex;
- align-items: flex-start;
- margin-bottom: rpx(10);
- &.user {
- flex-direction: row-reverse;
- }
- .avatar {
- width: rpx(30);
- height: rpx(30);
- border-radius: 50%;
- margin: 0 rpx(10);
- }
- .user {
- width: 15px;
- height: 15px;
- }
- .message-content {
- background-color: #ffffff;
- font-size: rpx(10);
- max-width: 80%;
- color: black;
- box-shadow: 0 rpx(1) rpx(3) rgba(0, 0, 0, 0.05);
- }
- }
- // 滚动条整体样式
- &::-webkit-scrollbar {
- width: rpx(4); // 滚动条宽度
- }
- // 滚动条滑块样式
- &::-webkit-scrollbar-thumb {
- background-color: $primary-color; // 滑块颜色
- border-radius: rpx(4); // 滑块圆角
- transition: background-color 0.3s ease; // 颜色过渡效果
- &:hover {
- //background-color: darken($primary-color, 10%); // 悬停时滑块颜色加深
- }
- }
- // 滚动条轨道样式
- &::-webkit-scrollbar-track {
- background-color: rgba($primary-color, 0.2); // 轨道颜色
- border-radius: rpx(4); // 轨道圆角
- }
- .message {
- display: flex;
- align-items: flex-start;
- margin-bottom: rpx(10);
- &.user {
- flex-direction: row-reverse;
- }
- .avatar {
- width: rpx(30);
- height: rpx(30);
- border-radius: 50%;
- margin: 0 rpx(10);
- }
- .message-content {
- background-color: white;
- padding: rpx(8) rpx(12);
- border-radius: rpx(5);
- font-size: rpx(10);
- color: black;
- max-width: 80%;
- box-shadow: 0 rpx(1) rpx(3) rgba(0, 0, 0, 0.05);
- }
- }
- }
- // 优化发送按钮样式
- .send-button {
- //background: linear-gradient(90deg, $primary-color, $secondary-color);
- border: none;
- color: white;
- &:hover {
- //background: linear-gradient(90deg, darken($primary-color, 5%), darken($secondary-color, 5%));
- }
- }
- </style>
- <style lang="scss">
- // 搜索下拉框样式
- @use 'sass:math';
- // 定义rpx转换函数
- @function rpx($px) {
- @return math.div($px, 750) * 100vw;
- }
- /* 消除小三角 */
- .el-popper__arrow {
- display: none;
- }
- .el-popper.is-light,
- .el-dropdown__popper.el-popper {
- background: transparent;
- border: none;
- box-shadow: none;
- }
- .el-dropdown__popper {
- --el-dropdown-menuItem-hover-color: none;
- }
- .el-autocomplete-suggestion .el-scrollbar__wrap {
- margin: 0 auto;
- background-color: rgba(255, 255, 255, 0.7);
- border: 2px solid white;
- border-radius: rpx(5);
- backdrop-filter: blur(rpx(5));
- }
- .el-autocomplete-suggestion li {
- color: black;
- font-size: rpx(7);
- padding: rpx(5) rpx(8); // 调整下拉项内边距
- }
- .el-autocomplete-suggestion li:hover {
- background: linear-gradient(to bottom, #ffefb0, #ffcc00);
- }
- </style>
|