first commit

This commit is contained in:
ytc1012
2025-11-18 18:38:53 +08:00
commit bea9db4488
1582 changed files with 335346 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
import { _decorator, Component, ScrollView } from 'cc';
const { ccclass, property } = _decorator;
import GeneralCommand from "../../general/GeneralCommand";
import { GeneralConfig } from "../../general/GeneralProxy";
import { EventMgr } from '../../utils/EventMgr';
@ccclass('GeneralRosterListLogic')
export default class GeneralRosterListLogic extends Component {
@property(ScrollView)
scrollView:ScrollView = null;
protected onEnable(): void {
this.initGeneralCfg();
}
protected onClickClose(): void {
this.node.active = false;
EventMgr.emit("open_general");
}
protected initGeneralCfg():void{
let cfgs = GeneralCommand.getInstance().proxy.getGeneralAllCfg();
var arr = Array.from(cfgs.values());
arr.sort(this.sortStar);
var comp = this.scrollView.node.getComponent("ListLogic");
comp.setData(arr);
}
protected sortStar(a: GeneralConfig, b: GeneralConfig): number {
if(a.star < b.star){
return 1;
}else if(a.star == b.star){
return a.cfgId - b.cfgId;
}else{
return -1;
}
}
}