refactor(web):改造成vue工程

This commit is contained in:
kubbo
2025-09-30 17:43:06 +08:00
parent f140c92ddd
commit 39f7598b02
1777 changed files with 878 additions and 2238 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,411 @@
var __reflect = (this && this.__reflect) || function (p, c, t) {
p.__class__ = c, t ? t.push(c) : t = [c], p.__types__ = p.__types__ ? t.concat(p.__types__) : t;
};
var __extends = this && this.__extends || function __extends(t, e) {
function r() {
this.constructor = t;
}
for (var i in e)
e.hasOwnProperty(i) && (t[i] = e[i]);
r.prototype = e.prototype, t.prototype = new r();
};
var JSONParseClass = /** @class */ (function () {
function JSONParseClass() {
this.skinClass = {};
this.euiNormalizeNames = {
"$eBL": "eui.BitmapLabel",
"$eB": "eui.Button",
"$eCB": "eui.CheckBox",
"$eC": "eui.Component",
"$eDG": "eui.DataGroup",
"$eET": "eui.EditableText",
"$eG": "eui.Group",
"$eHL": "eui.HorizontalLayout",
"$eHSB": "eui.HScrollBar",
"$eHS": "eui.HSlider",
"$eI": "eui.Image",
"$eL": "eui.Label",
"$eLs": "eui.List",
"$eP": "eui.Panel",
"$ePB": "eui.ProgressBar",
"$eRB": "eui.RadioButton",
"$eRBG": "eui.RadioButtonGroup",
"$eRa": "eui.Range",
"$eR": "eui.Rect",
"$eRAl": "eui.RowAlign",
"$eS": "eui.Scroller",
"$eT": "eui.TabBar",
"$eTI": "eui.TextInput",
"$eTL": "eui.TileLayout",
"$eTB": "eui.ToggleButton",
"$eTS": "eui.ToggleSwitch",
"$eVL": "eui.VerticalLayout",
"$eV": "eui.ViewStack",
"$eVSB": "eui.VScrollBar",
"$eVS": "eui.VSlider",
"$eSk": "eui.Skin"
};
}
JSONParseClass.prototype.setData = function (data) {
if (!this.json) {
this.json = data;
this.parseSkinMap(this.json);
}
else {
this.parseSkinMap(data);
for (var a in data) {
this.json[a] = data[a];
}
}
};
JSONParseClass.prototype.generateSkinClass = function (skinData, className, superName) {
if (!skinData)
return null;
var paths = superName.split(".");
var target = window;
for (var _i = 0, paths_1 = paths; _i < paths_1.length; _i++) {
var p = paths_1[_i];
target = target[p];
}
function __SkinClass() {
target.call(this);
window["JSONParseClass"].create(className, this);
}
__extends(__SkinClass, target);
__reflect(__SkinClass, className, [superName]);
return __SkinClass;
};
JSONParseClass.prototype.parseSkinMap = function (skinMap) {
var skinResult = {};
for (var exml in skinMap) {
var skinData = skinMap[exml];
if (!skinData)
continue;
var paths = exml.split(".");
var target = window;
for (var _i = 0, paths_2 = paths; _i < paths_2.length; _i++) {
var p = paths_2[_i];
var parent = target;
if (p !== paths[paths.length - 1]) {
target = target[p];
if (target == undefined) {
target = {};
parent[p] = target;
}
}
}
var superName = this.euiNormalizeNames[skinData["$sC"]] == undefined ? skinData["$sC"] : this.euiNormalizeNames[skinData["$sC"]];
skinResult[exml] = target[paths[paths.length - 1]] = this.generateSkinClass(skinData, exml, superName);
if (skinMap[exml]["$path"]) {
generateEUI2["paths"][skinMap[exml]["$path"]] = skinResult[exml];
}
}
return skinResult;
};
JSONParseClass.prototype.create = function (skinName, target) {
if (!this.json) {
console.log("Missing json defined by eui resource, please modify the theme adapter");
console.log("缺少eui资源定义的json请修改主题适配器");
return;
}
//console.log('skinName=' + skinName);
/** 先解析对应名字的的 */
this.target = target;
this.skinName = skinName;
this.skinClass = this.json[skinName];
//开始生成
this.applyBase();
this.applySkinParts();
this.applyState();
this.applyBinding();
//skinParts 只能最后赋值在comp中引用问题
if (this.skinClass["$sP"] == undefined)
this.target["skinParts"] = [];
else
this.target["skinParts"] = this.skinClass["$sP"];
};
JSONParseClass.prototype.applySkinParts = function () {
if (this.skinClass["$sP"] == undefined)
return;
for (var _i = 0, _a = this.skinClass["$sP"]; _i < _a.length; _i++) {
var component = _a[_i];
if (this.target[component] == undefined)
this.createElementContentOrViewport(component);
}
};
JSONParseClass.prototype.applyBase = function () {
if (this.skinClass["$bs"] == undefined)
return;
this.addCommonProperty("$bs", this.target);
};
JSONParseClass.prototype.createElementContentOrViewport = function (component) {
var result;
var typeStr = this.getNormalizeEuiName(this.skinClass[component].$t);
if (typeStr == "egret.tween.TweenGroup") {
result = this.creatsEgretTweenGroup(component);
}
else {
/** 有可能对象是从外面一定义的皮肤 */
var type_1 = egret.getDefinitionByName(typeStr);
this.$createNewObject(function () {
result = new type_1();
});
this.addCommonProperty(component, result);
}
this.target[component] = result;
return result;
};
/**
* 生成单位有可能会跳出当前皮肤所以统一维护target和skin
* @param callback 创建对象的真实逻辑
*/
JSONParseClass.prototype.$createNewObject = function (callback) {
var skinName = this.skinName;
var target = this.target;
callback();
this.skinName = skinName;
this.skinClass = this.json[this.skinName];
this.target = target;
};
/**
* 生成对应的缓动组
* @param component 名字索引
*/
JSONParseClass.prototype.creatsEgretTweenGroup = function (component) {
var result = this.createTypeObject(component);
var items = [];
for (var _i = 0, _a = this.skinClass[component]["items"]; _i < _a.length; _i++) {
var item = _a[_i];
items.push(this.createEgretTweenItem(item));
}
result["items"] = items;
return result;
};
/**
* 生成对应的缓动单位
* @param tweenItem 名字索引
*/
JSONParseClass.prototype.createEgretTweenItem = function (tweenItem) {
var _this = this;
var result = this.createTypeObject(tweenItem);
var paths = [];
var _loop_1 = function (prop) {
var property = this_1.skinClass[tweenItem][prop];
if (prop == "$t" || prop == "target") {
}
else if (prop == "paths") {
for (var _i = 0, property_1 = property; _i < property_1.length; _i++) {
var path = property_1[_i];
paths.push(this_1.createSetOrTo(path));
}
}
else if (prop == "target") {
this_1.$createNewObject(function () {
result[prop] = _this.createElementContentOrViewport(property);
_this.target[property] = result[prop];
});
}
else {
result[prop] = property;
}
};
var this_1 = this;
for (var prop in this.skinClass[tweenItem]) {
_loop_1(prop);
}
result["paths"] = paths;
this.target[tweenItem] = result;
return result;
};
JSONParseClass.prototype.createSetOrTo = function (key) {
var result = this.createTypeObject(key);
for (var prop in this.skinClass[key]) {
var property = this.skinClass[key][prop];
if (prop == "$t" || prop == "target") {
}
else if (prop == "props") {
result[prop] = this.createObject(property);
this.target[property] = result[prop];
}
else {
result[prop] = property;
}
}
return result;
};
JSONParseClass.prototype.createObject = function (name) {
var result = {};
for (var prop in this.skinClass[name]) {
if (prop == "$t" || prop == "target") {
}
else {
result[prop] = this.skinClass[name][prop];
}
}
return result;
};
JSONParseClass.prototype.addCommonProperty = function (componentName, target) {
var eleC;
var sId;
var _loop_2 = function (prop) {
var property = this_2.skinClass[componentName][prop];
if (prop == "$t") {
}
else if (prop == "layout") {
target[prop] = this_2.createLayout(property);
}
else if (prop == "$eleC") {
eleC = property;
}
else if (prop == "$sId") {
sId = property;
}
else if (prop == "scale9Grid") {
target[prop] = this_2.getScale9Grid(property);
}
else if (prop == "skinName") {
this_2.$createNewObject(function () {
target[prop] = property;
});
}
else if (prop == "itemRendererSkinName") {
this_2.$createNewObject(function () {
var dirPath = property.split(".");
var t = window;
for (var _i = 0, dirPath_1 = dirPath; _i < dirPath_1.length; _i++) {
var p = dirPath_1[_i];
t = t[p];
}
target[prop] = t;
});
}
else if (prop == "itemRenderer") {
target[prop] = egret.getDefinitionByName(property);
}
else if (prop == "dataProvider") {
target[prop] = this_2.createDataProvider(property);
}
else if (prop == "viewport") {
target[prop] = this_2.createElementContentOrViewport(property);
}
else {
target[prop] = property;
}
};
var this_2 = this;
for (var prop in this.skinClass[componentName]) {
_loop_2(prop);
}
var ele = [];
if (eleC && eleC.length > 0) {
for (var _i = 0, eleC_1 = eleC; _i < eleC_1.length; _i++) {
var element = eleC_1[_i];
var e = this.createElementContentOrViewport(element);
ele.push(e);
}
}
target["elementsContent"] = ele;
if (sId && sId.length > 0) {
for (var _a = 0, sId_1 = sId; _a < sId_1.length; _a++) {
var element = sId_1[_a];
this.createElementContentOrViewport(element);
}
}
return target;
};
JSONParseClass.prototype.createLayout = function (componentName) {
var result = this.createTypeObject(componentName);
var component = this.skinClass[componentName];
for (var property in component) {
if (property !== "$t") {
result[property] = component[property];
}
}
this.target[componentName] = result;
return result;
};
JSONParseClass.prototype.applyState = function () {
if (this.skinClass["$s"] == undefined)
return;
var states = [];
for (var state in this.skinClass["$s"]) {
var setProperty = [];
var tempState = this.skinClass["$s"][state];
if (tempState["$saI"]) {
for (var _i = 0, _a = tempState["$saI"]; _i < _a.length; _i++) {
var property = _a[_i];
setProperty.push(new eui.AddItems(property["target"], property["property"], property["position"], property["relativeTo"]));
}
}
if (tempState["$ssP"]) {
for (var _b = 0, _c = tempState["$ssP"]; _b < _c.length; _b++) {
var property = _c[_b];
if (property["name"]) {
var value = property["value"];
if (property["name"] == "scale9Grid") {
value = this.getScale9Grid(property["value"]);
}
setProperty.push(new eui.SetProperty(property["target"], property["name"], value));
}
else {
setProperty.push(new eui.SetStateProperty(this.target, property["templates"], property["chainIndex"], this.target[property["target"]], property["property"]));
}
}
}
states.push(new eui.State(state, setProperty));
}
this.target["states"] = states;
};
JSONParseClass.prototype.applyBinding = function () {
if (this.skinClass["$b"] == undefined)
return;
for (var _i = 0, _a = this.skinClass["$b"]; _i < _a.length; _i++) {
var bindingDate = _a[_i];
if (bindingDate["$bc"] !== undefined) {
eui.Binding.$bindProperties(this.target, bindingDate["$bd"], bindingDate["$bc"], this.target[bindingDate["$bt"]], bindingDate["$bp"]);
}
else {
eui.Binding.bindProperty(this.target, bindingDate["$bd"][0].split("."), this.target[bindingDate["$bt"]], bindingDate["$bp"]);
}
}
};
JSONParseClass.prototype.createDataProvider = function (component) {
if (component == "")
return undefined;
var result = this.createTypeObject(component);
var source = [];
for (var _i = 0, _a = this.skinClass[component]["source"]; _i < _a.length; _i++) {
var sour = _a[_i];
source.push(this.createItemRender(sour));
}
result["source"] = source;
return result;
};
JSONParseClass.prototype.createItemRender = function (itemName) {
var result = this.createTypeObject(itemName);
for (var property in this.skinClass[itemName]) {
if (property != "$t") {
result[property] = this.skinClass[itemName][property];
}
}
return result;
};
JSONParseClass.prototype.getNormalizeEuiName = function (str) {
return this.euiNormalizeNames[str] ? this.euiNormalizeNames[str] : str;
};
JSONParseClass.prototype.createTypeObject = function (component) {
var typestr = this.getNormalizeEuiName(this.skinClass[component].$t);
var type = egret.getDefinitionByName(typestr);
return new type();
};
JSONParseClass.prototype.getScale9Grid = function (data) {
var datalist = data.split(",");
return new egret.Rectangle(parseFloat(datalist[0]), parseFloat(datalist[1]), parseFloat(datalist[2]), parseFloat(datalist[3]));
};
return JSONParseClass;
}());
window["JSONParseClass"] = new JSONParseClass();
window.generateEUI2 = window.generateEUI2||{};
generateEUI2.paths = generateEUI2.paths||{};
generateEUI2.styles = undefined;
generateEUI2.skins = {"eui.Button":"resource/eui_skins/ButtonSkin.exml","eui.CheckBox":"resource/eui_skins/CheckBoxSkin.exml","eui.HScrollBar":"resource/eui_skins/HScrollBarSkin.exml","eui.HSlider":"resource/eui_skins/HSliderSkin.exml","eui.Panel":"resource/eui_skins/PanelSkin.exml","eui.TextInput":"resource/eui_skins/TextInputSkin.exml","eui.ProgressBar":"resource/eui_skins/ProgressBarSkin.exml","eui.RadioButton":"resource/eui_skins/RadioButtonSkin.exml","eui.Scroller":"resource/eui_skins/ScrollerSkin.exml","eui.ToggleSwitch":"resource/eui_skins/ToggleSwitchSkin.exml","eui.VScrollBar":"resource/eui_skins/VScrollBarSkin.exml","eui.VSlider":"resource/eui_skins/VSliderSkin.exml","eui.ItemRenderer":"resource/eui_skins/ItemRendererSkin.exml","app.RuleTipsButton":"resource/eui_skins/web/common/RuleButton.exml","app.RedDotControl":"resource/eui_skins/web/common/RedDotSkin.exml"};

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

503
public/js/index.js Normal file
View File

