保存进度

This commit is contained in:
2025-10-24 00:36:24 +08:00
parent 7ea8e7ab4d
commit 44f26dd330
8 changed files with 231 additions and 30 deletions

View File

@@ -9,6 +9,6 @@
*/
@import url("./public/reset.scss");
@import url("./public/normalize.scss");
@import url("../font/fonts.css");
@import url("./public/mixin.scss");
@import url("../font/fonts.css");
// @import url("./public/color.scss");

View File

@@ -73,7 +73,7 @@ Copyright © CPIC All rights reserved
</template>
<script lang="js">
// @ts-expect-error 之后再补充类型文件
import { hasOnlyChild } from "../../../router/index";
import { hasOnlyChild } from "../../../router/index.ts";
import { useRoute, useRouter } from "vue-router";
import { computed } from "vue";
@@ -96,8 +96,11 @@ export default {
</script>
<style lang="scss" scoped>
@import "@/assets/css/public/variables.scss";
@import "@/assets/css/public/mixin.scss";
.sidebar-wrapper {
// @include no-select;
@include no-select;
-webkit-touch-callout: none;
-moz-user-select: none;

View File

@@ -1,16 +1,13 @@
/* html {
background-image: url("@/assets/img/bg/bg_01.jpg");
background-attachment: fixed;
background-size: contain;
} */
body {
body
{
width: 100vw;
height: 100vh;
padding: 0px;
margin: 0px;
overflow: hidden;
// @include no-select
-webkit-touch-callout: none;
-moz-user-select: none;
/*火狐*/
@@ -21,6 +18,4 @@ body {
-khtml-user-select: none;
/*早期浏览器*/
user-select: none;
// @include no-select;
}

View File

@@ -0,0 +1,32 @@
<!--
author: Kane Wang <wangkane@qq.com>
date: 2025-10-23 21:40:24
component: RegulatoryManagement
Copyright © CPIC All rights reserved
-->
<template>
<div class="wrapper">
111
</div>
</template>
<script lang="ts">
export default {
name: "RegulatoryManagement",
setup()
{
const ui = {};
return { ui, };
},
};
</script>
<style lang="scss" scoped>
@import "@/assets/css/index.scss";
.wrapper {
@include no-select;
margin: 5px;
border: 1px solid red;
}
</style>