import React from 'react' import '../../style/index.less' export default class AffixComs extends React.Component { render(){ const {scale} = this.props.orgStore; return(
{ this.props.orgStore.horizontal = false }} /> { this.props.orgStore.horizontal = true }} /> { if(scale <= 2) { this.props.orgStore.scale += 0.1 } }}/> { if(scale >= 0.5){ this.props.orgStore.scale -= 0.1 } }}/>
) } }