HuCheng 2 gadi atpakaļ
vecāks
revīzija
7ab8685957
1 mainītis faili ar 6 papildinājumiem un 8 dzēšanām
  1. 6 8
      src/login/index.vue

+ 6 - 8
src/login/index.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="h-full flex justify-center items-center">
     <n-card
-      class="w-1/3"
+      class="w-1/4"
       title="冷链验证报告生成系统"
       :header-style="{
         textAlign: 'center',
@@ -36,14 +36,12 @@
 const model = reactive({
   username: "",
   password: "",
-  selectValue: "",
+  selectValue: "管理员登录",
 });
-const generalOptions = ["groode", "veli good", "emazing", "lidiculous"].map(
-  (v) => ({
-    label: v,
-    value: v,
-  })
-);
+const generalOptions = ["管理员登录", "用户登录"].map((v) => ({
+  label: v,
+  value: v,
+}));
 </script>
 
 <style lang="scss" scoped></style>