.selectTreeClass{
background:#ebf7ff;
}
renderContent(h: any, {root , node, data }: any) {
return h(“div”,{
style: {
width: “90%”,
float:“right”,
cursor:“pointer”,
padding:“3px”,
},
attrs:{
class:(data.nodeKey == 0 ? ‘show selectTreeClass’:‘show’)
},
on: {
click: () => {
(this as any).oilPoint(root, node, data);
}
}
},
[
h("div",[
h("Icon", {
props: {
type: "ios-folder",
size:"16"
},
style: {
marginRight: "8px",
float:"left",
color:'#add0f6',