添加登陆操作流程
This commit is contained in:
parent
fcfcf6de16
commit
3f02852844
@ -1,6 +1,7 @@
|
||||
import React from 'react'
|
||||
import './result.css'
|
||||
import { Image } from "antd";
|
||||
// import {Axios} from '../../../../util/AjaxUtils'
|
||||
|
||||
import {
|
||||
DownloadOutlined
|
||||
} from '@ant-design/icons';
|
||||
@ -16,6 +17,8 @@ export default function Result() {
|
||||
<div className='result-text'>
|
||||
<div>点击放大软著过户后的电子版</div>
|
||||
<div className='result-down' onClick={()=>{
|
||||
console.log();
|
||||
|
||||
// window.open(`${Axios.defaults?.baseURL}/route/proj/download/apply/${pathParams.projId}`)
|
||||
}}><DownloadOutlined />下载</div>
|
||||
</div>
|
||||
|
@ -2,7 +2,7 @@ import './head.css'
|
||||
import BalanceHead from '../../components/balance/BalanceHead.tsx';
|
||||
import RechargeHead from '../../components/recharge/RechargeHead.tsx';
|
||||
import { Dropdown, MenuProps, message, Modal, Space, Spin } from "antd";
|
||||
import { DownOutlined, UserOutlined, KeyOutlined, LogoutOutlined, AccountBookOutlined,MenuFoldOutlined ,UsergroupAddOutlined} from "@ant-design/icons";
|
||||
import { DownOutlined, UserOutlined, KeyOutlined, LogoutOutlined, AccountBookOutlined, MenuFoldOutlined, UsergroupAddOutlined } from "@ant-design/icons";
|
||||
import { useContext, useEffect, useState } from "react";
|
||||
import { put } from "../../util/AjaxUtils.ts";
|
||||
import { GlobalContext, GlobalDispatchContext, reloadUser } from "../../context/GlobalContext.ts";
|
||||
@ -26,21 +26,21 @@ export default function Head() {
|
||||
const [isPasswordModalOpen, setIsPasswordModalOpen] = useState(false);
|
||||
const [isInvoiceModalOpen, setIsInvoiceModalOpen] = useState(false);
|
||||
// 所属者弹窗
|
||||
const [belongModal,setBelongModal] = useState(false)
|
||||
const [belongModal, setBelongModal] = useState(false)
|
||||
const [belongPeopleInfo, setBelongPeopleInfo] = useState({
|
||||
authorName: '',
|
||||
authorType: '',
|
||||
authorIdCardType: '',
|
||||
authorIdCard: '',
|
||||
authorCrcAccount:'',
|
||||
authorId:'',
|
||||
authorProvinceCity:''
|
||||
authorCrcAccount: '',
|
||||
authorId: '',
|
||||
authorProvinceCity: ''
|
||||
})
|
||||
const setValue = () => {
|
||||
// console.log(value);
|
||||
}
|
||||
// 联系人弹窗
|
||||
const [contactModal,setContactModal] = useState(false)
|
||||
const [contactModal, setContactModal] = useState(false)
|
||||
|
||||
useEffect(() => {
|
||||
reloadUser(messageApi, globalDispatchContext).then((data) => {
|
||||
@ -139,13 +139,19 @@ export default function Head() {
|
||||
<img src={logoImg} alt="" />
|
||||
</div>
|
||||
{/* <div className="right" style={{backgroundImage: `url(${headRightBg})`}}> */}
|
||||
|
||||
<div className="right">
|
||||
<div className='head-nav' onClick={()=>{
|
||||
window.open('https://www.aimzhu.com/operator/route/agreementportal/view?agreementId=c0c5683a-bef3-40c3-8395-900a362ea234')
|
||||
}}>
|
||||
系统操作流程
|
||||
</div>
|
||||
<BalanceHead />
|
||||
<RechargeHead />
|
||||
{/*<MessageHead/>*/}
|
||||
<div style={{ display: 'flex', alignContent: 'center', padding: '0 10px', cursor: 'pointer' }}>
|
||||
<div style={{ width: '50px', height: '50px', borderRadius: '25px', marginLeft: '20px', marginRight: '10px' }} >
|
||||
<img src={userImg} alt="" width={50} height={50}/>
|
||||
<img src={userImg} alt="" width={50} height={50} />
|
||||
</div>
|
||||
<Dropdown menu={{
|
||||
items: items
|
||||
@ -258,7 +264,7 @@ export default function Head() {
|
||||
|
||||
}}>
|
||||
|
||||
<BelongPeople closeModal={()=>{setBelongModal(false)}} setBelongPeopleInfo={setBelongPeopleInfo} belongPeopleInfo={belongPeopleInfo} setValue={setValue} isShow={false} ></BelongPeople>
|
||||
<BelongPeople closeModal={() => { setBelongModal(false) }} setBelongPeopleInfo={setBelongPeopleInfo} belongPeopleInfo={belongPeopleInfo} setValue={setValue} isShow={false} ></BelongPeople>
|
||||
</Modal>
|
||||
<Modal title="知识产权联系人"
|
||||
destroyOnClose
|
||||
|
@ -23,6 +23,12 @@
|
||||
position: relative;
|
||||
|
||||
}
|
||||
.head-nav{
|
||||
margin-right: 50px;
|
||||
color: #f78e4c;
|
||||
font-size: 16px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.head .center .left img {
|
||||
width: 263px;
|
||||
|
@ -4,8 +4,8 @@ import type {MessageInstance} from "antd/es/message/interface";
|
||||
export const Axios = axios;
|
||||
|
||||
// axios.defaults.baseURL = 'http://192.168.0.163:7025/copyright';
|
||||
axios.defaults.baseURL = 'http://192.168.43.145:7025/copyright';
|
||||
// axios.defaults.baseURL = 'http://192.168.0.15:7025/copyright';
|
||||
// axios.defaults.baseURL = 'http://192.168.43.145:7025/copyright';
|
||||
axios.defaults.baseURL = 'http://192.168.0.15:7025/copyright';
|
||||
// axios.defaults.baseURL = 'https://www.aimzhu.com/copyright';
|
||||
// axios.defaults.baseURL = '/copyright';
|
||||
export const WebSocketBaseUrl: string = 'ws://192.168.0.15:7025/copyright';
|
||||
|
Loading…
Reference in New Issue
Block a user