From c090cd7b022216cc5c84ccbe7cd66d9f6ff5aaa1 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 31 十月 2024 20:03:22 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
src/views/exam/components/answer-time/index.vue | 30 +++++++++++++++++-------------
1 files changed, 17 insertions(+), 13 deletions(-)
diff --git a/src/views/exam/components/answer-time/index.vue b/src/views/exam/components/answer-time/index.vue
index aa2de08..67ac431 100644
--- a/src/views/exam/components/answer-time/index.vue
+++ b/src/views/exam/components/answer-time/index.vue
@@ -1,5 +1,7 @@
<template>
- <div class="time-container flex justify-center text-white items-center shadow-md">
+ <div
+ class="time-container flex justify-center text-white items-center shadow-md"
+ >
<el-icon class="mr-1 text-xl" size="24"><Timer /></el-icon>
<div class="label mr-1">鍓╀綑鏃堕棿:</div>
<el-countdown :value="time" @finish="timeFinish" />
@@ -7,23 +9,26 @@
</template>
<script setup>
-import {ref} from 'vue';
-import dayjs from 'dayjs';
-import { storeToRefs } from 'pinia';
-import { Timer } from '@element-plus/icons-vue';
-import { useExamStore } from '@/store/index.js';
+import { ref, defineExpose } from "vue";
+import dayjs from "dayjs";
+import { storeToRefs } from "pinia";
+import { Timer } from "@element-plus/icons-vue";
+import { useExamStore } from "@/store/index.js";
const examStore = useExamStore();
const { examInfo } = storeToRefs(examStore);
-const emit = defineEmits(['timeOut']);
+const emit = defineEmits(["timeOut"]);
-const time = ref(dayjs().valueOf() + examInfo.value.examTime * 1000 * 60);
+const time = ref(dayjs().valueOf() + examInfo.value.suggestTime * 1000 * 60);
const timeFinish = () => {
- emit('timeOut');
-}
-
+ emit("timeOut");
+};
+const addTime = (data) => {
+ time.value = time.value + data * 1000;
+};
+defineExpose({ addTime });
</script>
<style lang="scss" scoped>
@@ -32,10 +37,9 @@
border-radius: 100px;
padding: 10px 0;
background-color: rgba($color: #86d7f7, $alpha: 0.3);
-
}
:deep(.el-statistic__number) {
color: #ffffff;
}
-</style>
\ No newline at end of file
+</style>
--
Gitblit v1.8.0