ปรับ การ Download ไฟล์ต้นฉบับ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-01-05 14:24:54 +07:00
parent 36ea205624
commit c118cb0e1f
6 changed files with 55 additions and 488 deletions

View file

@ -1,12 +1,14 @@
<script setup lang="ts">
import { ref, watch } from "vue";
import { useRouter } from "vue-router";
import { useQuasar } from "quasar";
/** import Components*/
import DialogHeader from "@/components/DialogHeader.vue";
/** import*/
import { useCounterMixin } from "@/stores/mixin";
import { useEvaluateStore } from "@/modules/06_evaluate/store";
import { onMounted, ref, watch } from "vue";
const router = useRouter();
const $q = useQuasar();
@ -30,13 +32,6 @@ const props = defineProps({
});
const step = ref<number>(1);
function nextStep() {
step.value++;
}
function prevStep() {
step.value--;
}
function onCklicNext() {
dialogConfirm(
@ -53,22 +48,6 @@ function onCklicNext() {
);
}
const thumbStyle = ref<any>({
right: "4px",
borderRadius: "5px",
backgroundColor: "var(--q-primary)",
width: "5px",
opacity: 0.75,
});
const barStyle = ref<any>({
right: "2px",
borderRadius: "9px",
backgroundColor: "var(--q-primary)",
width: "9px",
opacity: 0.2,
});
watch(props, () => {
step.value = 1;
});