@@ -0,0 +1,503 @@
/**
* 冰雪传奇H5
* 2022 XX信息科技有限公司
*
* @author 123456
* @wx 123456
* @qq 123456
*/
let host = window.location.hostname || '100.88.157.105';
let port = 80;
const webUrl = getHttp() + host + (port && 80 != port ? ':' + port : ''),
account = getQueryString('account'),
token = getQueryString('token'),
noLogin = !account || !token;
if (noLogin) {
setTimeout(function () {
loadBarClear();
loadBarFull();
setTimeout(function () {
window.location.href = webUrl + '/login';
}, randomRange(250, 500));
}, 1e3);
}
window['gameName'] = '夜风冰雪';
window['gameLogo'] = 'LOGO6';
// 请勿更改
window['game'] = 'YFBX';
window['pf'] = 'yfbx';
window['pfID'] = 10001;
window['userInfo'] = {
'account': account,
'token': token,
'openID': md5(account + window['game'] + window['pfID']).toUpperCase(),
'cm': 1,
'adult': 0
};
// 检测 Tampermonkey 插件
function checkTampermonkey() {
setTimeout(() => {
const TampermonkeyVars = ["unsafeWindow", "GM_info"]
if (!TampermonkeyVars.every(e => typeof window[e] == 'undefined')) {
// 如果检测到 Tampermonkey 插件,执行以下代码
alert('检测到您正在使用 Tampermonkey 插件,本网站禁止使用此类插件!');
// 可以选择阻止页面访问或其他操作
window.location.href = '/login'; // 将用户重定向到空白页
} else checkTampermonkey()
}, 5000)
}
checkTampermonkey()
// 游戏个性设置: 设备/版本/界面/NPC参数
window['device'] = 0; // 客户端设备(一般无需更改): 0=自适应, 1=PC端界面, 2=移动端界面
window['gameMode'] = 0; // 版本玩法: 0=三职业, 1=单职业(游戏内仅出现战士职业装备)
window['uiStyle'] = 1; // 血球特效: 0=默认, 1=龙头动态火焰特效
window['npcStyle'] = 1; // NPC特效: 0=默认, 1=微变版本NPC动态特效
window['specialId'] = 2; // 打金服ID
window['withdraw'] = {'sid': 1, 'type': 3, 'ratio': 10000}; // 提现
window['isShowGongGao'] = true;
window['isAutoShowGongGao'] = !getCookie('auto_show_notice') ? (setCookie('auto_show_notice', 1, 1), true) : false;
window['isMicro'] = window['pfID'];
window['selectServer'] = true;
window['fontFamily'] = 'Arial';
window['loginType'] = 1; // 登录类型 0:测试 1:正式
window['loginWay'] = 1;
window['isReport'] = 0; // 是否上报后台
window['isReportPF'] = 0; // 是否上报渠道
window['isDisablePay'] = 0; // 是否关闭充值
window['loginView'] = 'app.MainLoginView';
// 相关URL
window['webHost'] = host;
window['webUrl'] = webUrl;
window['serviceListdUrl'] = webUrl + '/server';
window['setServiceListdUrl'] = webUrl + '/server';
window['payUrl'] = webUrl + '/pay';
window['apiUrl'] = webUrl + '/api';
window['orderUrl'] = webUrl + '/api?act=order';
window['reportUrl'] = webUrl + '/api?act=report'; // 上报接口
window['errorReportUrl'] = webUrl + '/api?act=report&do=error';// 错误上报接口
window['checkUrl'] = webUrl + '/api?act=check'; // 验证URL
window['versionUrl'] = webUrl + '/api?act=version'; // 请求客户端版本
window['getActorInfoUrl'] = webUrl + '/api?act=actor';
window['roleInfoUrl'] = webUrl + '/api?act=role';
window['gongGaoUrl'] = webUrl + '/notice.txt';
// 客服信息
window['kfQQ'] = '123456';
window['kfWX'] = '123456';
window['kfQQUrl'] = 'https://127.0.0.1';
window['kfQQGroupUrl'] = 'https://127.0.0.1';
window['gameVerTxt1'] = '审批文号:新广出审[2022]007号 出版物号ISBN 001-1-0001-0001-1 著作权人XX信息科技有限公司';
window['gameVerTxt2'] = '出版单位XX信息科技有限公司 运营单位XX信息科技有限公司';
window['gameVerTxt3'] = '健康游戏忠告:抵制不良游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。';
window['publicRes'] = 'https://cdn-cq-res.kubbo.cn/';
const arr = ['loading_1_jpg', 'loading_1_jpg', 'mp_jzjm_png', 'mp_jzjm2_png'];
window['gameLoadImg'] = !getCookie('first_loading') ? (setCookie('first_loading', 1), arr[0]) : arr[randomRange(0, 4)];
window['version1'] = 'zjt1_png';
window['version2'] = 'zjt2_png';
window['version3'] = 'zjt3_png';
window['resVersion'] = '1';
window['thmVersion'] = '1';
window['tableVersion'] = '1.2.80';
window['mainVersion'] = '1.2.2';
window['isDebug'] = false;
const isJsDebug = false;
// 设置标题
//document.title = window['gameName'];
function reporting(type, result) {
if (noLogin) return;
if (window['isReport'] && window['reportUrl']) {
let loginType = window['loginWay'] ? 1 : 0;
let msgInfo = {
type: type,
counter: window['pfID'],
env: window['game'] + '|' + loginType,
time: Date.parse(new Date().toString()) / 1000,
result: result
};
msgInfo['data'] = {
uid: window['userInfo']['uid'],
serverAlias: window['userInfo']['server']
};
const str = JSON.stringify(msgInfo);
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () { //服务器返回值的处理函数,此处使用匿名函数进行实现
if (xhr.readyState == 4 && xhr.status == 200) {
//
}
};
xhr.open('GET', window['reportUrl'] + '&msg=' + str, true); //提交get请求到服务器
xhr.send(null);
}
}
function onerrorFunction(error, uid) {
const xhr = new XMLHttpRequest();
xhr.open('POST', window['checkUrl'] + window.location.search, true);//提交get请求到服务器
xhr.setRequestHeader('Content-Type', 'application/json');
let params = 'pfID=' + window['pfID'] + '&uid=' + uid + '&error=' + error;
xhr.open('GET', window['errorReportUrl'] + '&' + params, true);//提交get请求到服务器
xhr.send(null);
}
window.onerror = function (message, url, line) {
let str = "Message : " + message + "\nURL : " + url + "\nLine Number : " + line;
this.onerrorFunction(str, 0);
alert(str);
}
//1.平台参数格式化
if (!noLogin) {
if (window['loginType']) {
switch (window['pfID']) {
case 10001:
var urlData = window.location.search;
if (urlData.indexOf('?') != -1) {
urlData = urlData.substr(1);
var strs = urlData.split('&');
for (var i = 0; i < strs.length; i++) {
window['userInfo'][strs[i].split('=')[0]] = unescape(strs[i].split('=')[1]);
}
}
break;
default:
// 测试
}
} else {
var urlData = window.location.search;
if (urlData.indexOf('?') != -1) {
urlData = urlData.substr(1);
var strs = urlData.split('&');
for (var i = 0; i < strs.length; i++) {
window['userInfo'][strs[i].split('=')[0]] = unescape(strs[i].split('=')[1]);
}
}
}
}
//2.登录验证
function loginFunction() {
//alert('维护中');
//return;
if (noLogin) return;
// window['userInfo']['serverInfo'] = serverInfo;
//1.平台验证
if (window['loginType']) {
switch (window['pfID']) {
case 10001:
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () { // 服务器返回值的处理函数,此处使用匿名函数进行实现
if (xhr.readyState == 4 && xhr.status == 200) {
//console.log(xhr.responseText);
const obj = JSON.parse(xhr.responseText);
//验证成功
if (0 == obj.code) {
reporting(10001, 1);
start();
} else {
loadError = true;
reporting(10001, 0);
const errorMsg = obj.msg ? obj.msg : '通行证验证失败!',
label = document.getElementById('label');
if (label) {
const linkHtml = '<span class="font_small"><a onClick="window.history.back()" class="link_color">点击返回</a> / <a onClick="window.location.reload()" class="link_color">尝试刷新</a></span>';
label.innerHTML = errorMsg + linkHtml;
} else {
alert(filterHTML(errorMsg));
}
}
}
};
xhr.open('GET', window['checkUrl'] + '&do=verify&' + window.location.search.substr(1), true); //提交get请求到服务器
xhr.send(null);
break;
}
} else {
reporting(10001, 1);
start();
// window['checkFunction']();//检测上报
// window['checkSuccess']();
}
}
//3.支付
function payFunction(param) {
console.log(param);
window.open('./pay/?productId=' + param.productId + '&productName=' + param.productName + '&amount=' + param.amount + '&actorid=' + param.gameExtra + '&serverId=' + param.serverId, '_blank');
}
//4.工具类
function callJsFunction(msg) {
if (msg && msg['type']) {
switch (msg['type']) {
case 'showGame':
showGame();
break;
case 'showLoadProgress':
showLoadProgress(msg['progress'], msg['des']);
break;
default:
//测试
}
}
}
let jobAry = ['', '战士', '法师', '战士']
function ReportingFunction(msg) {
if (msg && msg) {
if (msg['type'] == 12 || msg['type'] == 1000) { //等级上报
//创建xhr对象
let reportingUrl = window['reportUrl'];
reportingUrl += '&do=' + encodeURIComponent('game_profile');
reportingUrl += '&udbid=' + encodeURIComponent(1024009155 + '');
reportingUrl += '&gam=' + encodeURIComponent(window['game'] + '');
reportingUrl += '&pas=';
reportingUrl += '&gse=' + encodeURIComponent('s1');
reportingUrl += '&pro=' + encodeURIComponent('logingame');
reportingUrl += '&ya_appid=' + encodeURIComponent('udblogin');
let json_data = {
game_event: msg['type'] == 12 ? 'new_role' : 'level_change',
role_name: msg.data['roleName'],
role_level: msg.data['level'] + '',
fight_cap: '',
sex: msg.data['sex'] > 0 ? 'f' : 'm',
job: jobAry[msg.data['job']],
partner: '',
equip: msg.data['guildName']
}
json_data = JSON.stringify(json_data);
reportingUrl += '&json_data=' + encodeURIComponent(json_data);
// json_data = { "role_level": "11", "role_name": "s1.虞鹏天", "game_event": "level_change", "fight_cap": "1371", "job": "1" }
const xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () { //服务器返回值的处理函数,此处使用匿名函数进行实现
if (xhr.readyState == 4 && xhr.status == 200) { //
//var obj = JSON.parse(xhr.responseText);
}
};
xhr.open('GET', reportingUrl, true); //提交get请求到服务器
xhr.send(null);
}
}
}
//6.屏蔽右键
document.onkeydown = function () {
// var e = window.event || arguments[0];
//F12
// if (e.keyCode == 123) {
// return false;
// //Ctrl+Shift+I
// } else if ((e.ctrlKey) && (e.shiftKey) && (e.keyCode == 73)) {
// return false;
// //Shift+F10
// } else if ((e.shiftKey) && (e.keyCode == 121)) {
// return false;
// //Ctrl+U
// } else if ((e.ctrlKey) && (e.keyCode == 85)) {
// return false;
// }
};
/**
* 反馈
*/
function feedbackFunction(info) {
removeIfram();
let msgInfo = {
act: 'feedback',
game: window['game'],
platform: window['pf'],
server: window['userInfo']['server'],
uid: info['uid'],
rolename: info['rolename'],
ts: Date.parse(new Date().toString()) / 1000
};
msgInfo['sign'] = new md5().hex_md5((msgInfo.game + msgInfo.platform + msgInfo.server + msgInfo.uid + msgInfo.rolename + msgInfo.ts + 123456));
let param = '';
for (let key in msgInfo) {
param += key + '=' + msgInfo[key] + '&'
}
param = param.substring(0, param.length - 1)
let srcStr = webUrl + '/api?' + param;
const div = document.createElement('div');
div.id = 'iframDiv';
div.innerHTML = '<iframe id="main" scrolling="no" noresize="true" frameborder="0" style="width: 90%;height: 90%;padding-left:5%;padding-top:2%;" src=' + srcStr + '></iframe>';
// div.style = 'position: relative; width:100%; height:100%;background: rgba(0, 0, 0, 0.5);';
div.style.position = 'relative';
div.style.width = '100%';
div.style.height = '100%';
div.style.background = 'rgba(0, 0, 0, 0.5)';
document.body.appendChild(div);
//创建关闭按钮
let div2 = document.createElement('div');
div2.id = 'btnDiv';
div2.innerHTML = '<img id="closeImg" src="static/img/close_btn.jpg?v=1" height="50" width="50" />'
// div2.style = 'position: absolute;right:0px;top:0px;width:50px;height:50px';
div2.style.position = 'absolute';
div2.style.right = '0px';
div2.style.top = '0px';
div2.style.width = '50px';
div2.style.height = '50px';
div.appendChild(div2);
const closeImg = document.getElementById('closeImg');
closeImg.onclick = removeIfram;
// onloadFunction();
}
// 防沉迷
function IdCardFunction() {
window.open(webUrl);
}
function addQQGrp() {
window.open(window['kfQQGroupUrl']);
}
//下载YY游戏大厅
function downYYGameHallFun() {
window.open(webUrl);
}
//开通会员
function openYYVip() {
window.open(webUrl);
}
//开超玩会员
function openChaoWanVip() {
window.open(webUrl);
}
function removeIfram() {
let div = document.getElementById('iframDiv');
if (div) {
document.body.removeChild(div);
}
div = document.getElementById('btnDiv');
if (div) {
document.body.removeChild(div);
}
}
document.oncontextmenu = () => false;
//加载项目工程
const loadScript = function (list, callback) {
let loaded = 0;
const loadNext = function () {
loadSingleScript(list[loaded], function () {
loaded++;
if (loaded >= list.length) {
callback();
} else {
loadNext();
}
});
};
loadNext();
};
let loadTimes = 0;
let jsScr = '';
window['loadScript'] = loadScript;
var loadSingleScript = function (src, callback) {
if (jsScr != src) {
loadTimes = 0;
}
if (src.indexOf('lib') > -1 || src.indexOf('main') > -1) {
const mainSuffix = getQueryString('mainSuffix');
if (mainSuffix) {
src = src.replace('.js', mainSuffix + '.js');
}
src += '?v=' + (isJsDebug ? Math.random() : window['mainVersion']);
}
jsScr = src;
const s = document.createElement('script');
s.type = 'text/javascript';
s.async = false;
s.src = src;
s.addEventListener('load', function () {
s.parentNode.removeChild(s);
s.removeEventListener('load', arguments.callee, false);
callback();
}, false);
s.addEventListener('error', function () {
s.parentNode.removeChild(s);
s.removeEventListener('load', arguments.callee, false);
loadTimes++;
if (loadTimes > 5) {
alert("主程序文件加载失败,请检测网络刷新游戏!\n " + src);
} else {
setTimeout(function () {
loadSingleScript(src, callback);
}, 2000);
}
}, false);
document.body.appendChild(s);
};
//开始启动游戏
function start() {
//alert('维护中');
//return;
const xhr = new XMLHttpRequest();
xhr.open('GET', './manifest.json?v=1.1.1.2', true); // '?v=' + Math.random()
xhr.addEventListener('load', function () {
const manifest = JSON.parse(xhr.response);
const list = manifest.initial.concat(manifest.game);
window['gameAppJS'] = manifest['gameAppJS'];
loadScript(list, function () {
egret.runEgret({
renderMode: 'webgl',
audioType: 0,
calculateCanvasScaleFactor: function (context) {
const backingStore = context.backingStorePixelRatio ||
context.webkitBackingStorePixelRatio ||
context.mozBackingStorePixelRatio ||
context.msBackingStorePixelRatio ||
context.oBackingStorePixelRatio ||
context.backingStorePixelRatio || 1;
return (window.devicePixelRatio || 1) / backingStore;
}
});
});
});
xhr.send(null);
}
//上报
reporting(10000, 1);
loginFunction();

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

91545
public/js/main.min_jocw9Tu2.js Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
var __reflect=this&&this.__reflect||function(t,e,n){t.__class__=e,n?n.push(e):n=[e],t.__types__=t.__types__?n.concat(t.__types__):n},__extends=this&&this.__extends||function(t,e){function n(){this.constructor=t}for(var o in e)e.hasOwnProperty(o)&&(t[o]=e[o]);n.prototype=e.prototype,t.prototype=new n},egret;!function(t){}(egret||(egret={}));var egret;!function(t){var e=function(e){function n(o,i){void 0===o&&(o=""),void 0===i&&(i=0);var s=e.call(this)||this;return s._writeMessage="",s._readMessage="",s._connected=!1,s._connecting=!1,s._isReadySend=!1,s._bytesWrite=!1,s._type=n.TYPE_STRING,s._connected=!1,s._writeMessage="",s._readMessage="",s.socket=new t.ISocket,s.socket.addCallBacks(s.onConnect,s.onClose,s.onSocketData,s.onError,s),s}return __extends(n,e),n.prototype.connect=function(t,e){this._connecting||this._connected||(this._connecting=!0,this.socket.connect(t,e))},n.prototype.connectByUrl=function(t){this._connecting||this._connected||(this._connecting=!0,this.socket.connectByUrl(t))},n.prototype.close=function(){this._connected&&this.socket.close()},n.prototype.onConnect=function(){this._connected=!0,this._connecting=!1,this.dispatchEventWith(t.Event.CONNECT)},n.prototype.onClose=function(){this._connected=!1,this.dispatchEventWith(t.Event.CLOSE)},n.prototype.onError=function(){this._connecting&&(this._connecting=!1),this.dispatchEventWith(t.IOErrorEvent.IO_ERROR)},n.prototype.onSocketData=function(e){"string"==typeof e?this._readMessage+=e:this._readByte._writeUint8Array(new Uint8Array(e)),t.ProgressEvent.dispatchProgressEvent(this,t.ProgressEvent.SOCKET_DATA)},n.prototype.flush=function(){return this._connected?(this._writeMessage&&(this.socket.send(this._writeMessage),this._writeMessage=""),this._bytesWrite&&(this.socket.send(this._writeByte.buffer),this._bytesWrite=!1,this._writeByte.clear()),void(this._isReadySend=!1)):void t.$warn(3101)},n.prototype.writeUTF=function(e){return this._connected?(this._type==n.TYPE_BINARY?(this._bytesWrite=!0,this._writeByte.writeUTF(e)):this._writeMessage+=e,void this.flush()):void t.$warn(3101)},n.prototype.readUTF=function(){var t;return this._type==n.TYPE_BINARY?(this._readByte.position=0,t=this._readByte.readUTF(),this._readByte.clear()):(t=this._readMessage,this._readMessage=""),t},n.prototype.writeBytes=function(e,n,o){return void 0===n&&(n=0),void 0===o&&(o=0),this._connected?this._writeByte?(this._bytesWrite=!0,this._writeByte.writeBytes(e,n,o),void this.flush()):void t.$warn(3102):void t.$warn(3101)},n.prototype.readBytes=function(e,n,o){return void 0===n&&(n=0),void 0===o&&(o=0),this._readByte?(this._readByte.position=0,this._readByte.readBytes(e,n,o),void this._readByte.clear()):void t.$warn(3102)},Object.defineProperty(n.prototype,"connected",{get:function(){return this._connected},enumerable:!0,configurable:!0}),Object.defineProperty(n.prototype,"type",{get:function(){return this._type},set:function(e){this._type=e,e!=n.TYPE_BINARY||this._writeByte||(this._readByte=new t.ByteArray,this._writeByte=new t.ByteArray)},enumerable:!0,configurable:!0}),n.TYPE_STRING="webSocketTypeString",n.TYPE_BINARY="webSocketTypeBinary",n}(t.EventDispatcher);t.WebSocket=e,__reflect(e.prototype,"egret.WebSocket")}(egret||(egret={}));var egret;!function(t){var e;!function(e){var n=function(){function e(){this.host="",this.port=0,window.WebSocket||t.$error(3100)}return e.prototype.addCallBacks=function(t,e,n,o,i){this.onConnect=t,this.onClose=e,this.onSocketData=n,this.onError=o,this.thisObject=i},e.prototype.connect=function(t,e){this.host=t,this.port=e;var n="ws://"+this.host+this.port==443?"":":"+this.port;this.socket=new window.WebSocket(n),this.socket.binaryType="arraybuffer",this._bindEvent()},e.prototype.connectByUrl=function(t){this.socket=new window.WebSocket(t),this.socket.binaryType="arraybuffer",this._bindEvent()},e.prototype._bindEvent=function(){var t=this,e=this.socket;e.onopen=function(){t.onConnect&&t.onConnect.call(t.thisObject)},e.onclose=function(e){t.onClose&&t.onClose.call(t.thisObject)},e.onerror=function(e){t.onError&&t.onError.call(t.thisObject)},e.onmessage=function(e){t.onSocketData&&(e.data?t.onSocketData.call(t.thisObject,e.data):t.onSocketData.call(t.thisObject,e))}},e.prototype.send=function(t){this.socket.send(t)},e.prototype.close=function(){this.socket.close()},e.prototype.disconnect=function(){this.socket.disconnect&&this.socket.disconnect()},e}();e.HTML5WebSocket=n,__reflect(n.prototype,"egret.web.HTML5WebSocket",["egret.ISocket"]),t.ISocket=n}(e=t.web||(t.web={}))}(egret||(egret={}));

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<e:Skin class="ButtonSkin" states="up,down,disabled" minHeight="50" minWidth="100" xmlns:e="http://ns.egret.com/eui">
<e:Label id="labelDisplay" top="8" bottom="8" left="8" right="8"
size="20"
textColor="0xFFFFFF" verticalAlign="middle" textAlign="center"/>
<e:Image id="iconDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="skins.HScrollBarSkin" minWidth="20" minHeight="8" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" width="13" height="7">
<e:Image source="bag_18" verticalCenter="0" left="3" right="3" scale9Grid="7,1,3,1"/>
<e:Image id="thumb" source="bag_17" x="0" y="0" scale9Grid="6,3,1,1"/>
</e:Skin>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ProgressBarSkin" minWidth="30" minHeight="18" xmlns:e="http://ns.egret.com/eui">
<e:Image source="track_pb" scale9Grid="1,1,4,4" width="100%"
height="100%" verticalCenter="0"/>
<e:Image id="thumb" height="100%" source="thumb_pb" left="13" right="13"/>
<e:Label id="labelDisplay" textAlign="center" verticalAlign="middle"
size="15" fontFamily="Tahoma" textColor="0x707070"
horizontalCenter="0" verticalCenter="0"/>
</e:Skin>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ProgressBarSkin1" minWidth="30" minHeight="18" xmlns:e="http://ns.egret.com/eui" width="30">
<e:Image scale9Grid="1,1,4,4" width="100%"
height="100%" verticalCenter="0" source="guild_json.guild_jingyantiao_bg"/>
<e:Image id="thumb" height="100%" left="13" source="guild_json.guild_jingyantiao" scale9Grid="27,1,164,10" width="4"/>
<e:Label id="labelDisplay" textAlign="center" verticalAlign="middle"
size="15" fontFamily="Tahoma"
horizontalCenter="0" verticalCenter="0" textColor="0xcbb79d"/>
</e:Skin>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="skins.RadioButtonSkin" states="up,down,disabled,upAndSelected,downAndSelected,disabledAndSelected" xmlns:e="http://ns.egret.com/eui">
<e:Group width="100%" height="100%">
<e:Image alpha.disabled="0.5" alpha.down="0.7"
source="com_yuan_kong"/>
<e:Image source="com_yuan_hong" visible.up="false" visible.down="false" visible.disabled="false"/>
<e:Label id="labelDisplay" size="20" textColor="0x707070"
textAlign="center" verticalAlign="middle"
fontFamily="Tahoma" x="40" verticalCenter="0" visible.upAndSelected="false"/>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="skins.ScrollerSkin" minWidth="20" minHeight="20" xmlns:e="http://ns.egret.com/eui">
<e:HScrollBar id="horizontalScrollBar" width="100%" bottom="0"/>
<e:VScrollBar id="verticalScrollBar" height="100%" right="-8"/>
</e:Skin>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="skins.ScrollerSkin1" minWidth="20" minHeight="20" xmlns:e="http://ns.egret.com/eui">
<e:HScrollBar id="horizontalScrollBar" width="100%" bottom="0"/>
<e:VScrollBar id="verticalScrollBar" height="100%" right="0" skinName="skins.VScrollBarSkin1" autoVisibility="false"/>
</e:Skin>

View File

