| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- cc.Class({
- extends: cc.Component,
- properties: {
- //单价
- price: {
- default: null,
- type: cc.Label,
- serializable: true,
- },
- //租期
- date: {
- default: null,
- type: cc.Label,
- serializable: true,
- },
- //开始时间
- startTime: {
- default: null,
- type: cc.Label,
- serializable: true,
- },
- //结束
- endTime: {
- default: null,
- type: cc.Label,
- serializable: true,
- },
- multiple: {
- default: null,
- type: cc.Label,
- serializable: true,
- },
- //介绍
- describe: {
- default: null,
- type: cc.Label,
- serializable: true,
- },
-
- },
- // LIFE-CYCLE CALLBACKS:
- // onLoad () {},
- // start () {
- // },
- setInfo(price,date,start,end,multiple,describe){
- this.price.string = price;
- this.date.string = date;
- this.startTime.string = start;
- this.endTime.string = end;
- this.multiple.string = multiple;
- this.describe.string = describe;
- },
- onclose(){
- this.node.destroy();
- }
- });
|