Compare commits

...

2 Commits

Author SHA1 Message Date
xichaoyin
9e4c1995b7 Merge remote-tracking branch 'origin/feature/huangqijiuguan' into release 2024-01-12 18:24:57 +08:00
xichaoyin
aca0019d90 feat:黄芪酒馆招募次数监控 2024-01-12 18:19:43 +08:00

View File

@ -3,6 +3,7 @@ import { ReqZhaoMu, ResZhaoMu } from "../../../shared/protocols/event/huangqijiu
import HQJGFun from "./fun";
import { PlayerFun } from "../../../public/player";
import { PublicShared } from "../../../shared/public/public";
import { ActionLog } from "../../../public/actionLog/actionLog";
export default async function (call: ApiCall<ReqZhaoMu, ResZhaoMu>) {
let hd = await HQJGFun.HdInfo(call, call.req.hdid);
@ -48,4 +49,6 @@ export default async function (call: ApiCall<ReqZhaoMu, ResZhaoMu>) {
call.succ({ data: mydata, prize: prize })
G.emit("Class_task_159", 'Class_task_159', call, 1, 0);
ActionLog.addDayLog(call.uid, { key: "huangqijiuguan/ZhaoMu", val: call.req.num });
}