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

@@ -44,13 +44,13 @@ _.router.post('/allOrder', async function(req, res, next) {
res.json({
status: 200,
message: '请求成功',
result: _.rsa.PrivateKeyEncryption(allOrder)
result: allOrder
});
} else {
res.json({
status: 200,
message: '没有订单',
result: _.rsa.PrivateKeyEncryption({})
result: {}
});
}
@@ -93,7 +93,7 @@ _.router.post('/buyOrder', async function(req, res, next) {
res.json({
status: 200,
message: '购买成功',
result: _.rsa.PrivateKeyEncryption({})
result: {}
});
});