Explorar el Código

feat: add resolutions file

guohao hace 3 meses
padre
commit
496756242d
Se han modificado 2 ficheros con 48 adiciones y 0 borrados
  1. 28 0
      src/pages/resolutions/index.vue
  2. 20 0
      src/pages/resolutions/resolutions.vue

+ 28 - 0
src/pages/resolutions/index.vue

@@ -0,0 +1,28 @@
+<template>
+  <StPage>
+    <div class="resolutions card">
+      <img class="resolutions-bg" src="@/assets/images/welcome.png" alt="welcome" />
+    </div>
+  </StPage>
+</template>
+
+<route lang="yaml">
+meta:
+  title: Resolutions
+  isAffix: true
+</route>
+
+<style lang="scss" scoped>
+.home {
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  width: 100%;
+  height: 100%;
+  .home-bg {
+    width: 70%;
+    max-width: 1200px;
+    margin-bottom: 20px;
+  }
+}
+</style>

+ 20 - 0
src/pages/resolutions/resolutions.vue

@@ -0,0 +1,20 @@
+<template>
+  <div class="h-1000px">
+    <!-- 布局 -->
+    <div>Resolutions</div>
+  </div>
+</template>
+
+<route lang="yaml">
+meta:
+  title: Resolutions
+  isAffix: false
+</route>
+
+<script lang="ts" setup name="Resolutions">
+// 逻辑代码
+</script>
+
+<style lang="scss" scoped>
+// 样式
+</style>