mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
|
import { _decorator, Component, Node } from 'cc';
|
||
|
import JNScrollViewItem from '../../../../extensions/ngame/assets/ngame/util/components/scrollview/JNScrollViewItem';
|
||
|
import { TB } from '../../../resources/config/data/schema';
|
||
|
import { Label } from 'cc';
|
||
|
import { Sprite } from 'cc';
|
||
|
import TbResource from '../../tools/TbResource';
|
||
|
const { ccclass, property } = _decorator;
|
||
|
|
||
|
@ccclass('MapSelectShowItem')
|
||
|
export class MapSelectShowItem extends JNScrollViewItem<TB.TbGOnHookMaps> {
|
||
|
|
||
|
@property({type:Sprite,displayName:"地图预览图"})
|
||
|
mapImage:Sprite;
|
||
|
|
||
|
@property({type:Label,displayName:"地图名称"})
|
||
|
mapName:Label;
|
||
|
|
||
|
@property({type:Label,displayName:"地图介绍"})
|
||
|
mapText:Label;
|
||
|
|
||
|
onInit(data: TB.TbGOnHookMaps): void {
|
||
|
|
||
|
this.onUpdateView();
|
||
|
|
||
|
}
|
||
|
|
||
|
//刷新页面
|
||
|
onUpdateView(){
|
||
|
|
||
|
this.mapName.string = this.data.name;
|
||
|
this.mapText.string = this.data.introduce;
|
||
|
|
||
|
//加载预览图
|
||
|
TbResource.loadSpriteFrame(this.data.mapImage,this.mapImage,this);
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|