@@ -0,0 +1,9 @@
<?xml version='1.0' encoding='utf-8'?>
<e:Skin class="TextInputSkin" minHeight="40" minWidth="300" states="normal,disabled,normalWithPrompt,disabledWithPrompt" xmlns:e="http://ns.egret.com/eui">
<e:Image width="100%" height="100%" source="" scale9Grid="47,18,94,10"/>
<!--<e:Rect height="100%" width="100%" fillColor="0xffffff"/>-->
<e:EditableText id="textDisplay" verticalCenter="0" left="10" right="10"
textColor="0xffffff" textColor.disabled="0xe50000" width="100%" height="24" size="20" text="" textAlign="center"/>
<e:Label id="promptDisplay" verticalCenter="0" left="10" right="10"
textColor="0xa9a9a9" width="100%" height="24" size="20" touchEnabled="false" includeIn="normalWithPrompt,disabledWithPrompt" text="" textAlign="center"/>
</e:Skin>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="skins.VScrollBarSkin" minWidth="8" minHeight="20" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" width="16" height="14">
<e:Image horizontalCenter="0" top="3" bottom="3" scale9Grid="1,7,1,4" source="m_lst_xian"/>
<e:Image id="thumb" scale9Grid="3,5,1,3" source="m_lst_dian" horizontalCenter="2" height="14"/>
</e:Skin>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="skins.VScrollBarSkin1" minWidth="8" minHeight="20" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" width="16" height="40">
<e:Image horizontalCenter="0" top="3" bottom="3" scale9Grid="1,7,1,4" source="shuxinghuadong_1"/>
<e:Image id="thumb" scale9Grid="3,5,1,3" top="0" bottom="0" source="shuxinghuadong_2"/>
</e:Skin>

View File

@@ -0,0 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<e:Skin class="Btn0Skin" states="up,down,disabled" minHeight="25" minWidth="25" xmlns:e="http://ns.egret.com/eui">
<e:Image id="iconDisplay" alpha.disabled="0.5"
source="" scaleX.down="0.98" scaleY.down="0.98" pixelHitTest="true" verticalCenter="0" horizontalCenter="0"/>
</e:Skin>

View File

@@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<e:Skin class="Btn11Skin" states="up,down,disabled" width="130" height="50"
xmlns:e="http://ns.egret.com/eui">
<e:Rect left="2" right="2" top="2" bottom="2" fillColor="0x3f2108" fillColor.up="0x2d1705" fillColor.down="0x000000" fillColor.disabled="0x000000"/>
<e:Image left="0" top="0" bottom="0" right="0" visible.down="false" visible.disabled="false" scale9Grid="4,4,8,8" source=""/>
<e:Label id="labelDisplay" size="22" textColor="0xFFF2BE" horizontalCenter="0" verticalCenter="0" bold="true" text="按钮" size.down="20" size.disabled="20" textColor.disabled="0x686868"/>
</e:Skin>

View File

@@ -0,0 +1,9 @@
<?xml version='1.0' encoding='utf-8'?>
<e:Skin class="Btn23Skin" states="up,down,disabled,selected" minHeight="25" minWidth="25" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" height="100" width="73">
<e:Image id="iconDisplay" alpha.disabled="0.5"
x.down="0.5" y.down="1" scaleX.down="0.55" scaleY.down="0.55" pixelHitTest="true" source="login_nv_1" horizontalCenter.selected="0" verticalCenter="-10.5" horizontalCenter="0" scaleX="0.6" scaleY="0.6" source.selected="login_zs_2"/>
<e:Image id="selected" pixelHitTest="true" horizontalCenter="0" includeIn="selected" verticalCenter="-10.5" scaleX="0.6" scaleY="0.6" source=""/>
<e:Rect width="100%" height="100%" y="0" fillAlpha="0" strokeAlpha="0" fillColor="0xffffff" touchEnabled="true" includeIn="disabled"/>
<e:Label id="labelDisplay" text="战士" y="75.34" horizontalCenter="1" textColor.up="0xdfbd9e" textColor.selected="0xd48129" size="20" stroke="2" bold="true" textColor="0xe5ddcf"/>
<e:Image source="login_xuanzhong" width="81" height="80" x.disabled="-10.1" x.down="-10.1" x.up="-10.1" y.disabled="-9.5" y.down="-9.5" y.up="-9.5" touchEnabled="false" visible.up="false" visible.down="false" visible.disabled="false" scale9Grid="19,19,2,2" horizontalCenter="0" verticalCenter="-10" horizontalCenter.selected="0"/>
</e:Skin>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ChangeNameViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing" width="478" height="340">
<e:Rect id="closeRect" left="0" right="0" top="0" bottom="0" fillAlpha="0.2"/>
<app:UIViewFrame id="dragDropUI" verticalCenter="0" horizontalCenter="0" skinName="ViewBgWin5Skin"/>
<e:Image source="chat_bg_bg1_png" scale9Grid="9,9,1,2" verticalCenter="-10" horizontalCenter="0" visible="false"/>
<e:Image source="chat_bg_bg2" scale9Grid="4,4,28,28" width="388" height="38" horizontalCenter="0" anchorOffsetX="0" anchorOffsetY="0" verticalCenter="-1"/>
<e:Label text="请输入新的名字" textAlign="center" verticalAlign="middle" size="24" verticalCenter="-58.5" horizontalCenter="0" bold="true" textColor="0xefc41c"/>
<e:TextInput id="textInput" width="315" horizontalCenter="0" verticalCenter="0" prompt="单击此处输入名字"/>
<e:Button id="sureBtn" label="确认修改" horizontalCenter="0.5" verticalCenter="133.5" width="109" height="44">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="tips_btn" source.down="tips_btn" scaleX.down="0.95" scaleY.down="0.95"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" size="20" textColor="0xf0c896" stroke="2"/>
</e:Skin>
</e:skinName>
</e:Button>
</e:Skin>

View File

@@ -0,0 +1,40 @@
<?xml version='1.0' encoding='utf-8'?>
<e:Skin class="CreateRole2Skin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Rect width="100%" height="100%" fillAlpha="1" />
<e:Group id="group" width="1344" height="840" horizontalCenter="0" verticalCenter="0">
<e:Image id="bgImg" horizontalCenter="0" verticalCenter="0" source="login_bg2_jpg" />
<e:Label id="timeLab" text="" size="22" textColor="0x28ee01" x="530" y="677" width="300" textAlign="center" />
<e:Group id="roleGrp" y="583.33" x="482" scaleX="0.9" scaleY="0.9" />
<e:Rect id="rect" width="60" height="70" y="414" x="447" visible="false"/>
<e:Group x="769" y="360">
<e:Button id="job1" label="战士" icon="login_zs_2" skinName="Btn23Skin" />
<e:Button id="job2" label="法师" icon="login_fs_2" skinName="Btn23Skin" x="135.52" y="-1" />
<e:Button id="job3" label="道士" icon="login_ds_2" skinName="Btn23Skin" x="283.49" y="-1" />
<e:layout>
<e:HorizontalLayout gap="4" />
</e:layout>
</e:Group>
<e:Group x="802" y="501">
<e:Button id="boy" label="男" icon="login_nan_2" skinName="Btn23Skin" x="2" />
<e:Button id="girl" label="女" icon="login_nv_2" skinName="Btn23Skin" x="149" />
<e:layout>
<e:HorizontalLayout gap="8" />
</e:layout>
</e:Group>
<e:Group x="577" y="697.67" width="208" height="90">
<e:Button id="createBtn" label="按钮" icon="login_btn" x="0" skinName="Btn0Skin" scaleX="0.7" scaleY="0.7" />
</e:Group>
<e:Group id="createMcGrp" x="680" y="744" touchEnabled="false" touchChildren="false" touchThrough="false" />
<e:Button id="diceBtn" label="按钮" skinName="Btn0Skin" icon="login_suiji" x="974" y="265" scaleX="1.2" scaleY="1.2" />
<e:EditableText id="nameInput" width="172" text="" x="793" y="272" size="24" textAlign="center" verticalAlign="middle" />
</e:Group>
<e:Button id="closeButton" label="Button" right="10" top="10" scaleX="0.7" scaleY="0.7" visible="false">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image source="create_btn_fanhui" horizontalCenter="0" verticalCenter="0" scaleX.up="1" scaleY.up="1"
scaleX.down="0.95" scaleY.down="0.95" source.down="create_btn_fanhui" source.disabled="create_btn_fanhui" />
</e:Skin>
</e:skinName>
</e:Button>
</e:Skin>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="SwitchPlayerItemSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" height="110">
<e:Image source="chat_bg_bg1_png" anchorOffsetX="0" width="347" anchorOffsetY="0" height="110" y="0" x="0" scale9Grid="55,57,334,87"/>
<e:Image id="selectImg" source="common_liebiaoxuanzhong" scale9Grid="6,6,38,36" anchorOffsetX="0" width="349" x="-1" y="-2" anchorOffsetY="0" height="113" visible="false"/>
<e:Image source="name_touxiangk" x="10" y="12"/>
<e:Image id="hairImage" x="15" y="18" source="name_1_0"/>
<e:Label id="nameLabel" text="" x="120" y="20" size="20" textColor="0xcf15e1"/>
<e:Label id="levelLabel" text="" x="120" y="47" size="18" textColor="0xbca384"/>
<e:Label id="guildLabel" text="" x="120" y="72" size="18" textColor="0xbca384"/>
</e:Skin>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="SwitchPlayerSkin" xmlns:e="http://ns.egret.com/eui" xmlns:ns1="*" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing" width="431" height="478">
<app:UIViewFrame id="dragDropUI" skinName="ViewBgWin4Skin"/>
<e:Scroller id="playerScroller" width="360" height="339" y="60" anchorOffsetY="0" x="36">
<e:List id="list" >
<e:layout>
<e:VerticalLayout paddingLeft="6" paddingTop="0" gap="5"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Group y="403" horizontalCenter="0.5">
<e:Button id="createBtn" label="" skinName="Btn9Skin"/>
<e:Button id="switchBtn" label="" skinName="Btn9Skin"/>
<e:layout>
<e:HorizontalLayout gap="40"/>
</e:layout>
</e:Group>
<app:RuleTipsButton label="Button" x="354" y="407" ruleId="48"/>
</e:Skin>

View File

