39 lines
896 B
JavaScript
39 lines
896 B
JavaScript
"use strict";
|
|
cc._RF.push(module, 'f4041reVxZC7aOPN1yo5v4f', 'cmp.partner.form');
|
|
// Scripts/mod/partner/cmps/bag/cmp.partner.form.js
|
|
|
|
"use strict";
|
|
|
|
/******************************************************************
|
|
*
|
|
* 布阵编队页
|
|
*
|
|
******************************************************************/
|
|
|
|
var MenuPage = require("cmp.com.menu.page");
|
|
cc.Class({
|
|
"extends": MenuPage,
|
|
properties: {
|
|
fabForm: {
|
|
"default": null,
|
|
type: cc.Prefab
|
|
}
|
|
},
|
|
// 载入
|
|
onLoad: function onLoad() {
|
|
this._super();
|
|
var node = cc.instantiate(this.fabForm);
|
|
node.parent = nx.gui.find(this, "right");
|
|
node.parent.position = cc.v2(0, 0);
|
|
this.cmpForm = node.getComponent("cmp.battledrama.form");
|
|
if (this.cmpForm) {
|
|
this.cmpForm.initConfigs({
|
|
fun_form_type: 0,
|
|
setting: {},
|
|
show_type: 3
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
cc._RF.pop(); |