@@ -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>