@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="CrossServerActViewSkin" width="863" height="557" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Group width="863" height="557" x="0" y="0">
<e:Image source="com_bg_kuang_6_png" scale9Grid="19,17,1,1" width="265" height="557"/>
<e:Image source="com_bg_kuang_6_png" scale9Grid="19,17,1,1" width="594" height="487.27" anchorOffsetX="0" right="-3" y="0"/>
<e:Scroller id="tabScroller" width="261" y="2" x="2" visible="true" height="517">
<e:List id="tabList" itemRendererSkinName="ActivityTabSkin">
<e:layout>
<e:VerticalLayout gap="-1"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Group width="578" height="484.33" x="276" y="3" anchorOffsetX="0" anchorOffsetY="0" touchEnabled="false">
<e:Group width="563" height="36" x="7" y="4">
<e:Image source="mail_bg" scale9Grid="14,15,1,1" left="0" right="0" top="0" bottom="0"/>
<e:Label id="actTitle" text="活动入口:" x="10" y="9.5" size="20" stroke="2" textColor="0xE5DDCF"/>
</e:Group>
<e:Group width="563" height="36" x="7" y="43">
<e:Image source="mail_bg" scale9Grid="14,15,1,1" left="0" right="0" top="0" bottom="0"/>
<e:Label id="actTime" text="活动时间:" x="9.6" y="8.3" size="20" stroke="2" textColor="0xE5DDCF"/>
</e:Group>
<e:Group width="563" height="201.5" x="7" y="83.02" anchorOffsetY="0" touchEnabled="false">
<e:Image source="mail_bg" scale9Grid="14,15,1,1" left="0" right="0" top="0" bottom="0"/>
<e:Label id="actDesc" text="藏宝库的NPC夺宝人偶携带了大量宝物快和朋友一起去抢夺吧" x="9.1" y="13.8" size="20" stroke="2" textColor="0xE5DDCF" width="543" height="108" lineSpacing="4"/>
<e:Label id="actPath" text="前往路径:" x="9" y="132" size="20" textColor="0xE5DDCF" stroke="2" width="535" lineSpacing="7"/>
</e:Group>
<e:Image x="15" y="292" source="act_hdjj"/>
<e:Group width="570" height="158" x="7" y="322">
<e:Image source="mail_bg" scale9Grid="14,15,1,1" left="0" right="0" top="0" bottom="0"/>
<e:Scroller width="530" height="134" x="25" y="13">
<e:List id="rewardsList" x="25" y="13" itemRendererSkinName="ItemBaseSkin" width="530" height="134">
<e:layout>
<e:TileLayout/>
</e:layout>
</e:List>
</e:Scroller>
</e:Group>
</e:Group>
<e:Button id="enterBtn" label="" x="741" y="507" skinName="Btn9Skin"/>
<app:RuleTipsButton id="ruleTips" xmlns:app="app.*" label="Button" x="285" y="517"/>
<app:RuleTipsButton id="ruleTips1" label="Button" x="62" y="523" ruleId="97"/>
<e:Label id="ruleLab" text="跨服说明" x="97" y="529" textColor="0x28ee01" size="21" stroke="2"/>
<e:Label id="ruleLab2" text="跨服分组" x="634" y="517" size="21" textColor="0x28ee01" stroke="2"/>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="CrossServerDetailsItemSkin" width="666" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Group minHeight="24" width="46" height="26" touchEnabled="false" touchChildren="false">
<e:Rect left="0" right="-6" top="-1" bottom="-1" fillColor="0xfc9219"/>
<e:Label id="label" text=" [跨服] " size="36" backgroundColor="0xFC9219" textColor="0xFFFEFC" scaleX="0.5" scaleY="0.5" stroke="3" verticalCenter="0.5" horizontalCenter="3.5"/>
</e:Group>
<e:Group id="txtGrp" x="55" minHeight="24" verticalCenter="0" touchEnabled="false" >
<e:Rect id="bgColor" scaleX="1" scaleY="1" left="-1" right="-3" top="-2" bottom="-2" fillColor="0xf3311e"/>
<e:Label id="chatLab" size="36" backgroundColor="0x0735FC" scaleX="0.5" scaleY="0.5" stroke="3" background="false" x="0" maxWidth="1260" y="4" lineSpacing="9" textColor="0xE5DDCF" visible="true" text=""/>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="CrossServerDetailsSkin" width="863" height="557" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Image source="kf_xq_bg_png" horizontalCenter="0" verticalCenter="0"/>
<e:Scroller id="msgScroller" width="666" height="532" x="184" y="12">
<e:List id="msgList" itemRendererSkinName="CrossServerDetailsItemSkin">
<e:layout>
<e:VerticalLayout gap="3"/>
</e:layout>
</e:List>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="CrossServerTabSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" states="up,down" >
<e:Image source="kf_fanye_bg1" visible.down="false"/>
<e:Image source="kf_fanye_bg2" visible.up="false"/>
<e:Image id="txtIcon1" source="kf_fanye_hd1" horizontalCenter="3" verticalCenter="-9" visible.up="false"/>
<e:Image id="txtIcon2" source="kf_fanye_hd2" horizontalCenter="3" verticalCenter="-9" visible.down="false"/>
</e:Skin>

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="CrossServerWinSkin" width="984" height="676" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Group touchEnabled="false">
<e:Image id="dragDropUI" source="kf_bg1_png"/>
<e:Image id="titleImg" source="kf_kfzc" horizontalCenter="0" top="37" touchEnabled="false"/>
<e:TabBar id="tabBar" width="45" height="494" y="119" x="-5" itemRendererSkinName="CrossServerTabSkin">
<e:layout>
<e:VerticalLayout gap="-11"/>
</e:layout>
<e:ArrayCollection>
<e:Array>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
</e:Array>
</e:ArrayCollection>
</e:TabBar>
<e:Button id="closeBtn" label="" x="894" y="30" width="61" height="57">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="apay_x2" source.down="apay_x2" source.disabled="apay_x2" scaleX.down="0.98" scaleY.down="0.98"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<app:RedDotControl id="redPoint" x="-8" y="115.5" visible="false"/>
<e:Group id="infoGrp" width="863" height="557" x="59" y="90" touchEnabled="false"/>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="CrossServerRankListItemSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing"
xmlns:app="app.*" width="524" height="45">
<e:Image smoothing="false" id="bg" x="0" y="-1" anchorOffsetX="0" width="524" height="45" source="rank_bg2"
scale9Grid="251,19,57,15" />
<e:Image id="select" x="0" y="-2" anchorOffsetX="0" width="524" source="liebiaoxuanzhong" scale9Grid="22,29,2,2" />
<e:Label id="txt_rank" text="1" x="6" y="14" textColor="0xe5ddcf" size="18" verticalAlign="justify" width="50"
textAlign="center" stroke="2" />
<e:Image id="rankImg" x="15" y="5" source="rank_pm1" />
<e:Label id="txt_name" text="STSTST1.玩家名称有七字" size="18" verticalAlign="justify" textAlign="center" textColor="0xe5ddcf"
stroke="2" y="14" x="60" />
<e:Label id="txt_level" text="6转200级" x="290" y="14" textColor="0xe5ddcf" size="18" verticalAlign="justify"
textAlign="center" stroke="2" />
<e:Label id="txt_guild" text="帮派名称有七字" textColor="0xE5DDCF" size="18" verticalAlign="justify" textAlign="center"
stroke="2" y="14" x="380" />
</e:Skin>

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="CrossServerRankViewSkin" width="863" height="557" xmlns:app="app.*" xmlns:e="http://ns.egret.com/eui"
xmlns:w="http://ns.egret.com/wing">
<e:Group width="863" height="557" touchEnabled="false">
<e:Image source="kf_phb_bg_png" />
<e:Group id="modelGroup" touchChildren="false" touchEnabled="false" width="450" height="525" scaleX="1.2"
scaleY="1.2" bottom="92" right="33">
<e:Image name="bg" source="" right="0" bottom="0" />
<e:Image name="cloth" source="" right="0" bottom="0" />
<e:Image name="arm" source="" right="0" bottom="0" />
<e:Image name="helmet" source="" right="0" bottom="0" />
</e:Group>
<e:Group id="rank_list" width="524" height="458" x="5" y="25">
<e:Scroller name="scroller" x="0" height="460" y="0" width="524"></e:Scroller>
<e:List name="list" y="2" itemRendererSkinName="CrossServerRankListItemSkin">
<e:layout>
<e:VerticalLayout gap="0" />
</e:layout>
</e:List>
<e:Group id="menu_group" x="0" y="0" />
</e:Group>
<e:Group width="572" height="90" x="-17" y="469">
<e:Button id="btn_home" label="首页" skinName="Btn9Skin" x="352" y="7" visible="false" />
<e:Button id="btn_pre" label="" x="212.36" y="9.68" width="55" height="25">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="growway_jt" source.down="growway_jt"
source.disabled="growway_jt" scaleX.down="0.95" scaleY.down="0.95" />
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btn_next" label="" x="415" y="11" scaleX="-1" width="55" height="25">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="growway_jt" source.down="growway_jt"
source.disabled="growway_jt" scaleX.down="0.95" scaleY.down="0.95" />
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Label id="rank_desc" text="我的排名:未上榜" x="81" y="55" size="20" stroke="2" textColor="0xe5ddcf" />
<e:Label id="rank_guild" text="所属行会:金近十三少保" x="327" y="55" size="20" stroke="2" textColor="0xE5DDCF" />
<e:Label id="rank_no" text="暂时没有排名" x="255" y="-255" size="22" textColor="0xe5ddcf" stroke="2" />
<e:Label id="pageLab" text="1/3" size="20" verticalCenter="-22.165" horizontalCenter="27.83499999999998" />
</e:Group>
<app:RuleTipsButton label="Button" x="16" y="514" ruleId="19" />
</e:Group>
<e:Button id="btn_operation" label="查 看" x="630.66" width="109" height="44" bottom="46">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="tips_btn" source.down="tips_btn"
source.disabled="tips_btn" scaleX.down="0.95" scaleY.down="0.95" />
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" size="20" textColor="0xf0c896"
stroke="2" />
</e:Skin>
</e:skinName>
</e:Button>
</e:Skin>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="CrossServerWorshipItemSkin" width="280" height="280" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*"
xmlns:w="http://ns.egret.com/wing">
<e:Group width="280" height="280" touchEnabled="false" touchThrough="true" touchChildren="true">
<e:Image source="kf_kfmb_bg_png" left="0" right="0" top="0" bottom="0"/>
<e:Group id="modelGroup" width="450" height="525" scaleX="0.8" scaleY="0.8" right="45" bottom="22"
touchChildren="false" touchEnabled="false">
<e:Image name="bg" source="" right="0" bottom="0" />
<e:Image name="cloth" source="" right="0" bottom="0" />
<e:Image name="arm" source="" right="0" bottom="0" />
<e:Image name="helmet" source="" right="0" bottom="0" />
</e:Group>
<e:Image source="kf_kfmb_bg1" y="43" x="15" />
<e:Image id="imgTitle" source="kf_mb_dynd" y="55" x="11" />
<e:Group id="playEff" verticalCenter="83.5" horizontalCenter="0" x="145" y="219" touchEnabled="false"
touchChildren="false" />
<e:Image source="Act_mobai_biaotibg" horizontalCenter="0.5" top="8" x="18" y="12" />
<e:Label id="playName" text="我的的 " size="18" horizontalCenter="0" top="13" x="61" y="20" stroke="2"
textColor="0xFF7700" />
<e:Button id="worship" label="膜 拜" skinName="Btn9Skin" horizontalCenter="0" bottom="10"/>
<e:Label id="count" text="" size="15" right="13" bottom="23" bold="true" x="212" y="232" stroke="2"
textColor="0x28EE01" />
<e:Button id="check" label="" skinName="Btn0Skin" icon="Act_chakan" bottom="3" left="15" visible="false"/>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="CrossServerWorshipWinSkin" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*"
xmlns:w="http://ns.egret.com/wing" width="984" height="676">
<e:Image id="dragDropUI" source="kf_bg1_png" />
<e:Image id="titleImg" horizontalCenter="0" top="37" touchEnabled="false" source="kf_kfmb"/>
<e:Group horizontalCenter="0" touchEnabled="false" touchChildren="true" touchThrough="true" y="88">
<e:Image source="worship_bg_jpg" width="860" height="555" horizontalCenter="0" verticalCenter="0"/>
<app:CrossServerWorshipItem id="item0" skinName="CrossServerWorshipItemSkin" x="2" y="0" touchEnabled="false" />
<app:CrossServerWorshipItem id="item1" skinName="CrossServerWorshipItemSkin" x="289" y="0" touchEnabled="false" />
<app:CrossServerWorshipItem id="item2" skinName="CrossServerWorshipItemSkin" x="576" y="0" touchEnabled="false" />
<app:CrossServerWorshipItem id="item3" skinName="CrossServerWorshipItemSkin" x="2" y="283" touchEnabled="false" />
<app:CrossServerWorshipItem id="item4" skinName="CrossServerWorshipItemSkin" x="289" y="283" touchEnabled="false" />
<app:CrossServerWorshipItem id="item5" skinName="CrossServerWorshipItemSkin" x="576" y="283" touchEnabled="false" />
</e:Group>
<app:RuleTipsButton label="Button" ruleId="32" top="43" left="38" />
<e:Button id="closeBtn" label="" x="894" y="30" width="61" height="57">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="apay_x2" source.down="apay_x2"
source.disabled="apay_x2" scaleX.down="0.98" scaleY.down="0.98" />
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" />
</e:Skin>
</e:skinName>
</e:Button>
</e:Skin>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="GameFightSceneSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:ns1="*" width="580"
height="930">
<e:Group top="0" right="0" bottom="0" left="0">
<e:Image id="_mapgBgImge" source="mapmini_png" width="100%" height="100%"/>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="TradeLineBuyItemViewSkin" width="701" height="77" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing">
<e:Image id="itemBg" left="0" right="0" top="0" bottom="0" scale9Grid="9,8,1,1" source="bg_quyu_1"/>
<app:ItemBase id="curItem" skinName="ItemBaseSkin" verticalCenter="0" left="10"/>
<e:Label id="itemName" text="" size="21" left="80" verticalCenter="0" textColor="0xff22ed" stroke="2"/>
<e:Label id="time" text="" size="21" textColor="0x808080" verticalCenter="0" horizontalCenter="-27" stroke="2"/>
<e:Group horizontalCenter="132" verticalCenter="0.5">
<e:Image source="icon_yuanbao"/>
<e:Label id="curMoney" text="" size="21" stroke="2" textColor="0xe5ddcf"/>
<e:layout>
<e:HorizontalLayout horizontalAlign="center" verticalAlign="middle" gap="6"/>
</e:layout>
</e:Group>
<e:Button id="buyBtn" label="购 买" x="589" y="20" skinName="Btn9Skin"/>
</e:Skin>

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="TradeLineBuyViewSkin" width="869" height="558" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image left="0" right="712" top="0" bottom="56" source="com_bg_kuang_xian1" scale9Grid="10,9,3,3"/>
<e:Image left="155" right="0" top="0" bottom="56" x="10" y="10" source="com_bg_kuang_xian1" scale9Grid="10,9,3,3"/>
<e:Scroller width="147" horizontalCenter="-356" top="7" bottom="69">
<e:List id="tabList" height="481" itemRendererSkinName="TradeLineTabSkin">
<e:layout>
<e:VerticalLayout gap="-2"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Label id="curQuota" text="" size="22" bottom="15" left="450" textColor="0xe5ddcf" stroke="2"/>
<e:Group width="703" horizontalCenter="78" top="4" bottom="512">
<e:Image source="common_liebiaoding_bg" scale9Grid="90,5,546,32" width="703"/>
<e:Image x="235" source="common_liebiaoding_fenge"/>
<e:Image x="410" source="common_liebiaoding_fenge"/>
<e:Image x="565" source="common_liebiaoding_fenge"/>
<e:Label id="itemName" text="商品名称" textColor="0xf0c896" size="23" horizontalCenter="-234.5" verticalCenter="-0.5" stroke="2"/>
<e:Label id="time" text="剩余时间" textColor="0xF0C896" size="23" horizontalCenter="-30.5" verticalCenter="0.5" stroke="2"/>
<e:Label id="price" text="价格" textColor="0xF0C896" size="23" horizontalCenter="135.5" verticalCenter="0.5" stroke="2"/>
<e:Label text="购买" textColor="0xF0C896" size="23" horizontalCenter="285.5" verticalCenter="0.5" stroke="2"/>
</e:Group>
<e:Scroller id="buyScroller" width="701" height="448" x="161" y="50">
<e:List id="buyList" itemRendererSkinName="TradeLineBuyItemViewSkin">
</e:List>
</e:Scroller>
<app:moneyPanel id="moneyPanel" x="164" y="514" skinName="moneyPanelSkin" width="155"/>
</e:Skin>

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="TradeLineIsSellingItemViewSkin" width="855" height="79" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing">
<e:Image id="itemBg" left="0" right="0" top="0" bottom="0" scale9Grid="9,8,1,1" source="bg_quyu_2"/>
<app:ItemBase id="curItem" skinName="ItemBaseSkin" verticalCenter="0.5" left="40"/>
<e:Label id="itemName" text="" size="21" left="110" verticalCenter="0" textColor="0xFF22ED" stroke="2"/>
<e:Label id="time" text="" size="21" textColor="0x808080" verticalCenter="0" horizontalCenter="-27" stroke="2"/>
<e:Group horizontalCenter="162" verticalCenter="0.5">
<e:Image source="icon_yuanbao"/>
<e:Label id="curMoney" text="" size="21" stroke="2" textColor="0xe5ddcf"/>
<e:layout>
<e:HorizontalLayout horizontalAlign="center" verticalAlign="middle" gap="6"/>
</e:layout>
</e:Group>
<e:Button id="shelfBtn" label="下 架" x="729" y="20" skinName="Btn9Skin"/>
</e:Skin>

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="TradeLineIsSellingViewSkin" width="869" height="558" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Image left="0" right="0" top="0" bottom="56" source="com_bg_kuang_xian1" scale9Grid="10,9,3,3"/>
<e:Group width="857" horizontalCenter="0" top="4" bottom="512">
<e:Image source="common_liebiaoding_bg" scale9Grid="90,5,546,32" width="857"/>
<e:Image x="295" source="common_liebiaoding_fenge"/>
<e:Image x="500" source="common_liebiaoding_fenge"/>
<e:Image x="695" source="common_liebiaoding_fenge"/>
<e:Label text="商品名称" textColor="0xF0C896" size="23" horizontalCenter="-274.5" verticalCenter="-0.5" stroke="2"/>
<e:Label text="剩余时间" textColor="0xF0C896" size="23" horizontalCenter="-20.5" verticalCenter="0.5" stroke="2"/>
<e:Label text="价格" textColor="0xF0C896" size="23" horizontalCenter="168.5" verticalCenter="0.5" stroke="2"/>
<e:Label text="下架" textColor="0xF0C896" size="23" horizontalCenter="347.5" verticalCenter="0.5" stroke="2"/>
</e:Group>
<e:Scroller id="itemScroller" width="855" height="445" x="7" y="52">
<e:List id="sellList" itemRendererSkinName="TradeLineIsSellingItemViewSkin">
<e:layout>
<e:VerticalLayout gap="2"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Label id="curSell" text="" size="21" textColor="0xf0c896" left="54" bottom="16" visible="false"/>
<e:Button id="allShelf" label="全部下架" skinName="Btn9Skin" right="41" bottom="7" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="TradeLineReceiveItemViewSkin" width="855" height="79" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing">
<e:Image id="itemBg" left="0" right="0" top="0" bottom="0" scale9Grid="9,8,1,1" source="bg_quyu_2"/>
<app:ItemBase id="curItem" skinName="ItemBaseSkin" verticalCenter="0.5" left="40"/>
<e:Label id="itemName" text="" size="21" left="110" verticalCenter="0" textColor="0xFF22ED" stroke="2"/>
<e:Image id="itemState" source="trade_zt1" verticalCenter="-0.5" horizontalCenter="-23.5"/>
<e:Group horizontalCenter="162" verticalCenter="0.5">
<e:Image source="icon_yuanbao"/>
<e:Label id="curMoney" text="" size="21" stroke="2" textColor="0xe5ddcf"/>
<e:layout>
<e:HorizontalLayout horizontalAlign="center" verticalAlign="middle" gap="6"/>
</e:layout>
</e:Group>
<e:Button id="receiveBtn" label="领 取" x="729" y="20" skinName="Btn9Skin"/>
</e:Skin>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="TradeLineReceiveViewSkin" width="869" height="558" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Image left="0" right="0" top="0" bottom="56" source="com_bg_kuang_xian1" scale9Grid="10,9,3,3"/>
<e:Group width="857" horizontalCenter="0" top="4" bottom="512">
<e:Image x="0" y="0" source="common_liebiaoding_bg" scale9Grid="90,5,546,32" width="857"/>
<e:Image x="295" source="common_liebiaoding_fenge"/>
<e:Image x="500" source="common_liebiaoding_fenge"/>
<e:Image x="695" source="common_liebiaoding_fenge"/>
<e:Label text="商品名称" textColor="0xF0C896" size="23" horizontalCenter="-274.5" verticalCenter="-0.5" stroke="2"/>
<e:Label text="状态" textColor="0xF0C896" size="23" horizontalCenter="-20.5" verticalCenter="0.5" stroke="2"/>
<e:Label text="价格" textColor="0xF0C896" size="23" horizontalCenter="168.5" verticalCenter="0.5" stroke="2"/>
<e:Label text="领取" textColor="0xF0C896" size="23" horizontalCenter="347.5" verticalCenter="0.5" stroke="2"/>
</e:Group>
<e:Scroller id="receiveScroller" width="855" height="445" x="7" y="52">
<e:List id="receliveList" itemRendererSkinName="TradeLineReceiveItemViewSkin">
<e:layout>
<e:VerticalLayout gap="2"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Label id="getMoney" text="" size="21" bottom="15" left="122" stroke="2" textColor="0xe0ae75"/>
<e:Label id="shouxufei" text="" size="21" bottom="17" left="342" stroke="2" textColor="0xe0ae75"/>
<e:Button id="allReceive" label="全部领取" x="728" y="509" skinName="Btn9Skin" visible="false" locked="true"/>
<e:Label id="notHave" text="当前无任何物品" horizontalCenter="-9.5" verticalCenter="-40" size="26" stroke="2" textColor="0xe0ae75"/>
</e:Skin>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="TradeLineSellViewSkin" width="869" height="558" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image source="trade_bg1" left="0" right="0" top="0" bottom="79"/>
<e:Button id="addItem" label="添加商品" skinName="Btn9Skin" horizontalCenter="-113" bottom="18" height="41"/>
<e:Button id="shelves" label="上 架" skinName="Btn9Skin" horizontalCenter="117" bottom="18" height="41"/>
<e:Group id="itemGrp" height="120" x="366" y="91">
<e:Image source="trade_iconk" width="137" x="0" height="120" y="0"/>
<app:ItemBase id="curITem" skinName="ItemBaseSkin" horizontalCenter="-0.5" top="28" bottom="32"/>
</e:Group>
<e:Image width="104" source="com_bg_kuang_xian2" scale9Grid="3,3,18,18" horizontalCenter="24.5" bottom="268" height="36"/>
<e:Label text="出售价格:" x="300" y="262" size="22" textColor="0xe0ae75" stroke="2"/>
<e:Label text="元宝" x="520" y="262" textColor="0xe0ae75" size="22" stroke="2"/>
<e:Label id="handlingCharge" text="上架手续费:" x="300" y="331" size="22" textColor="0xE0AE75" stroke="2"/>
<e:Label id="handlingMoney" text="500" x="470" y="331" size="22" stroke="2" textColor="0x28ee01"/>
<e:Label id="dealSuccessful" text="交易成功后将扣除售价的" x="300" y="389" size="22" stroke="2" textColor="0xe0ae75"/>
<e:EditableText id="textInput" text="" size="24" verticalAlign="middle" textAlign="center" textColor="0x3dff00" horizontalCenter="24.5" bottom="271" height="30" restrict="0-9"/>
<e:Image horizontalCenter="8.5" bottom="198" source="icon_bangding"/>
<e:Label id="titleDesc" text="" y="16" horizontalCenter="0" width="719" textAlign="center" size="20" stroke="2" lineSpacing="5" textColor="0xe0ae75"/>
</e:Skin>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="TradeLineTabSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" states="up,down" >
<e:Image horizontalCenter="0" verticalCenter="0" source="tab_01_2"/>
<e:Image horizontalCenter="0" verticalCenter="0" visible.up="false" source="tab_01_1"/>
<e:Label id="label" text="基 础" textColor="0xF0C896" size="22" horizontalCenter="0" verticalCenter="0" stroke="2" textColor.down="0xe5ddcf"/>
</e:Skin>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="TradeLineWinSkin" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing"
width="909" height="645">
<app:UIViewFrame id="dragDropUI" skinName="ViewBgWin1Skin"/>
<e:TabBar id="tab" x="908" height="442" y="50" itemRendererSkinName="CommonTarBtnWinSkin2">
<e:layout>
<e:VerticalLayout gap="-11"/>
</e:layout>
</e:TabBar>
<e:Group id="pageGroup" width="869" horizontalCenter="1" top="57" bottom="30"/>
<app:RedDotControl width="20" height="20" x="936" y="337" updateShowFunctions="TradeLineMgr.getReceiveRed"
showMessages="TradeLineMgr.post_27_9" visible="false"/>
<app:RuleTipsButton id="ruleTips" label="Button" x="50" y="573" />
</e:Skin>

View File

@@ -0,0 +1,10 @@
<?xml version='1.0' encoding='utf-8'?>
<e:Skin class="UIView2Skin" width="212" height="251" xmlns:e="http://ns.egret.com/eui"
xmlns:w="http://ns.egret.com/wing">
<e:Button id="btn3" label="攻击" x="12" bottom="30" skinName="Btn11Skin" visible="false"/>
<e:Button id="btn4" label="大招" x="155" skinName="Btn11Skin" bottom="30" visible="false"/>
<e:Button id="btn5" label="施法" x="302" skinName="Btn11Skin" bottom="30" visible="false"/>
<e:Button id="btn6" label="受击" x="445" skinName="Btn11Skin" bottom="30" visible="false"/>
<e:Image source="kuaijielan1" scale9Grid="13,25,3,6" anchorOffsetX="0" anchorOffsetY="0" width="210" height="210" right="0" top="0"/>
</e:Skin>

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="WarehouseWinSkin" width="416" height="529" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Image id="dragDropUI" source="cangku_bg_png"/>
<e:TabBar id="tabBar" y="43" x="-34" itemRendererSkinName="CommonTarBtnWinSkin3" width="36">
<e:layout>
<e:VerticalLayout gap="-11"/>
</e:layout>
</e:TabBar>
<e:Group id="warehouseGrp" name="装备" width="383" height="455" x="16" y="19">
<e:Scroller width="383" height="455" scrollPolicyH="off" scrollPolicyV="off">
<e:Group>
<e:Group id="equipBg" width="383" height="455"/>
<e:Group id="equipLab" width="383" height="455" touchEnabled="false"/>
<e:Group id="equipStar" width="383" height="455" touchEnabled="false" x="0" y="0"/>
<e:Group id="itemEffGrp" width="383" height="455" touchEnabled="false"/>
</e:Group>
</e:Scroller>
</e:Group>
<e:Button id="finishingBtn" label="整 理" horizontalCenter="137.5" bottom="7">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing" xmlns:ns1="*" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" source="bagbtn_1" source.down="bagbtn_1" source.disabled="bagbtn_2" scaleY.down="0.95" scaleX.down="0.95"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" size="20" textColor="0xeee104" stroke="2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:CheckBox id="saveCheck" label="CheckBox" x="24" y="486" skinName="CheckBox2"/>
<e:Label text="一键存取" x="70" y="496" stroke="2" size="18" textColor="0xe5ddcf"/>
<e:Button id="btn_close" label="" y="-7.67" x="-41.32">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:app="app.*">
<e:Image width="100%" height="100%" source="btn_guanbi3" source.down="btn_guanbi4" source.disabled="btn_guanbi4"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
</e:Skin>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="AchieveDetailItemViewSkin" width="371" height="18" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Label id="lbGift" text="" x="0" y="0" size="18" textColor="0xf0c896"/>
</e:Skin>

