中级消防设施操作员考什么内容

时间:2023/9/4 4:37:18 编辑:福途教育 标签:一级注册消防师

2023年【一级注册消防师】申请条件/费用/专业咨询 >>

一级注册消防师申请条件是什么?一级注册消防师费用是多少?一级注册消防师专业都有哪些?

点击咨询

    本文解答了关于《中级消防设施操作员考什么》相关内容,同时关于1、中级消防设施操作员考什么内容,2、中级消防设施操作员证在哪报名,3、中级消防设施操作员怎么报名,4、中级消防设施操作员报名入口官网,5、中级消防设施操作员考试题库,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。

    中级消防设施操作员考什么内容

    消防设施操作员报名时间"},

    {id:2,titleName:"消防安全管理员报名时间"},

    {id:3,titleName:"消防建筑设计专业人员报名时间"},

    {id:4,titleName:"消防安全评价专业人员报名时间"},

    {id:5,titleName:"消防设施操作员报名时间"}

    ]

    };

    componentWillUnmount()

    {

    this._isMounted = false;

    }

    componentDidMount()

    {

    this._isMounted = true;

    this.setState({visible:this.props.visible,titleName:this.props.titleName});

    this.refs.textArea.focus();

    }

    componentDidUpdate()

    {

    if (this.props.visible && this.props.titleName === this.state.titleName)

    {

    this.refs.textArea.focus();

    }

    }

    /**

    * 关闭对话框

    */

    closeModal = () =>

    {

    if (this._isMounted)

    {

    this.setState({visible:false});

    }

    this.props.onClose && this.props.onClose();

    };

    /**

    * 确定执行的操作

    */

    operateData = () =>

    {

    if (this._isMounted)

    {

    this.setState({visible:false});

    }

    if (this.refs.textArea.value.trim() === "")

    {

    Toast.info("您未输入任何内容");

    return;

    }

    this.props.operateData && this.props.operateData(this.refs.textArea.value);

    };

    render()

    {

    return (

    title={this.state.titleName}

    onClose={this.closeModal}

    footer={[

    {

    text:"取消",onPress:this.closeModal

    },{

    text:"确定",onPress:this.operateData

    }

    ]}>