|
@@ -49,15 +49,25 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
-import { computed,ref } from "vue";
|
|
|
|
|
|
+import { computed,ref,onMounted } from "vue";
|
|
import { useStore } from "vuex";
|
|
import { useStore } from "vuex";
|
|
import logo from "@/assets/logo.png";
|
|
import logo from "@/assets/logo.png";
|
|
|
|
+import {timestampToTime} from '@/js/lindex.js'
|
|
|
|
+
|
|
const title = "灾情推演软件";
|
|
const title = "灾情推演软件";
|
|
const activeIndex = ref('1')
|
|
const activeIndex = ref('1')
|
|
const activeIndex2 = ref('1')
|
|
const activeIndex2 = ref('1')
|
|
const handleSelect = (key,keyPath) => {
|
|
const handleSelect = (key,keyPath) => {
|
|
console.log(key, keyPath)
|
|
console.log(key, keyPath)
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+onMounted(() => {
|
|
|
|
+
|
|
|
|
+const timestamp = new Date().getTime();
|
|
|
|
+console.log(timestamp);
|
|
|
|
+ timestampToTime(1709199092000)
|
|
|
|
+});
|
|
|
|
+
|
|
</script>
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.ve_menu_logo {
|
|
.ve_menu_logo {
|