diff --git a/src/views/largeDataScreen/home.vue b/src/views/largeDataScreen/home.vue index 8c58bed..5c63377 100644 --- a/src/views/largeDataScreen/home.vue +++ b/src/views/largeDataScreen/home.vue @@ -752,6 +752,7 @@ const product = ref(Boolean(localStorage.getItem("product")) || false); const step = ref(0); const popover1 = ref(null); const popover2 = ref(null); +const radio1 = ref('接受') const dialogVisible = ref(false); const Installation = ref(false); const Popup = ref(false); diff --git a/src/views/resultsAnnounced/index.vue b/src/views/resultsAnnounced/index.vue index 95011ca..06af3a0 100644 --- a/src/views/resultsAnnounced/index.vue +++ b/src/views/resultsAnnounced/index.vue @@ -57,7 +57,7 @@ @@ -78,6 +78,12 @@ const Props = defineProps({ // 定义自定义事件 const emit = defineEmits(['recreate']); + +//去学习按钮 +const Study =()=>{ + router.push('/studyPage') +} + //重做按钮 const Recreate=()=>{ // 触发自定义事件,通知父组件 @@ -87,7 +93,7 @@ const Recreate=()=>{ //回首页 const router = useRouter(); const Back =()=>{ - router.push('/'); // 返回首页 + router.push('/spacePage'); // 返回首页 } diff --git a/src/views/subjectTest/index.vue b/src/views/subjectTest/index.vue index e85d5b1..3f99451 100644 --- a/src/views/subjectTest/index.vue +++ b/src/views/subjectTest/index.vue @@ -49,6 +49,7 @@ import settingStore from "@/store/modules/setting"; import {subTestapi,checkapi} from '@/api/index.ts' import { ref,computed,onMounted, onUnmounted} from "vue" import { ElMessage } from 'element-plus' +import { useRouter } from 'vue-router'; const setting = settingStore(); //左箭头 const SubLeft =()=>{ @@ -153,8 +154,9 @@ import { ElMessage } from 'element-plus' } }; // 退出答题 + const router = useRouter() const resetAnswers = () => { - + router.push('/spacePage') }; // 计时器相关变量 const timer = ref(null); // 用于存储 setInterval 的返回值 @@ -273,12 +275,12 @@ import { ElMessage } from 'element-plus' font-size: 55px; /* 数字字体大小 */ } .timer{ - font-size: 20px; /* 字体大小 */ + font-size: 19.5px; /* 字体大小 */ letter-spacing: 3px; /* 字符间距 */ text-align: right; position: absolute; /* 使用绝对定位 */ - top: 24.5%; /* 距离顶部 */ - left: 71.4%; /* 距离左侧 */ + top: 22%; /* 距离顶部 */ + left: 69%; /* 距离左侧 */ } .questions{ font-size: 23px; /* 字体大小 */ @@ -293,7 +295,7 @@ import { ElMessage } from 'element-plus' } .txt { margin-top: 18px; - font-size: 18px; /* 字体大小 */ + font-size: 22px; /* 字体大小 */ font-family: Consolas, sans-serif; /* 字体样式 */ letter-spacing: 1.5px; /* 字符间距,单位可以是 px、em 等 */ line-height: 1.5; /* 行间距,1.5 表示字体大小的 1.5 倍 */ @@ -310,7 +312,7 @@ import { ElMessage } from 'element-plus' /* 单个选项样式 */ .option { padding: 5px 10px; /* 内边距,让按钮看起来更舒适 */ - font-size: 18px; /* 字体大小 */ + font-size: 20px; /* 字体大小 */ letter-spacing: 1.5px; /* 字符间距,单位可以是 px、em 等 */ text-align: left; /* 设置文字左对齐 */ margin-top: 5px; @@ -348,7 +350,7 @@ import { ElMessage } from 'element-plus' cursor: pointer; /* 鼠标悬停时显示手型 */ width: 300px; height: 41px; - font-size: 17px; + font-size: 18px; font-weight: bold; /* 文字加粗 */ color: #fff; } diff --git a/src/views/target/index.vue b/src/views/target/index.vue index 2ee015d..be3204e 100644 --- a/src/views/target/index.vue +++ b/src/views/target/index.vue @@ -12,10 +12,10 @@
- - - 退出 - 进入仿真实验 + + +
@@ -45,6 +45,16 @@ import { useRouter } from 'vue-router'; } + //进入仿真实验 + const router = useRouter(); + const enter =()=>{ + router.push('/program'); + } + //退出 + const reset =()=>{ + router.push('/spacePage'); + } + onMounted(() => {getContent()}); @@ -131,7 +141,7 @@ import { useRouter } from 'vue-router'; margin-top: 18px; margin-left: 20px; margin-right: 20px; - font-size: 18px; /* 字体大小 */ + font-size: 21px; /* 字体大小 */ font-family: Consolas, sans-serif; /* 字体样式 */ letter-spacing: 1.5px; /* 字符间距,单位可以是 px、em 等 */ line-height: 1.5; /* 行间距,1.5 表示字体大小的 1.5 倍 */ @@ -154,13 +164,10 @@ import { useRouter } from 'vue-router'; cursor: pointer; /* 鼠标悬停时显示手型 */ width: 300px; height: 41px; - font-size: 17px; + font-size: 18px; font-weight: bold; /* 文字加粗 */ color: #fff; - display: flex; - align-items: center; /* 垂直居中 */ - justify-content: center; /* 水平居中 */ - text-decoration: none + } }