This commit is contained in:
2025-02-19 00:34:51 +08:00
parent cf1cc83547
commit 2f3ffe2a34
33 changed files with 3180 additions and 832 deletions

View File

@@ -32,7 +32,7 @@ _.router.post('/index', async function (req, res, next) {
res.json({
status: 200,
message: '请求成功',
result: _.rsa.PrivateKeyEncryption(data)
result: data
});
});
@@ -92,7 +92,7 @@ _.router.post('/banner', async function (req, res, next) {
res.json({
status: 200,
message: '请求成功',
result: _.rsa.PrivateKeyEncryption(banner)
result: banner
});
});
@@ -128,7 +128,7 @@ _.router.post('/recommend', async function (req, res, next) {
res.json({
status: 200,
message: '请求成功',
result: _.rsa.PrivateKeyEncryption(recommend)
result: recommend
});
});
@@ -165,7 +165,7 @@ _.router.post('/info', async function (req, res, next) {
res.json({
status: 200,
message: '请求成功',
result: _.rsa.PrivateKeyEncryption(data)
result: data
});
});
@@ -202,7 +202,7 @@ _.router.post('/activity', async function (req, res, next) {
res.json({
status: 200,
message: '请求成功',
result: _.rsa.PrivateKeyEncryption(data)
result: data
});
});
@@ -240,7 +240,7 @@ _.router.post('/search', async function (req, res, next) {
res.json({
status: 200,
message: '请求成功',
result: _.rsa.PrivateKeyEncryption(data)
result: data
});
});