﻿/**
 * @描述 官网飘窗组件
 * @作者 保定理工学院信息技术中心
 * @更新时间 2022/05/23
 */

function LgZwPc(){

    /**
     * 图片单击跳转
     */
    function onClick(e){
        window.location.href = "http://www.cuggw.com/html/news_1867.html";
    }

    return <>
        <antd.Affix offsetTop={500} style={{textAlign: "right"}}>
            <img onClick={(e)=>{onClick(e)}} src="img/zw_pc/theImg.jpg"  style={{width: "100px", height: "300px", cursor: "pointer"}}/>
        </antd.Affix>
    </>
}