View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="AchievementDetailedViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing" width="426" height="301">
<e:Group x="0" y="0" width="426" height="301">
<app:UIViewFrame id="dragDropUI" x="0" y="0" skinName="ViewBgWin6Skin"/>
<e:Button id="btnConfim" label="确 定" x="159" y="239" width="109" height="44">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="tips_btn" source.down="tips_btn" source.disabled="tips_btn" scaleX.down="0.95" scaleY.down="0.95"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" size="20" textColor="0xf0c896" stroke="2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Label id="lbDetail" text="" x="24" textColor="0xf0c896" size="18" y="57" wordWrap="true" height="50" width="374" lineSpacing="6" anchorOffsetY="0"/>
<e:Label id="txtGift" text="" x="23" y="110" size="18" textColor="0xf9893a"/>
<e:Scroller width="371" height="88" x="23" y="137" >
<e:List id="listGift" height="88" itemRendererSkinName="AchieveDetailItemViewSkin" y="20" x="1">
<e:layout>
<e:VerticalLayout/>
</e:layout>
</e:List>
</e:Scroller>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="AchievementItemViewSkin" width="717" height="83" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Group id="gp" width="717" height="83" x="0" y="0">
<e:Image id="state_0" source="bg_quyu_1" x="0" y="0" width="717" scale9Grid="9,9,1,1" height="83" />
<e:Image id="state_1" source="bg_quyu_2" x="0" y="0" width="717" height="83" scale9Grid="9,9,1,1" />
<e:Label id="lbTitle" text="" stroke="1" size="20" textAlign="center" y="11" textColor="0xf9893a" left="40"/>
<e:Label id="lbTarget" text="" stroke="1" textColor="0xF9893A" size="20" textAlign="center" y="50" x="40"/>
<e:Label id="protxt" text="" stroke="1" size="20" y="11" left="421" textColor="0xcbad7b"/>
<e:Label id="lbProgress" text="" stroke="1" textColor="0xCBAD7B" size="20" y="11" left="473"/>
<e:Button id="btnGet" label="领取" x="620.27" y="30" skinName="Btn4Skin"/>
<e:Button id="btnShow" label="查看" x="524.28" y="30" skinName="Btn4Skin"/>
<e:Image id="reachedIcon" source="ach_yidacheng" x="611.28" y="7" touchEnabled="false" visible="false"/>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,82 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="AchievementViewSkin" width="941" height="618" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing">
<e:Group id="gpAll" width="941" height="617">
<app:UIViewFrame id="dragDropUI" width="898" height="617" x="44" currentState="default5" skinName="UIViewFrameSkin"/>
<e:TabBar id="tabBar" width="45" height="556" y="49" itemRendererSkinName="CommonTarBtnItemSkin1" x="2">
<e:layout>
<e:VerticalLayout gap="3"/>
</e:layout>
</e:TabBar>
<e:Group id="gp_0" width="880" height="564" x="53" y="47" >
<e:Image source="com_bg_kuang_xian1" x="2" y="0" width="145" height="508" scale9Grid="6,6,8,6"/>
<e:TabBar id="optTab" width="141" height="556" x="6" y="3" itemRendererSkinName="GuildTarBtnItemSkin">
<e:layout>
<e:VerticalLayout horizontalAlign="center" gap="-2"/>
</e:layout>
</e:TabBar>
<e:Image id="bg1" source="9s_bg_1" x="146" y="0" width="729" height="508" scale9Grid="14,14,1,1"/>
<e:Scroller id="scroller" width="723" height="505" x="149" y="2.5">
<e:List id="listAchieve" height="505" itemRendererSkinName="AchievementItemViewSkin" width="723">
<e:layout>
<e:VerticalLayout gap="1"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Button id="shopBtn" label="活跃商城" x="745" y="517" skinName="Btn9Skin" scaleX="1" scaleY="1"/>
</e:Group>
<e:Group width="880" height="564" x="53" y="47" id="gp_1" visible="false">
<e:Image id="bg" x="1.5" y="1.5" width="525" height="496" scale9Grid="14,14,1,1" source="9s_bg_1"/>
<e:Image id="bg0" source="9s_bg_1" x="528" y="1.5" width="349" height="496" scale9Grid="14,14,1,1"/>
<e:Image source="9s_bg_2" x="532" y="36" scale9Grid="14,14,1,1" width="341" height="210"/>
<e:Image source="9s_bg_2" x="532" y="279" scale9Grid="14,14,1,1" width="341" height="215"/>
<e:Image source="ach_bg1" x="3.7" height="496" y="5"/>
<e:Image source="ach_xzsj" x="212" y="11"/>
<e:Image source="ach_zhuangshi" x="543" y="14"/>
<e:Image source="ach_zhuangshi" x="55" y="279"/>
<e:Image source="ach_zhuangshi" x="332" y="279"/>
<e:Image source="ach_sjtj" x="560" y="12"/>
<e:Image source="ach_zhuangshi" x="543" y="256"/>
<e:Image x="560" y="255" source="ach_sjxh"/>
<e:Image source="ach_xunzhangbg" x="76" y="105"/>
<e:Image source="ach_jiantou" x="243" y="133"/>
<e:Image source="ach_xunzhangbg" x="322" y="105"/>
<e:Image source="ach_namebg" x="85" y="225"/>
<e:Image source="ach_namebg" x="337" y="225"/>
<e:Image source="role_json.transform_bg_shuxing" x="30" y="275" width="473" height="155"/>
<app:ItemBase id="curItem" skinName="ItemBaseSkin" horizontalCenter="-294" top="133" bottom="373" height="60" />
<app:ItemBase id="nextItem" skinName="ItemBaseSkin" horizontalCenter="-48" top="133" bottom="373" height="60" />
<e:List id="gCurList" name="list" x="74" y="304" >
<e:layout>
<e:VerticalLayout gap="0"/>
</e:layout>
</e:List>
<e:List id="gNextList" name="list" x="352" y="304" >
<e:layout>
<e:VerticalLayout gap="0"/>
</e:layout>
</e:List>
<e:Scroller width="324" height="192" x="539" y="47">
<e:List id="gUpList" name="list" x="542" y="48" width="327" itemRendererSkinName="MedalItemViewSkin">
<e:layout>
<e:VerticalLayout gap="12" horizontalAlign="left" verticalAlign="top"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Scroller width="324" height="192" x="538" y="292">
<e:List id="gUpNeedList" name="list" x="542" y="48" itemRendererSkinName="MedalItemViewSkin">
<e:layout>
<e:VerticalLayout gap="12"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Label id="txtMyCount" text="" x="29" y="516" size="20" textColor="0xf0c896"/>
<e:Label id="txtCurAtt" text="" x="73" y="278" size="18" textColor="0xF0C896"/>
<e:Label id="txtNextAtt" text="" x="349" y="278" size="18" textColor="0xF0C896"/>
<e:Label id="lbCount" size="20" textColor="0x28ee01" rotation="0.07" text="" verticalCenter="244" left="175"/>
<e:Label id="lbCurItem" text="" size="20" textColor="0xf9893a" horizontalCenter="-294" verticalCenter="-45"/>
<e:Label text="" size="20" textColor="0xF9893A" horizontalCenter="-42" verticalCenter="-45" id="lbNextItem"/>
<e:Label id="txt_max_lev" text="" x="328" y="330" size="20" width="108" textAlign="center" textColor="0xD1A977" />
<e:Button id="btnUp" label="升 级" x="221" y="445" skinName="Btn4Skin" width="82" height="38"/>
</e:Group>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="MedalAttrItemCurSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*"
width="249.7" height="21">
<e:Label id="txt_cur" text="" x="17.5" y="0.5" size="18"
width="171.5" textColor="0xf4d1a4" height="20"/>
<e:Image id="arrow" smoothing="false" width="20" height="20" x="206" y="0.5" source="com_jiantoux2"/>
</e:Skin>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="MedalAttrItemNextSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*"
width="80" height="21">
<e:Label id="txt_next" text="" x="0" y="2" size="18" width="80" anchorOffsetX="0" anchorOffsetY="0" height="17" textColor="0x55cc0c" textAlign="center"/>
</e:Skin>

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="MedalItemViewSkin" width="324" height="22" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Label id="lbGift" text="" x="0" y="2" size="18" textColor="0xf0c896"/>
</e:Skin>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityCopiesItem1Skin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*" width="278" height="535">
<e:Image id="systemBg" horizontalCenter="0" verticalCenter="0" source="Act_hdbg1_1_png"/>
<e:Image source="Act_hdk1" scale9Grid="20,23,8,9" left="0" right="0" top="0" bottom="0"/>
<e:Image source="guild_wenzizhuangshi" scaleX="1.5" scaleY="1.5" horizontalCenter="-100" top="27"/>
<e:Image id="title" source="Act_biaoti_1" horizontalCenter="0" top="20"/>
<e:Image source="guild_wenzizhuangshi" scaleX="1.5" scaleY="1.5" horizontalCenter="100" top="27"/>
<e:Label id="systemJieShao" text="" x="18" y="58.5" width="243" height="278" size="20" stroke="1" lineSpacing="3" textColor="0xe0ae75"/>
<e:Image source="Act_jlyl" bottom="164" left="16"/>
<e:Image width="267" height="82.5" bottom="71" horizontalCenter="0.5" source="Act_jlyl_bg" scale9Grid="24,22,4,13"/>
<e:Scroller id="itemScroller" width="253" height="60" horizontalCenter="0.5" bottom="83">
<e:List id="itemList" itemRendererSkinName="ItemBaseSkin" width="253" bottom="83" horizontalCenter="2.5">
<e:layout>
<e:HorizontalLayout gap="14"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Button id="enterFb" label="进 入" skinName="Btn9Skin" horizontalCenter="7.5" bottom="11"/>
<app:RuleTipsButton id="rule" label="Button" horizontalCenter="-108" bottom="17"/>
<app:RedDotControl id="redPoint" y="476.5" x="187" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityCopiesItem2Skin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*" width="433"
height="235">
<e:Image source="Act_hdk2_png"/>
<e:Image id="imgBg" horizontalCenter="0" verticalCenter="0" source="Act_hdbg2_1_png"/>
<e:Image id="title" source="Act_biaoti_1" horizontalCenter="0.5" top="11" />
<e:Label id="systemJieShao" text=""
width="407" height="80" size="20" verticalCenter="-34.5" horizontalCenter="1" stroke="1" textColor="0xe0ae75"/>
<e:Group id="rewardGp" width="251" height="108" x="6" y="122">
<e:Image source="Act_jlyl" bottom="80" left="11" x="12" y="5"/>
<e:Image width="246" height="74" bottom="3" horizontalCenter="-0.5" source="Act_jlyl_bg" scale9Grid="8,30,2,9" x="3" y="31"/>
<e:List id="itemList" width="192" horizontalCenter="-22.5" bottom="10" x="10" y="75" itemRendererSkinName="ItemBaseSkin" anchorOffsetX="0">
<e:layout>
<e:HorizontalLayout/>
</e:layout>
</e:List>
<e:Button id="btnMore" label="" x="211" y="38" anchorOffsetX="0">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image width="100%" height="100%" horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="Act_gengduo" source.down="Act_gengduo"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
</e:Group>
<app:RuleTipsButton id="rule" label="Button" ruleId="1" horizontalCenter="68.5" bottom="21"/>
<e:Label id="residueCount" text="" textColor="0xf0c896" size="15" verticalCenter="50" horizontalCenter="144"/>
<e:Button id="enterFb" label="进 入" x="313" y="179" skinName="Btn9Skin"/>
<app:RedDotControl id="redPoint" y="175" x="409" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityCopiesWinSkin" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*"
xmlns:w="http://ns.egret.com/wing" width="908" height="646">
<app:UIViewFrame id="dragDropUI" skinName="ViewBgWin7Skin" />
<e:TabBar id="tab" x="907" height="30" y="41" itemRendererSkinName="CommonTarBtnWinSkin2" visible="false">
<e:layout>
<e:VerticalLayout gap="-11" />
</e:layout>
</e:TabBar>
<e:Group width="863" height="557" x="24" y="56.5" visible="true">
<e:Image source="com_bg_kuang_6_png" scale9Grid="19,17,1,1" width="265" height="557" />
<e:Image source="com_bg_kuang_6_png" scale9Grid="19,17,1,1" width="594" height="487.27" anchorOffsetX="0" right="-3"
y="0" />
<e:Scroller id="tabScroller" width="261" y="2" x="2" visible="true" height="553">
<e:List id="tabList" itemRendererSkinName="ActivityTabSkin">
<e:layout>
<e:VerticalLayout gap="-1" />
</e:layout>
</e:List>
</e:Scroller>
<e:Group width="578" height="484.33" x="276" y="3" anchorOffsetX="0" anchorOffsetY="0" touchEnabled="false">
<e:Group width="563" height="36" x="7" y="4">
<e:Image source="mail_bg" scale9Grid="14,15,1,1" left="0" right="0" top="0" bottom="0" />
<e:Label id="actTitle" text="活动入口:" x="10" y="9.5" size="20" stroke="2" textColor="0xe5ddcf" />
</e:Group>
<e:Group width="563" height="36" x="7" y="43">
<e:Image source="mail_bg" scale9Grid="14,15,1,1" left="0" right="0" top="0" bottom="0" />
<e:Label id="actTime" text="活动时间:" x="9.6" y="8.3" size="20" stroke="2" textColor="0xE5DDCF" />
</e:Group>
<e:Group width="563" height="201.5" x="7" y="83.02" anchorOffsetY="0" touchEnabled="false">
<e:Image source="mail_bg" scale9Grid="14,15,1,1" left="0" right="0" top="0" bottom="0" />
<e:Label id="actDesc" text="藏宝库的NPC夺宝人偶携带了大量宝物快和朋友一起去抢夺吧" x="9.1" y="13.8" size="20" stroke="2"
textColor="0xE5DDCF" width="543" height="108" lineSpacing="4" />
<e:Label id="actPath" text="前往路径:" x="9" y="132" size="20" textColor="0xe5ddcf" stroke="2" width="535"
lineSpacing="7" />
</e:Group>
<e:Image x="15" y="292" source="act_hdjj" />
<e:Group width="570" height="158" x="7" y="322">
<e:Image source="mail_bg" scale9Grid="14,15,1,1" left="0" right="0" top="0" bottom="0" />
<e:Scroller width="530" height="134" x="25" y="13">
<e:List id="rewardsList" x="25" y="13" itemRendererSkinName="ItemBaseSkin" width="530" height="134">
<e:layout>
<e:TileLayout/>
</e:layout>
</e:List>
</e:Scroller>
</e:Group>
</e:Group>
<e:Button id="enterBtn" label="" x="741" y="507" skinName="Btn9Skin" />
<app:RuleTipsButton id="ruleTips" label="Button" x="285" y="517" />
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityDefendTaskItemSkin" width="461" height="110.66" xmlns:app="app.*" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Image id="itemBg" x="1.67" y="1.38" source=""/>
<e:Image id="itemTxt" x="15" y="12" source=""/>
<e:Scroller id="scroller" width="233" horizontalCenter="-104" x="10" y="39">
<e:List id="itemList" itemRendererSkinName="ItemBaseSkin" x="-10">
<e:layout>
<e:HorizontalLayout gap="3"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Label id="timeTxt" text="今日剩余次数:5" x="301.67" y="21.38" width="151" textColor="0x28ee01" size="18" textAlign="right" stroke="2"/>
<e:Button id="btnSweep" label="扫 荡" x="258.67" y="56.38" skinName="Btn9Skin"/>
<e:Button id="btnChallenge" label="挑 战" x="354.67" y="56.38" skinName="Btn9Skin"/>
<app:RedDotControl id="redDot" width="20" height="20" x="338" touchChildren="false" touchEnabled="false" y="53" visible="false"/>
<app:RedDotControl id="redDot2" width="20" height="20" x="434" touchChildren="false" touchEnabled="false" y="53" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityDefendTaskSKin" width="485" height="620" xmlns:app="app.*" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<app:UIViewFrame id = "dragDropUI" x="-2" y="2" skinName="UIViewFrameSkin" currentState="default13" width="491.45" height="622.42"/>
<e:Scroller id="scroller" width="461" horizontalCenter="3" verticalCenter="22" height="554.46" scrollPolicyH="off" touchEnabled="false" touchChildren="true">
<e:List id="list" width="459" itemRendererSkinName="ActivityMaterialItemSkin" anchorOffsetY="0" height="554.46">
<e:layout>
<e:TileLayout requestedColumnCount="1" verticalGap="0"/>
</e:layout>
</e:List>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityMaterialItemSkin" width="461" height="110.66" xmlns:app="app.*" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Image id="itemBg" x="1.67" y="1.38" source="act_clfbbg_1_png"/>
<e:Image id="itemTxt" x="15" y="12" source="act_clfbt_1"/>
<e:Scroller id="scroller" width="233" horizontalCenter="-104" x="10" y="39">
<e:List id="itemList" itemRendererSkinName="ItemBaseSkin" x="-10">
<e:layout>
<e:HorizontalLayout gap="3"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Label id="timeTxt" text="今日剩余次数:5" x="301.67" y="21.38" width="151" size="18" textAlign="right" stroke="2" textColor="0x28ee01"/>
<e:Button id="btnSweep" label="扫 荡" x="239.67" y="56.38" skinName="Btn9Skin"/>
<e:Button id="btnChallenge" label="挑 战" x="354.67" y="56.38" skinName="Btn9Skin"/>
<app:RedDotControl id="redDot" width="20" height="20" x="338" touchChildren="false" touchEnabled="false" y="53" visible="false"/>
<app:RedDotControl id="redDot2" width="20" height="20" x="434" touchChildren="false" touchEnabled="false" y="53" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityMaterialSkin" width="485" height="620" xmlns:app="app.*" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<app:UIViewFrame id = "dragDropUI" x="-2" y="2" skinName="UIViewFrameSkin" currentState="default13" width="491.45" height="622.42"/>
<e:Scroller id="scroller" width="461" horizontalCenter="3" verticalCenter="22" height="554.46" scrollPolicyH="off" touchEnabled="false" touchChildren="true">
<e:List id="list" width="459" itemRendererSkinName="ActivityMaterialItemSkin" anchorOffsetY="0" height="554.46">
<e:layout>
<e:TileLayout requestedColumnCount="1" verticalGap="0"/>
</e:layout>
</e:List>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityTabSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*" width="261" height="81" states="up,down" >
<e:Image source="act_tab1" horizontalCenter="0" verticalCenter="0"/>
<e:Image id="onGoingImg" source="act_tab2" horizontalCenter="0" verticalCenter="0"/>
<e:Image id="openImg" source="act_tab3" horizontalCenter="0" verticalCenter="0"/>
<e:Image id="actIconImg" source="act_icon2" left="16" verticalCenter="-6.5"/>
<e:Image source="act_tab4" scale9Grid="108,33,7,5" left="0" right="0" top="0" bottom="0" visible.up="false"/>
<e:Label id="actName" text="水晶鉴定" y="15.02" size="20" textColor="0xf0c896" stroke="2" left="109"/>
<e:Label id="actState" text="活动进行中" y="48.72" size="20" stroke="2" textColor="0x28ee01" left="109"/>
<app:RedDotControl id="redPoint" width="20" height="20" x="239" y="6"/>
</e:Skin>

