master
parent
8d68e7e2c5
commit
9558a2e153
|
|
@ -0,0 +1,21 @@
|
||||||
|
import { useMount } from "ahooks";
|
||||||
|
import autoFit from "autofit.js";
|
||||||
|
import bg from "~/assets/images/public/white/bg.png";
|
||||||
|
import Title from "~/pages/Container/WhiteBranchOffice/components/Title";
|
||||||
|
import "./index.less";
|
||||||
|
|
||||||
|
function WhiteBranchOffice() {
|
||||||
|
useMount(() => {
|
||||||
|
autoFit.init({ dw: 1920, dh: 1080, el: ".white_branch_office", resize: true });
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="white_share_office" style={{ backgroundImage: `url(${bg})` }}>
|
||||||
|
<div>
|
||||||
|
<Title title={123123} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default WhiteBranchOffice;
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
import bg from "~/assets/images/public/white/bg.png";
|
||||||
|
import "./index.less";
|
||||||
|
import Header from "~/pages/Container/Share/components/Header";
|
||||||
|
|
||||||
|
function WhiteShareOffice() {
|
||||||
|
return (
|
||||||
|
<div className="white_share_office" style={{ backgroundImage: `url(${bg})` }}>
|
||||||
|
<Header />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default WhiteShareOffice;
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
.white_branch_office{
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
|
|
||||||
import img1 from "~/assets/images/public/white/bg.png";
|
|
||||||
import "./index.less";
|
|
||||||
|
|
||||||
function StockScreen() {
|
|
||||||
return (
|
|
||||||
<div className="Stock_container" style={ { backgroundImage: `url(${img1})` }}>
|
|
||||||
<div></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default StockScreen;
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
.Stock_container{
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue