Explorar o código

积分项目排序

charles_c hai 5 meses
pai
achega
9c5c23f2e8

+ 5 - 7
src/app/api/exchange-items/route.js

@@ -5,16 +5,13 @@ import { setCORSHeaders, handleError } from "../../lib/apiUtils";
 
 export async function GET(request) {
   await dbConnect();
-  console.log("GET请求已接收");
   try {
-    const isFromFrontend = request.headers.get("x-from-frontend") === "true";
-
-    console.log("isFromFrontend", isFromFrontend);
-
     let exchangeItems;
     let message;
 
-    exchangeItems = await ExchangeItem.find();
+    exchangeItems = await ExchangeItem.find().sort({
+      order: 1,
+    });
     message =
       exchangeItems.length > 0
         ? "成功获取所有兑换项目"
@@ -40,13 +37,14 @@ export async function GET(request) {
 export async function POST(request) {
   await dbConnect();
   try {
-    const { type, logo, title, points } = await request.json();
+    const { type, logo, title, points, order } = await request.json();
 
     const newExchangeItem = new ExchangeItem({
       type,
       logo,
       title,
       points,
+      order,
     });
     await newExchangeItem.save();
     const response = NextResponse.json(

+ 4 - 4
src/app/login/page.js

@@ -46,11 +46,11 @@ export default function LoginPage() {
         <title>登录</title>
       </Head>
 
-      <div className="w-full max-w-md mx-auto">
-        <h2 className="mt-6 text-center text-2xl sm:text-3xl font-extrabold text-gray-900">
-          登录您的账户
+      {/* <div className="w-full max-w-md mx-auto">
+        <h2 className="text-center text-xl font-extrabold text-gray-900">
+          登录
         </h2>
-      </div>
+      </div> */}
 
       <div className="mt-8 w-full max-w-md mx-auto">
         <div className="bg-white py-8 px-4 shadow sm:rounded-lg sm:px-10">

+ 1 - 0
src/app/models/ExchangeItem.js

@@ -9,6 +9,7 @@ const ExchangeItemSchema = new mongoose.Schema(
     logo: { type: String },
     title: { type: String },
     points: { type: Number },
+    order: { type: Number, default: 0 },
   },
   { timestamps: true }
 );

+ 2 - 2
src/app/register/page.js

@@ -83,11 +83,11 @@ export default function RegisterPage() {
         <title>注册</title>
       </Head>
 
-      <div className="w-full max-w-md mx-auto">
+      {/* <div className="w-full max-w-md mx-auto">
         <h2 className="mt-6 text-center text-2xl sm:text-3xl font-extrabold text-gray-900">
           创建新账户
         </h2>
-      </div>
+      </div> */}
 
       <div className="mt-8 w-full max-w-md mx-auto">
         <div className="bg-white py-8 px-4 shadow sm:rounded-lg sm:px-10">

+ 2 - 2
src/app/reset-password/page.js

@@ -110,11 +110,11 @@ export default function ResetPasswordPage() {
         <title>重置密码</title>
       </Head>
 
-      <div className="w-full max-w-md mx-auto">
+      {/* <div className="w-full max-w-md mx-auto">
         <h2 className="mt-6 text-center text-2xl sm:text-3xl font-extrabold text-gray-900">
           重置密码
         </h2>
-      </div>
+      </div> */}
 
       <div className="mt-8 w-full max-w-md mx-auto">
         <div className="bg-white py-8 px-4 shadow sm:rounded-lg sm:px-10">