View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityTipsWinSKin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Group verticalCenter="-146" horizontalCenter="0">
<e:Image source="result_win"/>
<e:Image id="titleIcon" top="194" horizontalCenter="1.5" source=""/>
<e:Image source="open_bg2" horizontalCenter="0.5" top="257"/>
<e:Label id="actTime" text="" size="19" horizontalCenter="-4.5" top="262" textColor="0x28ee01" stroke="2"/>
<e:Label id="actDesc" text="" width="287" height="113" size="19" lineSpacing="3" verticalCenter="39.5" horizontalCenter="4" stroke="2" textColor="0xe0ae75" anchorOffsetY="0"/>
<e:Image source="open_hdjl" verticalCenter="116" horizontalCenter="11.5"/>
<e:Scroller x="67.34" y="455.02" width="287">
<e:List id="itemList" itemRendererSkinName="ItemBaseSkin" x="2">
<e:layout>
<e:HorizontalLayout gap="11"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Button id="closeBtn" label="" width="61" height="57" y="130" right="31">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="apay_x2" source.down="apay_x2" source.disabled="apay_x2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="goBtn" label="前往参与" y="528.16" width="114" height="46" horizontalCenter="2.5" skinName="Btn9Skin">
</e:Button>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,87 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityFirstChargeViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*" width="846" height="439">
<e:Group id="dragDropUI" anchorOffsetX="0" width="844" anchorOffsetY="0" height="437">
</e:Group>
<e:Image x="40" y="0" source="fc_bg2" touchEnabled="false"/>
<e:Image x="-55" y="-76" touchEnabled="false" source="fc_p_2"/>
<e:Group id="effGrp" x="117" y="210"/>
<e:Image id="imgDesc" x="160" y="20" touchEnabled="false" source="fc_t3"/>
<e:Button id="btnClose" label="" width="61" height="57" y="57.55" x="738.3">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="huanying_x" source.down="huanying_x" source.disabled="huanying_x"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnCharge" x="343" y="310" width="204" height="97">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="fc_btn_1" source.down="fc_btn_1" source.disabled="fc_btn_1"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnGetGfit" label="" x="343" y="310" width="204" height="97" visible="false">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="fc_btn_2" source.down="fc_btn_2" source.disabled="fc_btn_2"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Group y="222" x="328">
<e:List id="itemList" itemRendererSkinName="ItemBaseSkin">
<e:layout>
<e:HorizontalLayout horizontalAlign="center"/>
</e:layout>
<e:ArrayCollection>
<e:Array>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
</e:Array>
</e:ArrayCollection>
</e:List>
</e:Group>
<e:Group id="receiveGroup" touchChildren="false" touchEnabled="false" touchThrough="false" x="387.98" y="308.03" visible="false">
<e:Image source="fc_yilingqu"/>
</e:Group>
<e:Group id="itemEffGrp" x="358.8" y="252.4" touchEnabled="false" touchChildren="false">
</e:Group>
<e:ToggleButton id="btnDay1" label="第一天" x="648.36" y="173.68" scaleX="0.8" scaleY="0.8">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image width="100%" height="100%" source="btn_apay" source.down="btn_apay2" source.disabled="btn_apay2"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" size="20" stroke="1"/>
</e:Skin>
</e:skinName>
</e:ToggleButton>
<e:ToggleButton id="btnDay2" label="第二天" x="648.36" y="214.68" scaleX="0.8" scaleY="0.8">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image width="100%" height="100%" source="btn_apay" source.down="btn_apay2" source.disabled="btn_apay2"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" size="20" stroke="1"/>
</e:Skin>
</e:skinName>
</e:ToggleButton>
<e:ToggleButton id="btnDay3" label="第三天" x="648.36" y="255.68" scaleX="0.8" scaleY="0.8">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image width="100%" height="100%" source="btn_apay" source.down="btn_apay2" source.disabled="btn_apay2"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" size="20" stroke="1"/>
</e:Skin>
</e:skinName>
</e:ToggleButton>
<e:Group x="725.5" y="170.5">
<app:RedDotControl id="redPoint1" x="38" y="189"/>
<app:RedDotControl id="redPoint2" x="48" y="199"/>
<app:RedDotControl id="redPoint3" x="58" y="209"/>
<e:layout>
<e:VerticalLayout gap="25"/>
</e:layout>
</e:Group>
<e:Label id="label" text="您已完成首充" x="560" y="343" textColor="0x28ee01" size="20" stroke="2"/>
</e:Skin>

View File

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivitySecondChargeViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*" width="846" height="439">
<e:Group id="dragDropUI" anchorOffsetX="0" width="844" anchorOffsetY="0" height="437">
</e:Group>
<e:Image x="40" y="0" source="fc_bg2" touchEnabled="false"/>
<e:Image x="-55" y="-76" touchEnabled="false" source="fc_p_2"/>
<e:Group id="effGrp" x="117" y="210"/>
<e:Image id="imgDesc" x="160" y="20" touchEnabled="false" source="fc_t5"/>
<e:Button id="btnClose" label="" width="61" height="57" y="57.55" x="738.3">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="huanying_x" source.down="huanying_x" source.disabled="huanying_x"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnCharge" x="343" y="310" width="204" height="97">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="fc_btn_1" source.down="fc_btn_1" source.disabled="fc_btn_1"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnGetGfit" label="" x="343" y="310" width="204" height="97" visible="false">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="fc_btn_2" source.down="fc_btn_2" source.disabled="fc_btn_2"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Group y="222" x="328">
<e:List id="itemList" itemRendererSkinName="ItemBaseSkin">
<e:layout>
<e:HorizontalLayout horizontalAlign="center"/>
</e:layout>
<e:ArrayCollection>
<e:Array>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
</e:Array>
</e:ArrayCollection>
</e:List>
</e:Group>
<e:Group id="receiveGroup" touchChildren="false" touchEnabled="false" touchThrough="false" x="387.98" y="308.03" visible="false">
<e:Image source="fc_yilingqu"/>
</e:Group>
<e:Group id="itemEffGrp" x="358.8" y="252.4" touchEnabled="false" touchChildren="false">
</e:Group>
<e:Label id="label" text="您已完成首充" x="560" y="343" textColor="0x28ee01" size="20" stroke="2"/>
</e:Skin>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityWarButtonSkin" currentState="up" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*"
states="down,up" width="130" height="40">
<e:Image horizontalCenter="0" verticalCenter="0" source="com_yeqian_6"/>
<e:Image visible.up="false" horizontalCenter="0" verticalCenter="0" source="com_yeqian_7"/>
<e:Label id="labelDisplay" text="" size="22" horizontalCenter="0" verticalCenter="0" textColor="0xEBC592" bold="false" textAlign="center" verticalAlign="middle" stroke="2" size.down="22" textColor.down="0xe5ddcf" textColor.up="0xf0c896"/>
<app:RedDotControl id="redDot" width="20" height="20" top="0" right="-5" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,51 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityWarGiftAdvGoodsViewSkin" width="576" height="452" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing">
<app:UIViewFrame id="dragDropUI" skinName="UIViewFrameSkin" currentState="default12" x="0" y="0" scaleX="1" scaleY="1"/>
<e:Image source="apay_tab_bg" x="8.6" y="45" scale9Grid="60,60,12,12" width="557" height="335.67" anchorOffsetX="0" anchorOffsetY="0"/>
<e:Button id="btnCannel" label="取消" width="113" height="46" x="83" y="389" scaleX="1" scaleY="1">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnBuy" label="购买" width="113" height="46" x="368" y="389" scaleX="1" scaleY="1">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Image id="bg" x="26" y="89" fillMode="scale" scale9Grid="12,11,1,1" anchorOffsetX="0" width="527" anchorOffsetY="0" height="202" scaleX="1" scaleY="1" source="com_bg_kuang_xian2"/>
<e:Label id="lbTitle" text="购买11级可以获得以下奖励" x="170" y="58.34" size="20" textColor="0xF0C896" stroke="2"/>
<e:Label id="lbBuyDesc" text="购买X级后战令可提升至XX级" x="28" y="304.34" size="18" textColor="0xF0C896" stroke="2"/>
<e:Label text="消耗:" x="345" y="339" size="18" textColor="0xF0C896" stroke="2"/>
<e:Label id="lbCost" text="6660元宝" x="396" y="339" size="18" textColor="0xa18a1a"/>
<e:Button id="btnSub" label="" x="31" y="335" width="32">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image scaleX.down="0.95" scaleY.down="0.95" source="com_jian" source.down="com_jian"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnAdd" label="" x="135" y="335">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image scaleX.down="0.95" scaleY.down="0.95" source="com_jia" source.down="com_jia"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Image x="66" y="334" anchorOffsetX="0" width="66" source="com_bg_kuang_3" scale9Grid="15,13,2,3"/>
<e:Label id="lbCount" text="100" size="20" horizontalCenter="-189" textAlign="center" verticalCenter="125" textColor="0xa18a1a"/>
<e:Scroller width="523" height="194" x="28" y="93" anchorOffsetX="0" anchorOffsetY="0">
<e:List id="list" itemRendererSkinName="ItemBaseSkin">
<e:layout>
<e:TileLayout horizontalGap="15"/>
</e:layout>
</e:List>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityWarGiftAdvViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing" width="315" height="405">
<!--<app:UIViewFrame id="dragDropUI" skinName="UIViewFrameSkin" currentState="default12" x="0" y="0" scaleX="1" scaleY="1"/>-->
<e:Image id="dragDropUI" x="0" y="0" source="zl_bgk1" scale9Grid="39,50,237,305" anchorOffsetY="0"/>
<e:Image x="22" y="30" source="zl_pzp2" touchEnabled="false"/>
<e:Button id="btnBuy1" label="购买" width="113" height="46" y="310" scaleX="1" scaleY="1" x="101">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay" source.disabled="btn_apay2"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" textColor.disabled="0xb9b9b9"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Label id="lbGoldDesc" text="" x="60" y="120" size="18" width="199" lineSpacing="5" stroke="2"/>
<e:Label text="售价:" x="94" y="280" size="18" textColor="0xe0ae75"/>
<e:Label id="lbGoldCost" text="6660元宝" x="144" y="280" size="18" textColor="0xe0ae75"/>
<e:Button id="closeBtn" label="" width="61" height="57" top="0" right="-5">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="apay_x2" source.down="apay_x2" source.disabled="apay_x2" scaleX.down="0.98" scaleY.down="0.98"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
</e:Skin>

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityWarGiftGoodsViewSkin" width="576" height="452" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing">
<app:UIViewFrame id="dragDropUI" skinName="UIViewFrameSkin" currentState="default12" x="0" y="0" scaleX="1" scaleY="1"/>
<e:Image source="apay_tab_bg" x="8.6" y="45" scale9Grid="60,60,12,12" width="557" height="335.67" anchorOffsetX="0" anchorOffsetY="0"/>
<e:Button id="btnCannel" label="取消" width="113" height="46" x="83" y="389" scaleX="1" scaleY="1" visible="false">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnBuy" label="购买" width="113" height="46" x="368" y="389" scaleX="1" scaleY="1" visible="false">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Image id="bg" x="26" y="89" fillMode="scale" scale9Grid="12,11,1,1" anchorOffsetX="0" width="527" anchorOffsetY="0" height="284" scaleX="1" scaleY="1" source="com_bg_kuang_xian2"/>
<e:Label id="lbTitle" text="购买至尊凭证可以直接获得以下所有奖励!" size="20" textAlign="center" horizontalCenter="11" verticalCenter="-153" textColor="0x28ee01" stroke="2"/>
<e:Scroller width="523" height="278" x="28" y="93" anchorOffsetX="0" anchorOffsetY="0">
<e:List id="list" itemRendererSkinName="ItemBaseSkin">
<e:layout>
<e:TileLayout horizontalGap="15" paddingLeft="6"/>
</e:layout>
</e:List>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityWarItemViewSkin" width="79" height="359" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing">
<e:Label id="lbTitle" text="一级" size="20" textColor="0xF0C896" textAlign="center" horizontalCenter="3.5" top="18" stroke="2"/>
<app:ItemBase id="itemCommon" width="60" height="60" y="84" anchorOffsetX="0" anchorOffsetY="0" skinName="ItemBaseSkin" horizontalCenter="0.5"/>
<e:Image id="imgCommon" source="zl_t_yihuode" x="5" y="86" touchEnabled="false" visible="false"/>
<e:Group id="groupCommon" width="6" height="5" x="38.5" y="110" anchorOffsetX="0" anchorOffsetY="0" touchEnabled="false"/>
<e:Image id="iconCommonLock" source="zl_iconzw" x="10" y="84" visible="false"/>
<app:ItemBase id="itemGold" width="60" height="60" y="223" anchorOffsetX="0" anchorOffsetY="0" skinName="ItemBaseSkin" x="10"/>
<e:Image id="imgGold" source="zl_t_yihuode" x="4" y="226" touchEnabled="false" visible="false"/>
<e:Group id="groupGold" width="6" height="5" x="40.18" y="249.98" anchorOffsetX="0" anchorOffsetY="0" touchEnabled="false"/>
<e:Image id="iconGoldLock" x="10" y="223" source="zl_iconzw" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityWarTaskItemViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing" width="703" height="115">
<e:Image source="apay_liebiao_bg_png" scale9Grid="26,14,609,87" width="703"/>
<e:Button id="goButton" label="前 往" width="113" height="46" x="567" y="38">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay" source.disabled="btn_apay2"/>
<e:Label id="labelDisplay" stroke="2" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" textColor.disabled="0xb9b9b9"/>
</e:Skin>
</e:skinName>
</e:Button>
<app:RedDotControl id="redDot" width="20" height="20" x="662.06" y="39.43" visible="false"/>
<e:Image id="receiveImg" x="580" y="23" source="zl_t_yiwancheng" visible="false"/>
<e:Label id="lbTitle" text="沙巴克攻城100000/100000" y="21" size="24" left="32" textColor="0xe0ae75" stroke="2"/>
<e:Label id="lbScoreName" text="积分:" y="21" size="24" left="367" textColor="0xe0ae75" stroke="2"/>
<e:Label id="lbScore" text="1000" y="21" size="24" left="435" textColor="0xe0ae75" stroke="2"/>
<e:Label id="lbDesc" text="已连续登录5/5天" y="68" size="24" x="32" textColor="0xff7700" stroke="2"/>
</e:Skin>

View File

@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityWarViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*" width="1027" height="690">
<e:Image id="dragDropUI" source="apay_bg2_png"/>
<e:Image id="titleImg" touchEnabled="false" horizontalCenter="5" top="55" source="zl_biaoti"/>
<e:Image x="80" y="115" width="148" height="541" source="com_bg_kuang_6_png" scale9Grid="17,18,2,4" anchorOffsetY="0" anchorOffsetX="0"/>
<e:Image x="236" y="115" width="709" height="467" source="com_bg_kuang_6_png" scale9Grid="17,18,2,4" anchorOffsetY="0" anchorOffsetX="0"/>
<e:Image x="236" y="590" width="709" height="66" source="com_bg_kuang_6_png" scale9Grid="17,18,2,4" anchorOffsetY="0" anchorOffsetX="0"/>
<e:Group width="147" x="79" y="117" anchorOffsetX="0">
<e:Button id="rewardButton" label="奖 励" width="147" height="59">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="tab_01_2" source.down="tab_01_1"/>
<e:Label id="labelDisplay" text="" size="22" horizontalCenter="0" verticalCenter="0" textColor="0xEBC592" bold="false" textAlign="center" verticalAlign="middle" stroke="2" size.down="22" textColor.down="0xe5ddcf" textColor.up="0xf0c896"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="taskButton" label="任 务" width="147" height="59">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="tab_01_2" source.down="tab_01_1"/>
<e:Label id="labelDisplay" text="" size="22" horizontalCenter="0" verticalCenter="0" textColor="0xEBC592" bold="false" textAlign="center" verticalAlign="middle" stroke="2" size.down="22" textColor.down="0xe5ddcf" textColor.up="0xf0c896"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:TabBar id="tabBarMenu" itemRendererSkinName="ActivityWarButtonSkin" anchorOffsetX="0" width="145" height="0" visible="false">
<e:layout>
<e:VerticalLayout horizontalAlign="center" gap="1"/>
</e:layout>
</e:TabBar>
<e:Button id="shopButton" label="商 店" width="147" height="59">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="tab_01_2" source.down="tab_01_1"/>
<e:Label id="labelDisplay" text="" size="22" horizontalCenter="0" verticalCenter="0" textColor="0xEBC592" bold="false" textAlign="center" verticalAlign="middle" stroke="2" size.down="22" textColor.down="0xe5ddcf" textColor.up="0xf0c896"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:layout>
<e:VerticalLayout gap="0"/>
</e:layout>
</e:Group>
<app:RedDotControl id="rewardDot" width="20" height="20" x="204" y="121" visible="false"/>
<app:RedDotControl id="taskDot" width="20" height="20" x="204" y="180" visible="false"/>
<e:Group id="group_award" width="717" height="552" x="230" y="120" anchorOffsetX="0" anchorOffsetY="0" touchEnabled="false">
<e:Image source="zl_bg_png" x="6" y="-2"/>
<e:Group width="709" height="362" x="9" y="55" anchorOffsetX="0" anchorOffsetY="0">
<e:Image id="imageBlue" x="707" y="59" scaleX="-1" anchorOffsetY="0" height="143" anchorOffsetX="0" width="710" source="zl_hd_1"/>
<e:Image id="imageRed" x="707" y="204" scaleX="-1" anchorOffsetY="0" height="145" anchorOffsetX="0" width="710" source="zl_hd_2"/>
<e:Image source="zl_xian_1" x="-2" y="56.42" width="707"/>
<e:Image source="zl_xian_1" x="-2" y="201.42" width="707"/>
<e:Image source="war_json.zl_p_1" x="21" y="89"/>
<e:Image id="imgGold" source="war_json.zl_p_2" x="21" y="224"/>
<e:List id="listWar" width="564" height="359" x="131" y="16" anchorOffsetX="0" anchorOffsetY="0" itemRendererSkinName="ActivityWarItemViewSkin">
<e:layout>
<e:HorizontalLayout gap="3"/>
</e:layout>
<e:ArrayCollection>
<e:Array>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
</e:Array>
</e:ArrayCollection>
</e:List>
<e:Image source="zl_xian_2" x="134" height="362" y="0.66"/>
</e:Group>
<e:Group height="54" x="33" y="477.66" anchorOffsetX="0" anchorOffsetY="0">
<e:Button id="btnActVoucher" label="激活凭证" width="113" height="46" x="43" y="3">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" stroke="2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnGetCredit" label="获取积分" width="113" height="46" x="193" y="3">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" stroke="2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnFastBuy" label="快捷购买" width="113" height="46" x="396" y="3">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" stroke="2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnOnekeyGet" label="一键领取" width="113" height="46" x="599" y="3">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" stroke="2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:layout>
<e:HorizontalLayout gap="68"/>
</e:layout>
</e:Group>
<e:Button id="btnLeft" label="" x="6" y="235" scaleX="0.8" scaleY="0.8">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="kf_lb_jt1" source.down="kf_lb_jt1"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<app:RedDotControl id="redDot" width="20" height="20" x="673.85" y="478.35" visible="false"/>
<e:Button id="btnRight" label="" x="688" y="235" scaleX="0.8" scaleY="0.8">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="kf_lb_jt2" source.down="kf_lb_jt2"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Label id="lbTimer" text="剩余时间12天12时12分" x="68" y="22" size="20" textColor="0xf0c896" stroke="2"/>
<e:Label text="(本期活动结束后战令币不会被清零)" x="294" y="22" size="20" stroke="2" textColor="0xe50000" bold="true"/>
<e:Label text="凭证等级:" x="54" y="435" size="20" textColor="0xF0C896" stroke="2"/>
<e:Label text="当前积分:" x="215" y="435" size="20" textColor="0xF0C896" stroke="2"/>
<e:Label text="等级" x="90.9" y="85.98" size="20" textColor="0xF0C896" stroke="2"/>
<e:Label id="lbVoucherLv" text="100" x="150" y="435" size="20" textColor="0xF0C896" stroke="2"/>
<app:RuleTipsButton id="btnHelp" label="Button" x="14.75" y="16.35" ruleId="75"/>
<e:Image x="319" y="432" source="common_slider_bg"/>
<e:ProgressBar id="pbTaskInt" value="50" x="321" y="435" skinName="bar3Skin"/>
</e:Group>
<e:Group id="group_task" width="715" height="552" x="230" y="120" anchorOffsetX="0" anchorOffsetY="0" touchEnabled="false" visible="false">
<e:Scroller id="scroller" width="703" height="476" y="5" anchorOffsetY="0" x="9" anchorOffsetX="0">
<e:List id="list_task" itemRendererSkinName="ActivityWarTaskItemViewSkin">
<e:ArrayCollection>
<e:Array>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
</e:Array>
</e:ArrayCollection>
<e:layout>
<e:VerticalLayout gap="1"/>
</e:layout>
</e:List>
</e:Scroller>
<e:Label id="lbTaskDesc" text="今日任务积分" y="500" size="22" textColor="0xF0C896" stroke="2" right="461"/>
<e:Image x="255" y="499" source="common_slider_bg"/>
<e:ProgressBar id="pbTask" width="324" value="50" x="258" y="502" skinName="bar3Skin"/>
<app:RuleTipsButton id="btnHelp0" label="Button" x="39" y="494" ruleId="76"/>
</e:Group>
<e:Group id="group_shop" width="709" height="535" x="236" y="120" anchorOffsetX="0" anchorOffsetY="0" visible="false">
<e:Scroller id="scrollerShop" height="462" anchorOffsetX="0" anchorOffsetY="0" width="715">
<e:List id="gList" height="503" x="3" y="0" itemRendererSkinName="ShopItemViewSkin">
<e:layout>
<e:TileLayout orientation="rows" horizontalAlign="center" verticalAlign="middle" verticalGap="6" requestedColumnCount="3" horizontalGap="9" paddingLeft="10" paddingTop="10"/>
</e:layout>
<e:ArrayCollection>
<e:Array>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
<e:Object a="null"/>
</e:Array>
</e:ArrayCollection>
</e:List>
</e:Scroller>
<e:Image x="34" y="483" source="main_zlb" scaleX="1" scaleY="1"/>
<e:Label id="warNum" text="56565" x="79" y="494" size="20" stroke="2" textColor="0xe5ddcf"/>
</e:Group>
<e:Button id="btnClose" label="" width="61" height="57" x="931" y="56">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="apay_x2" source.down="apay_x2" source.disabled="apay_x2" scaleX.down="0.98" scaleY.down="0.98"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
</e:Skin>

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="WarShopItemViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*" width="271" height="136">
<e:Group id="gp" width="271" height="136">
<e:Image id="bg" x="0" y="0" source="shop_bg1"/>
<e:Image source="shop_iconk" x="32" y="63"/>
<e:Image source="shop_bg_xian" x="11" y="43" width="246"/>
<e:Label id="shopItemNameLb" text="绑定金币" size="22" verticalCenter="-43.5" horizontalCenter="-4" textColor="0xf0c896" stroke="2"/>
<e:Group id="surplusCountLb" width="112" height="20" x="113" y="64" >
<e:Label id="numTxt" text="" size="18" horizontalCenter="-10" verticalCenter="0" width="91" x="0" y="1" textColor="0xe5ddcf" stroke="2"/>
<e:Label id="numLb" text="" size="18" width="32" x="81" y="0.7" textColor="0xe5ddcf" stroke="2"/>
</e:Group>
<e:Image id="goodsItem" source="11027" x="32.33" y="63.67"/>
<e:Label id="countLb" text="10" y="105" size="18" textColor="0xdcd2be" right="182" stroke="1"/>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityWlelfareCardItemView" width="400" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Label id="labelDisplay" text="每天免费领取30000" x="33.98" y="0" size="20" textColor="0x5084fa" multiline="true" anchorOffsetX="0" width="364"/>
<e:Image source="wlelfare_json.yk_dian" x="8" y="1"/>
</e:Skin>

