bc38d36c-bbc1-4c51-908f-385c2d389d80.js.map 1.53 KB
{"version":3,"sources":["assets/script/cooperation/script/CooperationClassBase.ts"],"names":[],"mappings":";;;;;;;AAAA,IAAiB,oBAAoB,CASpC;AATD,WAAiB,oBAAoB;IACjC,oBAAoB;IACP,qCAAgB,GAAG,mFAAmF,CAAC;IACpH,wBAAwB;IACX,yCAAoB,GAAG,uFAAuF,CAAC;IAC5H,YAAY;IACC,gCAAW,GAAG,cAAc,CAAC;IAC1C,cAAc;IACD,6BAAQ,GAAG,OAAO,CAAC;AACpC,CAAC,EATgB,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QASpC","file":"","sourceRoot":"/","sourcesContent":["export namespace CooperationClassBase {\n    /**dev合作资源oss存放路径 */\n    export const COO_OSS_PATH_DEV = `https://weixingame.icesimba.com/weixingame/icesimba/dev/cooperation/wechat/games/`;\n    /**release合作资源oss存放路径 */\n    export const COO_OSS_PATH_RELEASE = `https://weixingame.icesimba.com/weixingame/icesimba/release/cooperation/wechat/games/`;\n    /**配置文件路径 */\n    export const CONFIG_PATH = \"/config.json\";\n    /**图片资源文件路径 */\n    export const IMG_PATH = \"/img/\";\n}\n\n/**合作小游戏数据模型 */\nexport interface CooperationItemDataModel {\n    /**小游戏AppID */\n    appId: string;\n    /**小游戏名称 */\n    appName: string;\n    /**小游戏图标 */\n    icon: string;\n    /**顺序 */\n    index:number;\n    /**是否展示小游戏名称 */\n    showAppName?: boolean;\n    /**是否展示多少玩家正在玩 */\n    showPlayingUser?: boolean;\n    /**正在玩的玩家数量随机值下限 */\n    userMin?: number;\n    /**正在玩的玩家数量随机值上限 */\n    userMax?: number;\n    /**Label的字体颜色 */\n    labelColor?: string;\n}"]}