+
+
+
+
+
+
+
- Ench admin
+ Ench admin
@@ -38,6 +42,7 @@ import type { MenuOption } from 'naive-ui';
import { h, ref } from 'vue';
import { useRouter } from 'vue-router';
import { Icon } from '@iconify/vue';
+import Logo from '../components/logo.vue';
const router = useRouter();
const collapsed = ref(false);
@@ -46,7 +51,7 @@ function renderIcon(icon: string) {
return () => h(Icon, { icon });
}
const activeKey = ref('');
-const handleClickMenu = (key: string, item: MenuOption) => {
+const handleClickMenu = (key: string, _item: MenuOption) => {
router.push(key);
};
const menuOptions: MenuOption[] = [
diff --git a/src/layouts/components/logo.vue b/src/layouts/components/logo.vue
new file mode 100644
index 0000000..bd162f7
--- /dev/null
+++ b/src/layouts/components/logo.vue
@@ -0,0 +1,21 @@
+
+
+
+ {{ props.title }}
+
+
+
+
+
+
diff --git a/src/plugins/assets.ts b/src/plugins/assets.ts
index 724607d..0058504 100644
--- a/src/plugins/assets.ts
+++ b/src/plugins/assets.ts
@@ -1,6 +1,7 @@
// 全局引入的静态资源
import 'uno.css';
import '@/styles/css/index.css';
+import 'virtual:svg-icons-register';
export default function setupAssets() {
//
diff --git a/src/styles/css/index.css b/src/styles/css/index.css
index 69b897a..1c4aecc 100644
--- a/src/styles/css/index.css
+++ b/src/styles/css/index.css
@@ -1,4 +1,5 @@
@import './reset.css';
+@import './transition.css';
html,
body,
diff --git a/src/styles/css/transition.css b/src/styles/css/transition.css
new file mode 100644
index 0000000..5c77cf1
--- /dev/null
+++ b/src/styles/css/transition.css
@@ -0,0 +1,76 @@
+/* fade */
+.fade-enter-active,
+.fade-leave-active {
+ transition: opacity 0.3s ease-in-out;
+}
+.fade-enter-from,
+.fade-leave-to {
+ opacity: 0;
+}
+
+/* fade-slide */
+.fade-slide-leave-active,
+.fade-slide-enter-active {
+ transition: all 0.3s;
+}
+.fade-slide-enter-from {
+ opacity: 0;
+ transform: translateX(-30px);
+}
+.fade-slide-leave-to {
+ opacity: 0;
+ transform: translateX(30px);
+}
+
+/* fade-bottom */
+.fade-bottom-enter-active,
+.fade-bottom-leave-active {
+ transition: opacity 0.25s, transform 0.3s;
+}
+.fade-bottom-enter-from {
+ opacity: 0;
+ transform: translateY(-10%);
+}
+.fade-bottom-leave-to {
+ opacity: 0;
+ transform: translateY(10%);
+}
+
+/* fade-scale */
+.fade-scale-leave-active,
+.fade-scale-enter-active {
+ transition: all 0.28s;
+}
+.fade-scale-enter-from {
+ opacity: 0;
+ transform: scale(1.2);
+}
+.fade-scale-leave-to {
+ opacity: 0;
+ transform: scale(0.8);
+}
+
+/* zoom-fade */
+.zoom-fade-enter-active,
+.zoom-fade-leave-active {
+ transition: transform 0.2s, opacity 0.3s ease-out;
+}
+.zoom-fade-enter-from {
+ opacity: 0;
+ transform: scale(0.92);
+}
+.zoom-fade-leave-to {
+ opacity: 0;
+ transform: scale(1.06);
+}
+
+/* zoom-out */
+.zoom-out-enter-active,
+.zoom-out-leave-active {
+ transition: opacity 0.1s ease-in-out, transform 0.15s ease-out;
+}
+.zoom-out-enter-from,
+.zoom-out-leave-to {
+ opacity: 0;
+ transform: scale(0);
+}
diff --git a/src/views/login/index.vue b/src/views/login/index.vue
index 3a4d310..e4dfab6 100644
--- a/src/views/login/index.vue
+++ b/src/views/login/index.vue
@@ -40,7 +40,7 @@ import { FormInst } from 'naive-ui';
import { useRouter } from 'vue-router';
import { ref } from 'vue';
import { Icon } from '@iconify/vue';
-// import IconParkAdProduct from '~icons/icon-park/ad-product';
+
const router = useRouter();
const swiperList = ref([
'https://images.unsplash.com/photo-1659991689791-db84493f8544?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=686&q=80',