View File

@@ -0,0 +1,145 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityWlelfareViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*" width="1027" height="690">
<e:Image id="dragDropUI" source="apay_bg2_png"/>
<e:Image x="80" y="115" width="154" height="538" source="com_bg_kuang_6_png" scale9Grid="17,18,2,4"/>
<e:Image id="bgImg1" x="239" y="115" width="707" height="405" scale9Grid="18,15,4,3" alpha="0.7" source="flqd_bg0"/>
<e:Image id="bgImg2" x="239" y="557" width="707" height="96" source="com_bg_kuang_6_png" scale9Grid="18,15,4,3"/>
<e:Button id="btnClose" label="" width="61" height="57" x="931" y="56">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="apay_x2" source.down="apay_x2" source.disabled="apay_x2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Image id="imgTitle" y="55.31" horizontalCenter="-3.5" touchEnabled="false" x="238" scaleX="1" scaleY="1" source="biaoti_fuli"/>
<e:Group width="707" height="538" x="239" y="115" touchEnabled="false">
<e:Group id="group_10005" width="707" height="538" x="0" y="0">
<e:Scroller id="CalendaScroller" y="2" x="-2">
<e:List id="listCalenda" width="705" height="403" itemRendererSkinName="SignItemViewSkin" x="-2" y="2">
<e:layout>
<e:TileLayout horizontalGap="5" horizontalAlign="center" verticalGap="5" paddingLeft="1"/>
</e:layout>
</e:List>
</e:Scroller>
<e:BitmapLabel id="bmpLb_curM" width="79" height="31" x="29" y="38" font="signNum_1_fnt" text="10月" anchorOffsetX="0" anchorOffsetY="0" visible="false"/>
<e:TabBar id="tabItem" x="2.66" y="409.68" itemRendererSkinName="ActWleFareTabSkin">
<e:ArrayCollection>
<e:Array>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
</e:Array>
</e:ArrayCollection>
<e:layout>
<e:HorizontalLayout gap="1"/>
</e:layout>
</e:TabBar>
<e:Scroller x="25.04" y="459.95" width="481.33" anchorOffsetY="0" height="69.67" anchorOffsetX="0">
<e:List id="itemList" itemRendererSkinName="ItemBaseSkin" anchorOffsetX="0" width="372" x="-9" y="0" anchorOffsetY="0" height="64.33">
<e:layout>
<e:HorizontalLayout/>
</e:layout>
</e:List>
</e:Scroller>
<e:Button id="btnSign" label="签到" x="565" y="416" skinName="Btn9Skin" visible="false">
</e:Button>
<e:Button id="btnGetGift" label="领取奖励" width="113" height="46" x="551.66" y="483.68" scaleX="1" scaleY="1" skinName="Btn9Skin">
</e:Button>
<e:Image id="imgYiGet" width="95" height="68" x="563.22" y="467.14" source="apay_yilingqu" anchorOffsetX="0" anchorOffsetY="0" scaleX="1" scaleY="1"/>
<app:RedDotControl id="redDotSign" width="20" height="20" x="663.08" y="411.99" visible="false"/>
<app:RuleTipsButton id="btnHelp0" label="Button" x="476.08" y="408.98" ruleId="68" scaleX="1" scaleY="1"/>
<e:Label id="bmpLb_signNum" text="本月已签到15天" size="18" textColor="0xff7700" stroke="2" verticalCenter="193" horizontalCenter="255"/>
</e:Group>
<e:Group id="group_10007" width="707" height="538" visible="false">
<e:Image source="yk_bg_png" width="707"/>
<e:Image source="wlelfare_json.yk_biaoqian_0" x="250.99" y="198.65"/>
<e:Image id="imgCardIcon" x="231" y="46" source=""/>
<e:Image id="imgMonthCardTitle" x="289.98" y="192" source="yk_biaoqian_1"/>
<e:Image id="imgMonthCardDay" x="619" y="222" source="wlelfare_json.yk_30tian2"/>
<e:Button id="btnBuy" label="68元购买" x="261" y="459" anchorOffsetX="0" width="180" anchorOffsetY="0" height="83">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="yk_btn" source.down="yk_btn" source.disabled="yk_btn"/>
<e:Label id="labelDisplay" verticalCenter="-2" size="20" textColor="0x1f0000" bold="true" horizontalCenter="4"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Label id="lbDesc" text="购买月卡不计入首充" x="24" y="507" size="20" textColor="0x735505" visible="false"/>
<e:Label id="lbDay" text="剩余28天" x="546" y="508" size="20" textColor="0x16b500" />
<e:List id="listCardDesc" width="504.55" x="105" anchorOffsetX="0" anchorOffsetY="0" verticalCenter="27.5">
<e:ArrayCollection>
<e:Array>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
<e:Object null=""/>
</e:Array>
</e:ArrayCollection>
<e:layout>
<e:VerticalLayout verticalAlign="contentJustify"/>
</e:layout>
</e:List>
<app:RuleTipsButton id="btnHelp" label="Button" x="17.67" y="14.43" ruleId="19"/>
</e:Group>
<e:Group id="group_10011" width="707" height="538" visible="false">
<e:Image source="fl_jhm_bg_png" width="707" height="538"/>
<e:Button id="btnPaste" label="" x="555" y="334.33" visible="false">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="fl_jhm_btn_2" source.down="fl_jhm_btn_2"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnGetAward" label="" x="363" y="412">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image id="btnTips" horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="fl_jhm_btn_1" source.down="fl_jhm_btn_1"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:EditableText id="InputCode" width="284" text="" x="259.65" size="20" height="30" verticalAlign="middle" y="338.99" textAlign="center" maxChars="120" anchorOffsetX="0" anchorOffsetY="0" prompt="&lt;请输入激活码&gt;" textColor="0xf9efef"/>
</e:Group>
<e:Group id="group_yqs" width="707" height="538" visible="false">
<e:Image source="yqs_bg_png" />
<app:RuleTipsButton id="btnHelp_yqs" label="Button" ruleId="91" x="660" y="20" />
<e:Group x="175.5" y="30">
<e:Image id="cash_imgTree" source="btnbg_png" anchorOffsetX="160" anchorOffsetY="330" x="160" y="330"/>
</e:Group>
<e:Group id="cash_effGrp" verticalCenter="70" horizontalCenter="-10"/>
<e:Image source="yqs_wz" x="95" y="40" />
<e:Label id="cash_txtCondition" text="官职达到六品开启摇钱树功能" y="412" size="18" width="250" textAlign="center" x="229" textColor="0xe5ddcf" stroke="2"/>
<e:Label id="cash_txtAward" text="可获得: 3300000(有10%的几率暴击)" size="17" x="250" y="414" textColor="0xe5ddcf" stroke="2"/>
<e:Label id="cash_txtCost" text="消耗: 300(优先消耗摇钱树叶)" size="17" y="510" x="250" textColor="0xe5ddcf" stroke="2"/>
<e:Image id="cash_imgAward" x="311" y="402" source="icon_bangding"/>
<e:Image id="cast_imgCost" x="291" y="499" source="icon_yuanbao"/>
<e:Label id="cash_txtTime" text="剩余次数10" y="467" size="17" x="440" textColor="0xe5ddcf" stroke="2"/>
<e:Button id="btnCash" label="" y="444" horizontalCenter="0">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="yqs_btn" source.down="yqs_btn"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" stroke="2"/>
</e:Skin>
</e:skinName>
</e:Button>
<app:RedDotControl id="cash_redPoint" y="444" horizontalCenter="50" visible="false"/>
</e:Group>
</e:Group>
<e:Group id="infoGrp" width="707" height="538" x="239" y="115" touchEnabled="false">
<e:Image source="com_bg_kuang_6_png" scale9Grid="17,18,2,4" scaleX="1" scaleY="1" left="0" right="0" top="0" bottom="0"/>
</e:Group>
<e:Scroller id="tabScroller" x="83" y="118" width="147" height="536">
<e:TabBar id="tabBarMenu" itemRendererSkinName="ActivityPayButtonSkin">
<e:layout>
<e:VerticalLayout horizontalAlign="center" gap="-3"/>
</e:layout>
</e:TabBar>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="SignItemViewSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" width="96" height="95">
<e:BitmapLabel id="bmpLb" font="signNum_2_fnt" text="16" anchorOffsetX="0" anchorOffsetY="0" horizontalCenter="-27" verticalCenter="7.5" visible="false"/>
<e:Image source="flqd_bg1" scale9Grid="24,23,2,3" left="0" right="0" top="0" bottom="0" alpha="0.9"/>
<e:Image id="imgIcon" source="13398" horizontalCenter="0" verticalCenter="0"/>
<e:Label id="itemCount" text="20" size="16" bottom="5" right="5" textColor="0xe5ddcf" stroke="2"/>
<e:Label id="curDay" text="12月8号" textColor="0xe5ddcf" stroke="2" size="16" left="5" top="7" visible="false"/>
<e:Image id="lastImg" source="flqd_bg2" scale9Grid="21,23,2,2" left="2" right="2" top="2" bottom="2"/>
<e:Image id="imgToday" source="flqd_bg3" scale9Grid="28,24,3,6" left="0" right="0" top="0" bottom="0"/>
<e:Image id="imgYiqiandao" source="flqd_qd1" horizontalCenter="-31" verticalCenter="-29.5" scaleX="0.7" scaleY="0.7" rotation="-45"/>
<e:Image id="signLab" source="flqd_djqd" horizontalCenter="0" verticalCenter="0" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityAdvertViewSkin" width="707" height="538" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Image id="bgImg" top="0" horizontalCenter="0" source=""/>
<e:Image source="festival_xiala" horizontalCenter="0" y="128" />
<e:Image id="advertImg" source="" horizontalCenter="0" top="133"/>
<e:Label id="timeLab" text="剩余时间:" x="161" y="18" size="22" textColor="0xffe500" stroke="2"/>
<e:Label id="actTime" text="" x="267" y="18" size="22" stroke="2" textColor="0x28ee01"/>
<e:Label id="descLab" text="活动内容:" x="159.5" y="48" size="22" textColor="0xFFE500" stroke="2"/>
<e:Label id="actDesc" text="" x="267" y="48" size="22" stroke="2" textColor="0xe7c590" width="385"/>
<e:Label id="curValue" text="" x="159.5" y="94" size="22" textColor="0xffe500" stroke="2"/>
</e:Skin>

