diff --git a/src/military/components/login/index.scss b/src/military/components/login/index.scss index 54e782a8..b7ee4d51 100644 --- a/src/military/components/login/index.scss +++ b/src/military/components/login/index.scss @@ -1,12 +1,12 @@ .qz2022Container{ - padding-top:0; + padding-top:0 !important; background:#fff ; } .qz-login{ position: absolute; - right: 20px; - top: 20px; + right: 70px; + top: 0; color: #fff; .login-box{ a:hover{ diff --git a/src/military/qz2022/apply/index.jsx b/src/military/qz2022/apply/index.jsx index a6e7af92..1e9cbe95 100644 --- a/src/military/qz2022/apply/index.jsx +++ b/src/military/qz2022/apply/index.jsx @@ -214,7 +214,7 @@ export default Form.create()((props) => { - } diff --git a/src/military/qz2022/chat/index.jsx b/src/military/qz2022/chat/index.jsx index 72e261aa..a6921d4e 100644 --- a/src/military/qz2022/chat/index.jsx +++ b/src/military/qz2022/chat/index.jsx @@ -33,16 +33,16 @@ function Chat({ form, showNotification, match, history }) { {/* style={{display:'flex', width: '1200px', margin:'30px auto',padding: '0 120px',justifyContent: 'space-between', background: 'white'}} */} {/* style={{display:'flex',alignItems: 'center'}} */} -
-
{ window.open('https://fc.osredm.com/forums/theme/107') }}> +
+
{ window.open('http://www.osredm.jk/forums/theme/76') }}>
参赛咨询
-
{ window.open('https://fc.osredm.com/forums/theme/108') }}> +
{ window.open('http://www.osredm.jk/forums/theme/77') }}>
选手交流
-
{ window.open('https://fc.osredm.com/forums/theme/109') }}> +
{ window.open('http://www.osredm.jk/forums/theme/78') }}>
专家答疑
diff --git a/src/military/qz2022/components/manageEdit.jsx b/src/military/qz2022/components/manageEdit.jsx index 35454734..fd70b86f 100644 --- a/src/military/qz2022/components/manageEdit.jsx +++ b/src/military/qz2022/components/manageEdit.jsx @@ -10,11 +10,11 @@ import '../notice/detail.scss'; export default Form.create()((props) => { const {history, match:{params:{type}}, qzDetail, setReloadDetail} = props; - const [description, setDescription] = useState(qzDetail && type === "introduce" ? (qzDetail.content) : type === "fingerpost" ? (qzDetail.guide) : (qzDetail && qzDetail.about_us)); + const [description, setDescription] = useState(qzDetail && type === "introduce" ? (qzDetail && qzDetail.content) : type === "fingerpost" ? (qzDetail && qzDetail.guide) : (qzDetail && qzDetail.about_us)); const [errorMessage, setErrorMessage] = useState(undefined); useEffect(()=>{ - setDescription(qzDetail && type === "introduce" ? (qzDetail.content) : type === "fingerpost" ? (qzDetail.guide) : (qzDetail && qzDetail.about_us)); + setDescription(qzDetail && type === "introduce" ? (qzDetail && qzDetail.content) : type === "fingerpost" ? (qzDetail && qzDetail.guide) : (qzDetail && qzDetail.about_us)); }, [qzDetail]) function submit(){