目录结构调整

This commit is contained in:
2026-02-04 23:47:45 +08:00
parent 6938c911c3
commit 6b22238c6e
8780 changed files with 15333 additions and 574 deletions

View File

@@ -0,0 +1,30 @@
///////////////////////////////////////////////////
/////// cls_youle_sales_import: 输入接口 ///////
///////////////////////////////////////////////////
var cls_youle_sales_import = cls_youle_sales_import || {
new: function() {
var imp = {};
//玩家购买房卡
imp.player_buy_roomcard = function(agentid, playerid, roomcard, amount){
youle_agent.export.buy_topup(agentid, playerid, 1, roomcard, amount);
}
//玩家充卡
imp.player_topup_roomcard = function(agentid, playerid, roomcard, amount){
youle_agent.export.buy_topup(agentid, playerid, 2, roomcard, amount);
}
//玩家充星星
imp.player_topup_bean = function(agentid, playerid, bean, amount){
youle_agent.export.buy_topup_bean(agentid, playerid, 2, bean, amount);
}
return imp;
}
}
//数据异常处理
youle_sales.import = cls_youle_sales_import.new();

File diff suppressed because it is too large Load Diff