View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityExchangeItemViewSkin" width="700" height="115" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing">
<e:Image source="apay_liebiao_bg_png" width="700"/>
<e:Button id="exchangeBtn" label="兑 换" width="113" height="46" x="544.5" y="22">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay" source.disabled="btn_apay2"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896" textColor.disabled="0xb9b9b9"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Label id="descLab" text="7转开放" size="22" stroke="2" verticalCenter="-1.5" horizontalCenter="41.5" textColor="0x28ee01"/>
<app:RedDotControl id="redPoint" x="644" y="19" visible="false"/>
<e:Image id="receiveImg" x="557" y="20" source="apay_yilingqu" visible="false"/>
<e:Label id="countLab" text="剩余次数10" x="545" y="79" size="20" textColor="0xe5ddcf" stroke="2"/>
<e:Group height="81" verticalCenter="3" horizontalCenter="-272">
<app:ItemBase id="itemData0" top="0" horizontalCenter="0" skinName="ItemBaseSkin"/>
<e:Label id="itemLab0" text="" size="16" horizontalCenter="0" bottom="0" stroke="2" textColor="0xe5ddcf"/>
</e:Group>
<e:Image x="132" y="38" source="com_jiantoux3"/>
<e:Group height="81" horizontalCenter="-134" verticalCenter="3">
<app:ItemBase id="targetItem" top="0" horizontalCenter="0" skinName="ItemBaseSkin"/>
<e:Label id="targetLab" text="" size="16" horizontalCenter="0" bottom="0" stroke="2" textColor="0xe5ddcf"/>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityExchangeViewSkin" width="707" height="538" xmlns:e="http://ns.egret.com/eui"
xmlns:w="http://ns.egret.com/wing">
<e:Image id="bgImg" top="0" horizontalCenter="0" source="" />
<e:Image source="festival_xiala" horizontalCenter="0" y="128" />
<e:Label id="timeLab" text="剩余时间:" x="161" y="18" size="22" textColor="0xffe500" stroke="2" />
<e:Label id="actTime" text="" x="267" y="18" size="22" stroke="2" textColor="0x28ee01" />
<e:Label id="descLab" text="活动内容:" x="159.5" y="48" size="22" textColor="0xFFE500" stroke="2" />
<e:Label id="actDesc" text="" x="267" y="48" size="22" stroke="2" textColor="0xe7c590" width="385" />
<e:Label id="curValue" text="" x="159.5" y="94" size="22" textColor="0xffe500" stroke="2" />
<e:Scroller id="sportsScroller" horizontalCenter="1" verticalCenter="65" height="400">
<e:List id="sportsList" itemRendererSkinName="ActivityExchangeItemViewSkin">
<e:layout>
<e:VerticalLayout gap="0" />
</e:layout>
</e:List>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityPayButtonSkin" currentState="up" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*"
states="down,up" width="147" height="59">
<e:Image source="tab_01_2" horizontalCenter="0" verticalCenter="0"/>
<e:Image source="tab_01_1" visible.up="false" horizontalCenter="0" verticalCenter="0"/>
<e:Label id="labelDisplay" text="" size="22" horizontalCenter="0" verticalCenter="0" textColor="0xEBC592" bold="false" textAlign="center" verticalAlign="middle" stroke="2" size.down="22" textColor.down="0xe5ddcf" textColor.up="0xf0c896"/>
<app:RedDotControl id="redDot" width="20" height="20" top="5" right="2" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityPaySkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" width="1027" height="690">
<e:Image id="dragDropUI" source="apay_bg2_png"/>
<e:Image x="80" y="115" width="154" height="538" source="com_bg_kuang_6_png" scale9Grid="17,18,2,4"/>
<e:Image x="239" y="115" width="707" height="538" source="com_bg_kuang_6_png" scale9Grid="18,15,4,3"/>
<e:Image id="titleImg" touchEnabled="false" source="apay_biaoti_jchd" horizontalCenter="5" top="55"/>
<e:Button id="closeBtn" label="" width="61" height="57" x="931" y="56">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="apay_x2" source.down="apay_x2" source.disabled="apay_x2" scaleX.down="0.98" scaleY.down="0.98"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Group id="infoGrp" width="707" height="538" x="239" y="115" touchEnabled="false">
</e:Group>
<e:Scroller id="btnScroller" height="536" x="83" y="118" width="147">
<e:TabBar id="tabBar" height="200" x="-10" y="10" itemRendererSkinName="ActivityPayButtonSkin">
<e:layout>
<e:VerticalLayout horizontalAlign="center" gap="-3"/>
</e:layout>
</e:TabBar>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="ActivityPreferentialSkin" width="707" height="538" xmlns:e="http://ns.egret.com/eui"
xmlns:w="http://ns.egret.com/wing">
<e:Image id="bgImg" source="" horizontalCenter="0" top="0" />
<e:Image y="128" source="festival_xiala" horizontalCenter="0" />
<e:Image x="248" y="95" source="apay_time_bg" />
<e:Scroller id="itemScroller" width="700" height="400" y="135" horizontalCenter="0">
<e:List id="list" itemRendererSkinName="PayItemRenderSkin">
<e:layout>
<e:VerticalLayout gap="1" />
</e:layout>
</e:List>
</e:Scroller>
<e:Label id="timeLabel" text="活动剩余时间17:30" y="101" size="20" textColor="0x28ee01" scaleX="1" scaleY="1" stroke="2"
right="9" />
<e:Label id="descLabel" text="" y="17" size="20" x="243" stroke="2" height="74" width="422" lineSpacing="5" scaleX="1"
scaleY="1" anchorOffsetX="0" textColor="0xeee104" />
</e:Skin>

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="PayItemRenderSkin" width="700" height="115" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image source="apay_liebiao_bg_png" width="700" scale9Grid="82,60,493,41"/>
<e:Group y="12" x="74">
<e:Label id="desLabel" text="" x="0" y="0" size="24" textColor="0xff7700" stroke="2" scaleX="1" scaleY="1"/>
<e:Label id="limitLab" text="" x="160" y="4" size="18" textColor="0x28ee01" scaleX="1" scaleY="1" stroke="2"/>
<e:layout>
<e:HorizontalLayout verticalAlign="bottom" gap="11"/>
</e:layout>
</e:Group>
<e:Group id="info10002" width="151" height="115" x="535" y="0">
<e:Image id="moneyImage" x="33" y="13" source="icon_yuanbao"/>
<e:Label id="moneyLabel" text="" x="72" y="23" size="20" textColor="0xf0c896" stroke="2"/>
</e:Group>
<e:Group id="info10001" width="151" height="115" x="535" y="0" visible="false">
<e:Label id="needsLabel" text="" y="23" size="20" textColor="0xF0C896" horizontalCenter="-1" stroke="2"/>
</e:Group>
<e:Button id="buyButton" label="" width="113" height="46" x="557" y="51">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="btn_apay" source.down="btn_apay"/>
<e:Label id="labelDisplay" size="20" horizontalCenter="0" verticalCenter="0" textColor="0xf0c896"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:List id="list" width="418" x="70" y="42" anchorOffsetY="0" anchorOffsetX="0" itemRendererSkinName="ItemBaseSkin">
<e:layout>
<e:HorizontalLayout gap="10"/>
</e:layout>
</e:List>
<e:Image id="endImage" source="apay_yishouwan" x="560" y="26" visible="false"/>
<e:Group id="discountGroup" touchChildren="false" touchEnabled="false" x="0">
<e:Image source="shop_jiaobiao"/>
<e:Image id="discountImage" source="shop_zhekou_9"/>
<e:Image source="shop_zhekou_bg"/>
</e:Group>
<app:RedDotControl id="redImage" x="657" y="48" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="Fuli2144SuperVipGiftSkin" width="868" height="545" xmlns:e="http://ns.egret.com/eui">
<e:Image x="5" y="5" source="banner_2144vip" />
<e:Image x="7" y="148" source="bg_2144vip_png" />
<e:Button id="rechargeBtn" label="" x="692" y="45" icon="t_lijichongzhi" width="137" height="56"
skinName="Btn26Skin" />
<e:Button id="copyBtn" label="" x="745" y="445" icon="t_fuzhi" width="137" height="56" skinName="Btn26Skin"
scaleX="0.75" scaleY="0.75" />
<e:Label id="qqLabel" text="" x="469" y="455" textColor="0xE5DDCF" size="24" stroke="1" />
<e:Label id="lab" text="" x="46" y="506" textAlign="left" textColor="0xE5DDCF" size="22" stroke="1" />
</e:Skin>

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="FuLi360WinSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image touchEnabled="false" source="bg_360dawanjia_png" />
<e:Label id="descLab" horizontalCenter="0.5" width="460" text="大玩家是360游戏中心的VIP高级用户在享受游戏给您带来快乐的同时更享受诸多特权及优质的服务"
size="18" y="95" textColor="0xe5ddcf" />
<e:Button id="btnClose" label="" y="23" x="500" scaleX="0.8" scaleY="0.8">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95"
source="huanying_x" source.down="huanying_x" source.disabled="huanying_x" />
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="btnGetGfit" label="" y="240" width="142" height="41" horizontalCenter="0.5">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image width="100%" height="100%" source="btn_lijilingqu" source.down="btn_lijilingqu"
source.disabled="btn_lijilingqu" />
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" />
</e:Skin>
</e:skinName>
</e:Button>
<app:RedDotControl id="redPoint" x="353" y="235"/>
<e:Group horizontalCenter="0.5" y="160">
<e:List id="itemList" itemRendererSkinName="ItemBaseSkin">
<e:layout>
<e:HorizontalLayout horizontalAlign="center" gap="20" />
</e:layout>
<e:ArrayCollection>
<e:Array>
<e:Object null="" />
<e:Object null="" />
<e:Object null="" />
<e:Object null="" />
<e:Object null="" />
</e:Array>
</e:ArrayCollection>
</e:List>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="Fuli360AttestationWinSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*"
width="1027" height="690">
<e:Image id="dragDropUI" source="apay_bg2_png" />
<e:Image y="115" height="544" source="com_bg_kuang_6_png" scale9Grid="17,18,2,4" width="185" x="80" />
<e:Image y="115" height="544" source="com_bg_kuang_6_png" scale9Grid="18,15,4,3" width="675" x="270" />
<e:Image id="titleImg" touchEnabled="false" horizontalCenter="5.5" top="52" source="biaoti_smrz" />
<e:Button id="closeBtn" label="" width="61" height="57" x="931" y="56">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="apay_x2" source.down="apay_x2"
source.disabled="apay_x2" scaleX.down="0.98" scaleY.down="0.98" />
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Group id="infoGrp" height="540" y="117" touchEnabled="false" width="675" x="270">
<e:Image source="bg_360smrzlb_png" />
<e:Label id="descLab"
text="系统检测到您还没有进行实名制认证,根据国家相关政策规定,网游用户必须进行实名制认证。请您尽快完成实名认证,否则将会影响您的正常游戏体验及收益。现在完成实名认证还可以领取实名礼包。"
size="20" textColor="0xE5DDCF" stroke="1" lineSpacing="5" width="570" x="50" y="110" />
<e:List id="itemList" verticalCenter="105" horizontalCenter="0" itemRendererSkinName="FuLi4366ItemSkin">
<e:layout>
<e:HorizontalLayout gap="20" />
</e:layout>
</e:List>
<e:Button id="getBtn" label="" y="463" icon="fl_jhm_btn_1" skinName="Btn0Skin" width="137" height="56" x="265"/>
<app:RedDotControl id="redPoint" x="388" y="461"/>
<e:Image id="receiveImg" source="apay_yilingqu" horizontalCenter="0" bottom="16"/>
</e:Group>
<e:Scroller id="btnScroller" width="185" height="536" x="80" y="118">
<e:TabBar id="tabBar" width="200" height="200" itemRendererSkinName="FuliLuDaShiGiftTabSkin2">
<e:layout>
<e:VerticalLayout horizontalAlign="center" gap="-3" />
</e:layout>
</e:TabBar>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="Fuli37WinSkin" width="1027" height="690" xmlns:e="http://ns.egret.com/eui"
xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image id="dragDropUI" source="apay_bg2_png" />
<e:Image y="59" horizontalCenter="-0.5" touchEnabled="false" x="238" source="biaoti_37fulidating" />
<e:Image x="82" y="116" width="192" height="542" source="com_bg_kuang_6_png" scale9Grid="17,15,4,4" />
<e:Image source="com_bg_kuang_6_png" scale9Grid="18,15,3,4" x="278" y="116" width="670" height="542" />
<e:Button id="closeBtn" label="" width="61" height="57" x="931" y="56">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="apay_x2"
source.down="apay_x2" source.disabled="apay_x2" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Scroller id="btnScroller" width="185" height="536" x="85" y="119">
<e:TabBar id="tabBar" width="200" height="200" itemRendererSkinName="YYLobbyPrivilegesTabSkin">
<e:layout>
<e:VerticalLayout horizontalAlign="center" gap="8" />
</e:layout>
</e:TabBar>
</e:Scroller>
<e:Group id="infoGroup" width="667" height="540" touchEnabled="false" x="281" y="117" />
<e:Group id="bannerGroup" width="660" height="145" touchEnabled="false" x="284" y="116">
<e:Image source="banner_37vip" />
<e:Label id="descLab1" text="您的超玩会员等级为:" size="16" x="20" textColor="0x28ee01" stroke="1" bottom="10" />
<e:Label id="descLab2" text="成为vip" size="16" x="220" textColor="0x28ee01" stroke="1" bottom="10" />
<e:Label id="descLab3" text="成为vip" size="16" textColor="0x28ee01" stroke="1" right="20" bottom="10" />
</e:Group>
<e:Group id="infoGroup2" width="667" height="395" touchEnabled="false" x="281" y="262" />
</e:Skin>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="Fuli37BindingGiftSkin" width="667" height="540" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" source="bg_4366shoujilibao_png" />
<e:Button id="bindingBtn" label="" y="450" icon="txt_bangdingshouji" skinName="Btn26Skin" width="137" height="56"
x="265" />
<e:Button id="getBtn" label="" y="450" icon="fl_jhm_btn_1" skinName="Btn0Skin" width="137" height="56" x="265" />
<e:List id="itemList" verticalCenter="71" horizontalCenter="0" itemRendererSkinName="FuLi4366ItemSkin">
<e:layout>
<e:HorizontalLayout gap="20" />
</e:layout>
</e:List>
<app:RedDotControl id="redPoint" x="388" y="448" />
<e:Image id="receiveImg" source="apay_yilingqu" horizontalCenter="0" bottom="28" />
</e:Skin>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="Fuli37IndulgeGiftSkin" width="667" height="540" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" source="bg_4366renzhenglibao_png" />
<e:Button id="indulgeBtn" label="" y="450" icon="btnt_txfcm" skinName="Btn26Skin" width="137" height="56" x="265" />
<e:Button id="getBtn" label="" y="450" icon="fl_jhm_btn_1" skinName="Btn0Skin" width="137" height="56" x="265" />
<e:List id="itemList" verticalCenter="71" horizontalCenter="0" itemRendererSkinName="FuLi4366ItemSkin">
<e:layout>
<e:HorizontalLayout gap="20" />
</e:layout>
</e:List>
<app:RedDotControl id="redPoint" x="388" y="448" />
<e:Image id="receiveImg" source="apay_yilingqu" horizontalCenter="0" bottom="28" />
</e:Skin>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="Fuli37LevelGiftSkin" width="667" height="395" xmlns:e="http://ns.egret.com/eui">
<e:Scroller width="667" height="395" scrollPolicyH="off">
<e:List id="list" itemRendererSkinName="FuliLuDaShiLevelGiftItemSkin">
<e:layout>
<e:VerticalLayout/>
</e:layout>
<e:ArrayCollection>
<e:Array>
<e:Object D="null" />
<e:Object D="null" />
<e:Object D="null" />
</e:Array>
</e:ArrayCollection>
</e:List>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="Fuli37MicroGiftSkin" width="667" height="540" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" source="bg_37weiduan_png" />
<e:Button id="microDownBtn" label="下载微端" x="265" y="450" icon="txt_djxz" width="137" height="56">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="tq_btn" />
<e:Label id="labelDisplay" text="下载微端" size="24" horizontalCenter="0" verticalCenter="0"
touchEnabled="false" textColor="0xeee104" stroke="2" scaleX.down="0.95" scaleY.down="0.95" />
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="getBtn" label="" y="450" icon="fl_jhm_btn_1" skinName="Btn0Skin" width="137" height="56" x="265" />
<e:List id="itemList" verticalCenter="87" horizontalCenter="0" itemRendererSkinName="FuLi4366ItemSkin">
<e:layout>
<e:HorizontalLayout gap="20" />
</e:layout>
</e:List>
<app:RedDotControl id="redPoint" x="388" y="448" />
<e:Image id="receiveImg" source="apay_yilingqu" horizontalCenter="0" bottom="28" />
</e:Skin>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="FuLi4366ItemSkin" xmlns:e="http://ns.egret.com/eui" xmlns:app="app.*" xmlns:w="http://ns.egret.com/wing" height="78">
<app:ItemBase id="ItemData" skinName="ItemBaseSkin" top="0" horizontalCenter="0"/>
<e:Label id="itemName" text="道具名称" size="15" textColor="0xe5ddcf" stroke="2" bottom="0" horizontalCenter="0"/>
</e:Skin>

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="FuLi4366MicroWinSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image id="dragDropUI" source="weiduan_denglu_png"/>
<e:List id="rewards" itemRendererSkinName="ItemBaseSkin" horizontalCenter="141" verticalCenter="75">
<e:layout>
<e:HorizontalLayout/>
</e:layout>
</e:List>
<e:Image id="receiveImg" source="apay_yilingqu" verticalCenter="75" horizontalCenter="141"/>
<e:Button id="receiveBtn" label="" x="573" y="413" width="144" height="62">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="lingqu_bt" source.down="lingqu_bt" source.disabled="lingqu_bt"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="microDownBtn" label="" x="573" y="413" width="144" height="62">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="jiangli_bt" source.down="jiangli_bt" source.disabled="jiangli_bt"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="closeBtn" label="" width="61" height="57" x="924" y="33">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="apay_x2" source.down="apay_x2" source.disabled="apay_x2"/>
</e:Skin>
</e:skinName>
</e:Button>
<app:RedDotControl id="redPoint" x="691" y="414" visible="false"/>
</e:Skin>

View File

@@ -0,0 +1,70 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="FuLi4366WinSkin" width="1027" height="690" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image id="dragDropUI" source="apay_bg2_png"/>
<e:Image x="82" y="116" width="192" height="542" source="com_bg_kuang_6_png" scale9Grid="17,15,4,4"/>
<e:Button id="closeBtn" label="" width="61" height="57" x="931" y="56">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="apay_x2" source.down="apay_x2" source.disabled="apay_x2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Image y="57.67" horizontalCenter="-0.5" touchEnabled="false" x="238" source="biaoti_4366"/>
<e:Group id="infoGroup" width="667" height="542" touchEnabled="false" x="281" y="116">
<e:Image source="com_bg_kuang_6_png" scale9Grid="18,15,3,4" scaleX="1" scaleY="1" left="0" right="0" top="0" bottom="0"/>
<e:Group id="grp0" left="0" right="0" top="0" bottom="0">
<e:Image source="bg_4366vxlibao_png" horizontalCenter="0" verticalCenter="0"/>
<e:EditableText id="InputCode" width="393" text="" x="78" size="20" height="30" verticalAlign="middle" y="421" textAlign="center" maxChars="120" prompt="&lt;请输入激活码>" textColor="0xF9EFEF"/>
<e:Button id="wxBuyBtn" label="" x="199.67" y="465.95" icon="fl_jhm_btn_1" scaleX="1" scaleY="1" skinName="Btn0Skin" width="137" height="56"/>
<app:ItemBase id="wxItemData" x="550" y="425" skinName="ItemBaseSkin"/>
</e:Group>
<e:Group left="0" right="0" top="0" bottom="0" id="grp1" visible="false">
<e:Image source="bg_4366shoujilibao_png" horizontalCenter="0" verticalCenter="0"/>
<e:Button id="phoneBuyBtn" label="" x="284.67" y="447.95" icon="fl_jhm_btn_1" scaleX="1" scaleY="1" skinName="Btn0Skin" width="137" height="56"/>
<e:List id="phoneItemList" verticalCenter="71" horizontalCenter="1.5" itemRendererSkinName="FuLi4366ItemSkin">
<e:layout>
<e:HorizontalLayout gap="20"/>
</e:layout>
</e:List>
<app:RedDotControl id="redPoint1" x="409" y="445" visible="false"/>
</e:Group>
<e:Group left="0" right="0" top="0" bottom="0" id="grp2" visible="false">
<e:Image source="bg_4366renzhenglibao_png" horizontalCenter="0" verticalCenter="0"/>
<e:Button id="cardBuyBtn" label="" x="283.67" y="447.95" icon="fl_jhm_btn_1" scaleX="1" scaleY="1" skinName="Btn0Skin" width="137" height="56"/>
<e:List id="cardItemList" verticalCenter="71" horizontalCenter="1.5" itemRendererSkinName="FuLi4366ItemSkin">
<e:layout>
<e:HorizontalLayout gap="20"/>
</e:layout>
</e:List>
<app:RedDotControl id="redPoint2" x="407" y="446" scaleX="1" scaleY="1" visible="false"/>
</e:Group>
<e:Group left="0" right="0" top="0" bottom="0" id="grp3" visible="false">
<e:Image source="banner_4366" horizontalCenter="-0.5" top="3"/>
<e:Scroller id="loginItemScroller" width="658.5" height="381" x="4" y="158" anchorOffsetY="0" anchorOffsetX="0" scrollPolicyH="off">
<e:List id="loginItemList" itemRendererSkinName="YYLobbyPrivilegesGiftItemSkin">
</e:List>
</e:Scroller>
</e:Group>
<e:Group left="0" right="0" top="0" bottom="0" id="grp4" visible="false">
<e:Image horizontalCenter="-0.5" top="3" source="bg_4366jqfuli_png"/>
<e:Group id="giftTips" x="69" y="334" alpha="0">
<e:Rect width="300" height="150"/>
</e:Group>
<e:Button id="addGroupBtn" label="点击复制QQ群号码" x="455" y="448" icon="4366_jqfulibt" width="178" height="64">
<e:skinName>
<e:Skin states="up,down,disabled">
<e:Image horizontalCenter="0" verticalCenter="0" source="4366_jqfulibt" source.down="4366_jqfulibt" scaleX.down="0.95" scaleY.down="0.95"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0" size="18" textColor="0xf0c896"/>
</e:Skin>
</e:skinName>
</e:Button>
</e:Group>
</e:Group>
<e:Scroller id="btnScroller" width="185" height="536" x="85.61" y="117.3">
<e:TabBar id="tabBar" width="200" height="200" itemRendererSkinName="YYLobbyPrivilegesTabSkin">
<e:layout>
<e:VerticalLayout horizontalAlign="center" gap="8"/>
</e:layout>
</e:TabBar>
</e:Scroller>
</e:Skin>

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="VIP4366CodeSkin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing">
<e:Image id="dialogMask" scale9Grid="1,1,2,2" alpha="0.3" source="dialog_mask" top="0" right="0" left="0" bottom="0"/>
<e:Group horizontalCenter="0" top="227" anchorOffsetX="0" width="420">
<e:Image id="bg" x="0" y="-2" scaleX="1" scaleY="1" visible="true" source="bg_tipstc2_png" scale9Grid="53,71,320,148"/>
<e:Label id="titleLabel" y="14" anchorOffsetX="0" textAlign="center" scaleX="1" scaleY="1" size="20" text="vip客服QQ二维码" touchEnabled="false" textColor="0xD0C896" stroke="2" x="132"/>
<e:Image source="qqcode_png" y="57" scaleX="0.7" scaleY="0.7" x="130"/>
<e:Button id="dialogCloseBtn" label="" x="405" y="-10" width="60" height="60">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" source="btn_guanbi3" source.down="btn_guanbi4" source.disabled="btn_guanbi4"/>
<e:Label id="labelDisplay" horizontalCenter="0" verticalCenter="0"/>
</e:Skin>
</e:skinName>
</e:Button>
</e:Group>
</e:Skin>

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<e:Skin class="VIP4366Skin" xmlns:e="http://ns.egret.com/eui" xmlns:w="http://ns.egret.com/wing" width="1027" height="690">
<e:Image id="dragDropUI" source="apay_bg2_png"/>
<e:Image source="biaoti_4366vip" x="422" y="50" touchEnabled="false"/>
<e:Image source="banner_4366vip" x="84" y="119"/>
<e:Image source="bg_4366vip_png" x="86" y="262"/>
<e:Button id="closeBtn" label="" width="61" height="57" x="924" y="57">
<e:skinName>
<e:Skin states="up,down,disabled" xmlns:w="http://ns.egret.com/wing" xmlns:app="app.*">
<e:Image horizontalCenter="0" verticalCenter="0" scaleX.down="0.95" scaleY.down="0.95" source="apay_x2" source.down="apay_x2" source.disabled="apay_x2"/>
</e:Skin>
</e:skinName>
</e:Button>
<e:Button id="rechargeBtn" label="" x="771" y="159" icon="t_lijichongzhi" width="137" height="56" skinName="Btn26Skin"/>
<e:Button id="copyBtn" label="" x="513" y="519" icon="t_fuzhi" width="137" height="56" skinName="Btn26Skin"/>
<e:Button id="codeBtn" label="" x="724" y="519" icon="t_erweima" width="137" height="56" skinName="Btn26Skin"/>
<e:Label id="lab" text="" x="127" y="594" anchorOffsetX="0" width="777" textAlign="center" textColor="0xe5ddcf" size="22" stroke="1"/>
<e:Label id="lab2" text="" x="127" y="625" width="777" textAlign="center" textColor="0xE5DDCF" size="22" stroke="1"/>
<e:Label id="qqLabel" text="" x="557" y="476" textColor="0xE5DDCF" size="24" stroke="1"/>
</e:Skin>

Some files were not shown because too many files have changed in this diff Show More