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