|
@@ -1,11 +1,11 @@
|
|
|
<script setup>
|
|
<script setup>
|
|
|
import dayjs from "dayjs";
|
|
import dayjs from "dayjs";
|
|
|
import { computed, onMounted, onUnmounted, ref } from "vue";
|
|
import { computed, onMounted, onUnmounted, ref } from "vue";
|
|
|
-import { WindowNotesStore } from "@/components/WindowQingXiCheAndQv/store/WindowNotesStore.js";
|
|
|
|
|
|
|
+import { WindowTimeStore } from "@/components/WindowQingXiCheAndQv/store/WindowTimeStore.js";
|
|
|
import { ComVal } from "../ThreeWorldEventQingXiCheAndQv/common/ComVal.js";
|
|
import { ComVal } from "../ThreeWorldEventQingXiCheAndQv/common/ComVal.js";
|
|
|
import { WindowEvent } from "../WindowQingXiCheAndQv/js/WindowEvent.js";
|
|
import { WindowEvent } from "../WindowQingXiCheAndQv/js/WindowEvent.js";
|
|
|
|
|
|
|
|
-WindowEvent.find().ComStore["WindowNotesStore"] = WindowNotesStore;
|
|
|
|
|
|
|
+WindowEvent.find().ComStore["WindowTimeStore"] = WindowTimeStore;
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
|
|
|
|
|
@@ -14,10 +14,14 @@ onMounted(() => {
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
<template>
|
|
|
- <div class="WindowNotes">
|
|
|
|
|
|
|
+ <div class="WindowTime">
|
|
|
|
|
|
|
|
- <div v-if="WindowNotesStore().obj.viewOpen == true" class="main">
|
|
|
|
|
|
|
+ <!-- <div v-if="WindowNotesStore().obj.viewOpen == true" class="main">
|
|
|
|
|
|
|
|
|
|
+ </div> -->
|
|
|
|
|
+
|
|
|
|
|
+ <div class="main">
|
|
|
|
|
+
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
@@ -57,47 +61,15 @@ onMounted(() => {
|
|
|
|
|
|
|
|
.main {
|
|
.main {
|
|
|
position: fixed;
|
|
position: fixed;
|
|
|
- width: 100%;
|
|
|
|
|
- height: 100%;
|
|
|
|
|
- top: 0px;
|
|
|
|
|
- left: 0px;
|
|
|
|
|
- background-color: #00221899;
|
|
|
|
|
|
|
+ width: 10rem;
|
|
|
|
|
+ height: 4.28rem;
|
|
|
|
|
+ top: 11rem;
|
|
|
|
|
+ right: 22rem;
|
|
|
|
|
+ background-image: url("./img/exam/time.webp");
|
|
|
|
|
+ background-position: center;
|
|
|
|
|
+ background-size: 100% 100%;
|
|
|
|
|
|
|
|
- // .content {
|
|
|
|
|
- // position: fixed;
|
|
|
|
|
- // width: 103rem * @proportion;
|
|
|
|
|
- // height: 58.64rem * @proportion;
|
|
|
|
|
- // top: 50%;
|
|
|
|
|
- // left: 50%;
|
|
|
|
|
- // margin: -29.32rem * @proportion 0px 0px -51.5rem * @proportion;
|
|
|
|
|
- // background-image: url("./img/exam/bg.webp");
|
|
|
|
|
- // background-position: center;
|
|
|
|
|
- // background-size: 100% 100%;
|
|
|
|
|
-
|
|
|
|
|
- // .KaoHeShuoMing {
|
|
|
|
|
- // position: absolute;
|
|
|
|
|
- // width: 17.21rem * @proportion;
|
|
|
|
|
- // top: 3.5rem * @proportion;
|
|
|
|
|
- // left: 50%;
|
|
|
|
|
- // margin: 0px 0px 0px -8.605rem * @proportion;
|
|
|
|
|
- // }
|
|
|
|
|
-
|
|
|
|
|
- // .txtList {
|
|
|
|
|
- // position: absolute;
|
|
|
|
|
- // top: 10rem * @proportion;
|
|
|
|
|
- // left: 10rem * @proportion;
|
|
|
|
|
- // right: 10rem * @proportion;
|
|
|
|
|
- // bottom: 5rem * @proportion;
|
|
|
|
|
-
|
|
|
|
|
- // .txt {
|
|
|
|
|
- // font-weight: 400;
|
|
|
|
|
- // font-size: 1.64rem * @proportion;
|
|
|
|
|
- // color: #EBEAE7;
|
|
|
|
|
- // }
|
|
|
|
|
-
|
|
|
|
|
- // }
|
|
|
|
|
|
|
|
|
|
- // }
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|