import React from "react"; import { Divider, Button } from "antd"; import { getLocale } from "../../utils"; import styles from "./index.less"; import GreenLine from "../../components/GreenLine"; import CusBreadcrumb from "../../components/CusBreadcrumb"; import PageHeaderInfo from "../../components/PageHeaderInfo"; import CarouselPicture from "../../components/CarouselPicture"; import img1 from "../../assets/img_jishuzhichi@3x.png"; import img2 from "../../assets/img_jishu_zhaopian1@3x.png"; import img3 from "../../assets/img_jishu_fuwu@3x.png"; import img4 from "../../assets/img_jishu_xiangmu@3x.png"; import img5 from "../../assets/img_jishu_jishu@3x.png"; import img6 from "../../assets/img_jishu_guanli@3x.png"; const IndexPage = (props) => { const { history } = props; const locale = getLocale(); const jstdImgList = [ { imgUrl: img3, title: locale.fw, info: locale.fwInfo, }, { imgUrl: img4, title: locale.xm, info: locale.xmInfo, }, { imgUrl: img5, title: locale.js, info: locale.jsInfo, }, { imgUrl: img6, title: locale.gl, info: locale.glInfo, }, ]; const imgList = [ { imgUrl: img2, name: "xxxxCE证书", year: "2023", }, { imgUrl: img2, name: "xxxxCE证书", }, { imgUrl: img2, name: "xxxxCE证书", }, ]; return (
{locale.jstdInfo1}
{locale.jstdInfo2}
{jstdImgList?.map((item, index) => (
{item.title}
{item.info}
))}
{locale.shjjszc1}
{locale.shjjszc2}
{locale.shjjszc31}
{locale.shjjszc32} 400 650 2386 {locale.shjjszc33}
{locale.shjjszc34}
{locale.shjjszc35}
{locale.bfzp}
{imgList?.map((item, index) => ( ))}
); }; export default IndexPage;