Merge branch 'fix-something'
This commit is contained in:
@ -1,5 +1,6 @@
|
|||||||
export default [
|
export default [
|
||||||
{
|
{
|
||||||
|
name: '首页',
|
||||||
path: '/Dashboard',
|
path: '/Dashboard',
|
||||||
component: './MainPage/ProjectManager',
|
component: './MainPage/ProjectManager',
|
||||||
},
|
},
|
||||||
|
@ -14,7 +14,7 @@ export default {
|
|||||||
},
|
},
|
||||||
UAT: {
|
UAT: {
|
||||||
'/api/sys-manager-ebtp-project': {
|
'/api/sys-manager-ebtp-project': {
|
||||||
target: 'http://localhost:18030',
|
target: 'http://192.168.110.231:18030',
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: { '/api/sys-manager-ebtp-project': '' },
|
pathRewrite: { '/api/sys-manager-ebtp-project': '' },
|
||||||
},
|
},
|
||||||
@ -58,7 +58,11 @@ export default {
|
|||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
pathRewrite: { '/api/biz-supplier-manage': '' },
|
pathRewrite: { '/api/biz-supplier-manage': '' },
|
||||||
},
|
},
|
||||||
|
'/api/biz-service-ebtp-resps': {
|
||||||
|
target: 'http://192.168.110.51:18013',
|
||||||
|
changeOrigin: true,
|
||||||
|
pathRewrite: { '/api/biz-service-ebtp-resps': '' },
|
||||||
|
},
|
||||||
// '/api/wfap/v1/audit/bill/find/by/procid': {
|
// '/api/wfap/v1/audit/bill/find/by/procid': {
|
||||||
// target: 'http://10.242.31.158:8891/',//审批单 uat环境自动审批,暂时用不到
|
// target: 'http://10.242.31.158:8891/',//审批单 uat环境自动审批,暂时用不到
|
||||||
// changeOrigin: true,
|
// changeOrigin: true,
|
||||||
|
@ -98,6 +98,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@alita/plugins": "^3.5.5",
|
"@alita/plugins": "^3.5.5",
|
||||||
"@types/classnames": "^2.2.7",
|
"@types/classnames": "^2.2.7",
|
||||||
|
"@types/cookie": "0.5.4",
|
||||||
"@types/express": "^4.17.0",
|
"@types/express": "^4.17.0",
|
||||||
"@types/history": "^4.7.2",
|
"@types/history": "^4.7.2",
|
||||||
"@types/jest": "^26.0.0",
|
"@types/jest": "^26.0.0",
|
||||||
|
12
src/app.tsx
12
src/app.tsx
@ -50,7 +50,8 @@ function TabLayout({
|
|||||||
const items = Object.entries(keepElements.current).map(
|
const items = Object.entries(keepElements.current).map(
|
||||||
([pathname]: any) => {
|
([pathname]: any) => {
|
||||||
const pathnameLowerCase = pathname.toLowerCase();
|
const pathnameLowerCase = pathname.toLowerCase();
|
||||||
const label = pathKeyMap.get(pathnameLowerCase)?.name || 'Unknown';
|
const pathKeyMapItem = pathKeyMap.get(pathnameLowerCase);
|
||||||
|
const label = pathKeyMapItem?.name || pathKeyMapItem?.routeName || 'Unknown';
|
||||||
const active = pathnameLowerCase === activeKeyLowerCase;
|
const active = pathnameLowerCase === activeKeyLowerCase;
|
||||||
return ({ label, key: pathnameLowerCase, closeIcon: <CloseIcon style={{ fontSize: 10, color: active ? '#fff' : '#575B66' }} /> })
|
return ({ label, key: pathnameLowerCase, closeIcon: <CloseIcon style={{ fontSize: 10, color: active ? '#fff' : '#575B66' }} /> })
|
||||||
},
|
},
|
||||||
@ -61,7 +62,8 @@ function TabLayout({
|
|||||||
<Tabs
|
<Tabs
|
||||||
hideAdd
|
hideAdd
|
||||||
onChange={(key: string) => {
|
onChange={(key: string) => {
|
||||||
navigate(key);
|
const { pathname, search } = keepElements.current[key].location;
|
||||||
|
navigate(`${pathname}${search}`);
|
||||||
}}
|
}}
|
||||||
activeKey={activeKeyLowerCase}
|
activeKey={activeKeyLowerCase}
|
||||||
type="editable-card"
|
type="editable-card"
|
||||||
@ -79,12 +81,14 @@ function TabLayout({
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
dropByCacheKey(targetKey)
|
dropByCacheKey(targetKey)
|
||||||
if (targetKey === activeKey) {
|
if (targetKey === activeKey?.toLowerCase()) {
|
||||||
// 删除当前选中的tab时:
|
// 删除当前选中的tab时:
|
||||||
// 1.如果当前tab是第一个时自动选中后一个
|
// 1.如果当前tab是第一个时自动选中后一个
|
||||||
// 2.不是第一个时自动选中前一个
|
// 2.不是第一个时自动选中前一个
|
||||||
const i = pathList.indexOf(targetKey)
|
const i = pathList.indexOf(targetKey)
|
||||||
navigate(pathList[i === 0 ? i + 1 : i - 1])
|
const to = pathList[i === 0 ? i + 1 : i - 1]
|
||||||
|
const { pathname, search } = keepElements.current[to].location;
|
||||||
|
navigate(`${pathname}${search}`)
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
items={items}
|
items={items}
|
||||||
|
@ -315,6 +315,7 @@ input::-webkit-outer-spin-button,
|
|||||||
&.ant-menu-item-only-child {
|
&.ant-menu-item-only-child {
|
||||||
padding-left: 40px !important;
|
padding-left: 40px !important;
|
||||||
height: 56px;
|
height: 56px;
|
||||||
|
line-height: 25px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding-top: 16px;
|
padding-top: 16px;
|
||||||
padding-bottom: 16px;
|
padding-bottom: 16px;
|
||||||
|
@ -3,7 +3,6 @@ import { Link, history } from '@umijs/max';
|
|||||||
import './index.less';
|
import './index.less';
|
||||||
import styles from './index.less';
|
import styles from './index.less';
|
||||||
import { connect } from "dva";
|
import { connect } from "dva";
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import React, { useState, useEffect, useReducer } from 'react';
|
import React, { useState, useEffect, useReducer } from 'react';
|
||||||
import { getSessionUserData, getRoomId, getRoomStatus, getProMethod, getSessionRoleData, getIPassDecode, getDefId, getProId, getOfflineStatusById } from '@/utils/session';
|
import { getSessionUserData, getRoomId, getRoomStatus, getProMethod, getSessionRoleData, getIPassDecode, getDefId, getProId, getOfflineStatusById } from '@/utils/session';
|
||||||
import { getURLInformation } from '@/utils/CommonUtils';
|
import { getURLInformation } from '@/utils/CommonUtils';
|
||||||
|
@ -90,10 +90,10 @@
|
|||||||
min-width: 60px;
|
min-width: 60px;
|
||||||
}
|
}
|
||||||
.horizontal-stepper .MuiStepIcon-completed {
|
.horizontal-stepper .MuiStepIcon-completed {
|
||||||
color: #b30000 !important;
|
color: @primary-color !important;
|
||||||
}
|
}
|
||||||
.horizontal-stepper .MuiStepIcon-active {
|
.horizontal-stepper .MuiStepIcon-active {
|
||||||
color: #b30000 !important;
|
color: @primary-color !important;
|
||||||
}
|
}
|
||||||
.horizontal-stepper .MuiStep-completed {
|
.horizontal-stepper .MuiStep-completed {
|
||||||
// min-width: 90px ;
|
// min-width: 90px ;
|
||||||
|
@ -4,7 +4,7 @@ import ProLayout, {
|
|||||||
Settings,
|
Settings,
|
||||||
} from '@ant-design/pro-layout';
|
} from '@ant-design/pro-layout';
|
||||||
import React, { useEffect, useMemo, useRef, useState } from 'react';
|
import React, { useEffect, useMemo, useRef, useState } from 'react';
|
||||||
import { Link, connect, Dispatch, history, Outlet, useLocation, useKeepOutlets } from '@umijs/max';
|
import { Link, connect, Dispatch, history, useLocation, useKeepOutlets, useAppData } from '@umijs/max';
|
||||||
import { Result, Button, message } from 'antd';
|
import { Result, Button, message } from 'antd';
|
||||||
import Authorized from '@/utils/Authorized';
|
import Authorized from '@/utils/Authorized';
|
||||||
import RightContent from '@/components/GlobalHeader/RightContent';
|
import RightContent from '@/components/GlobalHeader/RightContent';
|
||||||
@ -105,6 +105,8 @@ const BasicLayout: React.FC<BasicLayoutProps> = (props) => {
|
|||||||
const mall3_token: any = sessionStorage.getItem('Authorization');//当前登录token
|
const mall3_token: any = sessionStorage.getItem('Authorization');//当前登录token
|
||||||
const userData: any = getSessionUserData();//当前登录人信息
|
const userData: any = getSessionUserData();//当前登录人信息
|
||||||
const children = useKeepOutlets();
|
const children = useKeepOutlets();
|
||||||
|
const routeData = useAppData();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (getSessionRoleData()?.roleId) {
|
if (getSessionRoleData()?.roleId) {
|
||||||
let params = {
|
let params = {
|
||||||
@ -116,7 +118,10 @@ const BasicLayout: React.FC<BasicLayoutProps> = (props) => {
|
|||||||
if (dispatch) {
|
if (dispatch) {
|
||||||
dispatch({
|
dispatch({
|
||||||
type: 'user/saveMenuData',
|
type: 'user/saveMenuData',
|
||||||
payload: res.data || [],
|
payload: {
|
||||||
|
menuData: res.data || [],
|
||||||
|
routeData: routeData.routes,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
setmenuShow(true)
|
setmenuShow(true)
|
||||||
|
@ -16,10 +16,16 @@ export interface CurrentUser {
|
|||||||
unreadCount?: number;
|
unreadCount?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface PathKeyMap {
|
||||||
|
name: string;
|
||||||
|
icon?: string;
|
||||||
|
routeName?: string;
|
||||||
|
}
|
||||||
|
|
||||||
export interface UserModelState {
|
export interface UserModelState {
|
||||||
currentUser?: CurrentUser;
|
currentUser?: CurrentUser;
|
||||||
menuData?: any[];
|
menuData?: any[];
|
||||||
pathKeyMap?: Map<string, {name: string, icon?: string}>;
|
pathKeyMap?: Map<string, PathKeyMap>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface UserModelType {
|
export interface UserModelType {
|
||||||
@ -42,7 +48,7 @@ const UserModel: UserModelType = {
|
|||||||
state: {
|
state: {
|
||||||
currentUser: {},
|
currentUser: {},
|
||||||
menuData: [],
|
menuData: [],
|
||||||
pathKeyMap: new Map<string, {name: string, icon?: string}>(),
|
pathKeyMap: new Map<string, PathKeyMap>(),
|
||||||
},
|
},
|
||||||
|
|
||||||
effects: {
|
effects: {
|
||||||
@ -70,8 +76,9 @@ const UserModel: UserModelType = {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
saveMenuData(state, action) {
|
saveMenuData(state, action) {
|
||||||
const menuData = action.payload || [];
|
const menuData = action.payload.menuData || [];
|
||||||
const pathKeyMap = new Map<string, {name: string, icon?: string}>();
|
const routeData = action.payload.routeData || [];
|
||||||
|
const pathKeyMap = new Map<string, PathKeyMap>();
|
||||||
// 将menuData转换为pathKeyMap 递归处理
|
// 将menuData转换为pathKeyMap 递归处理
|
||||||
const convertToPathKeyMap = (menuData: any[]) => {
|
const convertToPathKeyMap = (menuData: any[]) => {
|
||||||
menuData.forEach((item: any) => {
|
menuData.forEach((item: any) => {
|
||||||
@ -83,7 +90,24 @@ const UserModel: UserModelType = {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
convertToPathKeyMap(menuData);
|
convertToPathKeyMap(menuData);
|
||||||
pathKeyMap.set('/dashboard', { name: '首页' });
|
let i = 1;
|
||||||
|
while (routeData[i]) {
|
||||||
|
const item = routeData[i];
|
||||||
|
if (item.name) {
|
||||||
|
const pathname = item.path.toLowerCase();
|
||||||
|
if (pathKeyMap.has(pathname)) {
|
||||||
|
const target = pathKeyMap.get(pathname)!;
|
||||||
|
const newItem = {
|
||||||
|
...target,
|
||||||
|
routeName: item.name,
|
||||||
|
}
|
||||||
|
pathKeyMap.set(pathname, newItem);
|
||||||
|
} else {
|
||||||
|
pathKeyMap.set(pathname, { name: item.name, icon: item.icon });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
i++;
|
||||||
|
}
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
menuData: action.payload || [],
|
menuData: action.payload || [],
|
||||||
|
@ -226,7 +226,6 @@ class Jury extends PureComponent {
|
|||||||
// 再跳转
|
// 再跳转
|
||||||
if(txt==1){
|
if(txt==1){
|
||||||
// sessionStorage.setItem("roomId",record.id)
|
// sessionStorage.setItem("roomId",record.id)
|
||||||
// this.props.dispatch(routerRedux.push('/ProjectLayout/EvaRoom'))
|
|
||||||
// history.push('/EvaRoom')
|
// history.push('/EvaRoom')
|
||||||
window.open('/EvaRoom/Eva')
|
window.open('/EvaRoom/Eva')
|
||||||
}else{
|
}else{
|
||||||
|
@ -7,7 +7,6 @@ import { getDictBidMethodDict, getProMethod, getRoomId, getDefId, getQuotationMe
|
|||||||
import { saveLeaderId, getJuryData, checkOpenBidSupplier, getPackageList, createReviewRoom, closingReviewRoom } from './components/service';
|
import { saveLeaderId, getJuryData, checkOpenBidSupplier, getPackageList, createReviewRoom, closingReviewRoom } from './components/service';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import { connect } from "dva";
|
import { connect } from "dva";
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { getProId, getProSignDict } from '@/utils/session';
|
import { getProId, getProSignDict } from '@/utils/session';
|
||||||
import ReviewDevided from '@/pages/BidEvaluation/components/ReviewDevided';
|
import ReviewDevided from '@/pages/BidEvaluation/components/ReviewDevided';
|
||||||
import CreateReviewRoom from '@/pages/BidEvaluation/components/CreateReviewRoom';
|
import CreateReviewRoom from '@/pages/BidEvaluation/components/CreateReviewRoom';
|
||||||
@ -68,7 +67,6 @@ class manager extends PureComponent {
|
|||||||
sessionStorage.setItem("roomId", record.id)
|
sessionStorage.setItem("roomId", record.id)
|
||||||
this.savePageAndParams();
|
this.savePageAndParams();
|
||||||
history.push(`/ProjectLayout/FlowConfig`)
|
history.push(`/ProjectLayout/FlowConfig`)
|
||||||
// this.props.dispatch()
|
|
||||||
}
|
}
|
||||||
//查询评审室列表
|
//查询评审室列表
|
||||||
getManagerList = (params) => {
|
getManagerList = (params) => {
|
||||||
@ -126,7 +124,6 @@ class manager extends PureComponent {
|
|||||||
sessionStorage.setItem("openTime", record.openTime)
|
sessionStorage.setItem("openTime", record.openTime)
|
||||||
this.setState({ loading: true })
|
this.setState({ loading: true })
|
||||||
await getQuotationMethodById(record.id)
|
await getQuotationMethodById(record.id)
|
||||||
// this.props.dispatch(routerRedux.push('/ProjectLayout/EvaRoom'))
|
|
||||||
this.setState({ loading: false })
|
this.setState({ loading: false })
|
||||||
window.open(`/EvaRoom`)
|
window.open(`/EvaRoom`)
|
||||||
}
|
}
|
||||||
@ -134,7 +131,6 @@ class manager extends PureComponent {
|
|||||||
onJurySet = (record) => {
|
onJurySet = (record) => {
|
||||||
this.savePageAndParams();
|
this.savePageAndParams();
|
||||||
history.push({ pathname: '/ProjectLayout/JudgingPanel', state: { roomId: record.id, secId: record.sectionId, openTime: record.openTime } });
|
history.push({ pathname: '/ProjectLayout/JudgingPanel', state: { roomId: record.id, secId: record.sectionId, openTime: record.openTime } });
|
||||||
// this.props.dispatch(routerRedux.push(`/ProjectLayout/JudgingPanel?roomId=${record.id}&secId=${record.sectionId}&openTime=${record.openTime}`));
|
|
||||||
}
|
}
|
||||||
//创建评审室
|
//创建评审室
|
||||||
onCreateClick = async () => {
|
onCreateClick = async () => {
|
||||||
@ -429,8 +425,7 @@ class manager extends PureComponent {
|
|||||||
}
|
}
|
||||||
// 跳转组建评委会
|
// 跳转组建评委会
|
||||||
onRedirectRate = () => {
|
onRedirectRate = () => {
|
||||||
// this.props.dispatch(history.push('/JudgingPanel/list'))
|
history.push('/JudgingPanel/list')
|
||||||
history.push(`/JudgingPanel/list`)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
@ -3,7 +3,6 @@ import { Divider, Button, Form, Card, Tabs, Table, Tooltip, Input, Select, Row,
|
|||||||
import './index.less';
|
import './index.less';
|
||||||
import { connect } from "dva";
|
import { connect } from "dva";
|
||||||
import { getProId, getProMethod, getDefId, getQuotationMethodById, getSessionUserData } from '@/utils/session';
|
import { getProId, getProMethod, getDefId, getQuotationMethodById, getSessionUserData } from '@/utils/session';
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { getURLInformation } from '@/utils/CommonUtils';
|
import { getURLInformation } from '@/utils/CommonUtils';
|
||||||
import { btnAuthority } from '@/utils/authority';
|
import { btnAuthority } from '@/utils/authority';
|
||||||
import { getMaxTurnSortSupplier } from './components/service';
|
import { getMaxTurnSortSupplier } from './components/service';
|
||||||
@ -72,7 +71,6 @@ class supplier extends PureComponent {
|
|||||||
sessionStorage.setItem("isBxOneSecondCustom", "0")
|
sessionStorage.setItem("isBxOneSecondCustom", "0")
|
||||||
}
|
}
|
||||||
this.setState({ loading: false })
|
this.setState({ loading: false })
|
||||||
// this.props.dispatch(routerRedux.push('/ProjectLayout/EvaRoom'))
|
|
||||||
window.open('/EvaRoom')
|
window.open('/EvaRoom')
|
||||||
}
|
}
|
||||||
render() {
|
render() {
|
||||||
|
@ -6,7 +6,7 @@ import ProTable, { ProColumns } from '@ant-design/pro-table';
|
|||||||
import ReviewDevided from '@/pages/BidEvaluation/components/ReviewDevided';
|
import ReviewDevided from '@/pages/BidEvaluation/components/ReviewDevided';
|
||||||
import { getRoomDataById } from '@/services/common';
|
import { getRoomDataById } from '@/services/common';
|
||||||
import { ExclamationCircleOutlined } from '@ant-design/icons';
|
import { ExclamationCircleOutlined } from '@ant-design/icons';
|
||||||
|
import '@/assets/zjl_style.less'
|
||||||
/**
|
/**
|
||||||
* 评审室内页-基本信息
|
* 评审室内页-基本信息
|
||||||
* @author wuxianhui
|
* @author wuxianhui
|
||||||
|
@ -2,7 +2,6 @@ import React, {PureComponent} from 'react';
|
|||||||
import {Divider,Button,Form,Card,Tabs,Table,Tooltip,Input,Select,Row,Col,message,Modal,Pagination,Spin} from 'antd';
|
import {Divider,Button,Form,Card,Tabs,Table,Tooltip,Input,Select,Row,Col,message,Modal,Pagination,Spin} from 'antd';
|
||||||
// import './index.less';
|
// import './index.less';
|
||||||
import { connect } from "dva";
|
import { connect } from "dva";
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { getRoomId } from '@/utils/session';
|
import { getRoomId } from '@/utils/session';
|
||||||
import { getURLInformation } from '@/utils/CommonUtils';
|
import { getURLInformation } from '@/utils/CommonUtils';
|
||||||
|
|
||||||
|
@ -2,7 +2,6 @@ import React, {PureComponent} from 'react';
|
|||||||
import {Divider,Button,Form,Card,Tabs,Table,Tooltip,Input,Select,Row,Col,message,Modal,Spin,Pagination} from 'antd';
|
import {Divider,Button,Form,Card,Tabs,Table,Tooltip,Input,Select,Row,Col,message,Modal,Spin,Pagination} from 'antd';
|
||||||
// import './index.less';
|
// import './index.less';
|
||||||
import { connect } from "dva";
|
import { connect } from "dva";
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { getRoomId } from '@/utils/session';
|
import { getRoomId } from '@/utils/session';
|
||||||
import { getURLInformation } from '@/utils/CommonUtils';
|
import { getURLInformation } from '@/utils/CommonUtils';
|
||||||
import { CheckOutlined, CloseOutlined } from '@ant-design/icons';
|
import { CheckOutlined, CloseOutlined } from '@ant-design/icons';
|
||||||
|
@ -4,7 +4,6 @@ import { history } from '@umijs/max';
|
|||||||
import { connect } from 'dva';
|
import { connect } from 'dva';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import talkPng from '@/images/talk/talk.png';
|
import talkPng from '@/images/talk/talk.png';
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { RightOutlined } from '@ant-design/icons';
|
import { RightOutlined } from '@ant-design/icons';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import { jurySaveInfo, getRA } from '@/utils/session';
|
import { jurySaveInfo, getRA } from '@/utils/session';
|
||||||
|
@ -4,7 +4,6 @@ import { Row, Col, Tooltip, Card, List, DatePicker, Button, Statistic, Spin, Emp
|
|||||||
import { connect } from 'dva';
|
import { connect } from 'dva';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import talkPng from '@/images/talk/talk.png';
|
import talkPng from '@/images/talk/talk.png';
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { RightOutlined } from '@ant-design/icons';
|
import { RightOutlined } from '@ant-design/icons';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import { auctionFollowUpAProjectManager, getRA } from '@/utils/session';
|
import { auctionFollowUpAProjectManager, getRA } from '@/utils/session';
|
||||||
|
@ -87,6 +87,9 @@
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.cardtre {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.topt::-webkit-scrollbar {
|
.topt::-webkit-scrollbar {
|
||||||
width: 8px;
|
width: 8px;
|
||||||
|
@ -5,7 +5,6 @@ import { Row, Col, Tooltip, Card, List, DatePicker, Button, Statistic, Spin, Emp
|
|||||||
import { connect } from 'dva';
|
import { connect } from 'dva';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import talkPng from '@/images/talk/talk.png';
|
import talkPng from '@/images/talk/talk.png';
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { RightOutlined } from '@ant-design/icons';
|
import { RightOutlined } from '@ant-design/icons';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import { followUpAProjectManager, getSessionUserData } from '@/utils/session';
|
import { followUpAProjectManager, getSessionUserData } from '@/utils/session';
|
||||||
|
@ -4,7 +4,6 @@ import { Row, Col, Tooltip, Card, List, DatePicker, Button, Statistic, Spin, Emp
|
|||||||
import { connect } from 'dva';
|
import { connect } from 'dva';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import talkPng from '@/images/talk/talk.png';
|
import talkPng from '@/images/talk/talk.png';
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { RightOutlined } from '@ant-design/icons';
|
import { RightOutlined } from '@ant-design/icons';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import { getRA } from '@/utils/session';
|
import { getRA } from '@/utils/session';
|
||||||
|
@ -4,7 +4,6 @@ import { Row, Col, Tooltip, Card, List, DatePicker, Button, Statistic, Spin, Emp
|
|||||||
import { connect } from 'dva';
|
import { connect } from 'dva';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import talkPng from '@/images/talk/talk.png';
|
import talkPng from '@/images/talk/talk.png';
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { RightOutlined } from '@ant-design/icons';
|
import { RightOutlined } from '@ant-design/icons';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import { getRA } from '@/utils/session';
|
import { getRA } from '@/utils/session';
|
||||||
|
@ -4,7 +4,6 @@ import { Row, Col, Tooltip, Card, List, DatePicker, Button, Statistic, Spin, Emp
|
|||||||
import { connect } from 'dva';
|
import { connect } from 'dva';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import talkPng from '@/images/talk/talk.png';
|
import talkPng from '@/images/talk/talk.png';
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { RightOutlined } from '@ant-design/icons';
|
import { RightOutlined } from '@ant-design/icons';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import { getRA } from '@/utils/session';
|
import { getRA } from '@/utils/session';
|
||||||
|
@ -20,7 +20,6 @@ import {
|
|||||||
import { connect } from 'dva';
|
import { connect } from 'dva';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import talkPng from '@/images/talk/talk.png';
|
import talkPng from '@/images/talk/talk.png';
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { RightOutlined } from '@ant-design/icons';
|
import { RightOutlined } from '@ant-design/icons';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import { followUpAProjectManager, getRA, getSessionUserData } from '@/utils/session';
|
import { followUpAProjectManager, getRA, getSessionUserData } from '@/utils/session';
|
||||||
|
@ -5,7 +5,6 @@ import { history } from '@umijs/max';
|
|||||||
import { connect } from 'dva';
|
import { connect } from 'dva';
|
||||||
import './index.less';
|
import './index.less';
|
||||||
import talkPng from '@/images/talk/talk.png';
|
import talkPng from '@/images/talk/talk.png';
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { RightOutlined } from '@ant-design/icons';
|
import { RightOutlined } from '@ant-design/icons';
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import { followUpAProjectSupplier, getSessionUserData, getRA } from '@/utils/session';
|
import { followUpAProjectSupplier, getSessionUserData, getRA } from '@/utils/session';
|
||||||
|
@ -2,7 +2,6 @@ import React, {PureComponent} from 'react';
|
|||||||
import {Divider,Button,Form,Card,Tabs,Table,Tooltip,Input,Select,Row,Col,message,Modal,Pagination,Spin} from 'antd';
|
import {Divider,Button,Form,Card,Tabs,Table,Tooltip,Input,Select,Row,Col,message,Modal,Pagination,Spin} from 'antd';
|
||||||
// import './index.less';
|
// import './index.less';
|
||||||
import { connect } from "dva";
|
import { connect } from "dva";
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { getRoomId } from '@/utils/session';
|
import { getRoomId } from '@/utils/session';
|
||||||
import { getURLInformation } from '@/utils/CommonUtils';
|
import { getURLInformation } from '@/utils/CommonUtils';
|
||||||
|
|
||||||
|
@ -2,7 +2,6 @@ import React, {PureComponent} from 'react';
|
|||||||
import {Divider,Button,Form,Card,Tabs,Table,Tooltip,Input,Select,Row,Col,message,Modal,Pagination,Spin} from 'antd';
|
import {Divider,Button,Form,Card,Tabs,Table,Tooltip,Input,Select,Row,Col,message,Modal,Pagination,Spin} from 'antd';
|
||||||
// import './index.less';
|
// import './index.less';
|
||||||
import { connect } from "dva";
|
import { connect } from "dva";
|
||||||
// import { routerRedux } from 'dva/router';
|
|
||||||
import { getRoomId } from '@/utils/session';
|
import { getRoomId } from '@/utils/session';
|
||||||
import { getURLInformation } from '@/utils/CommonUtils';
|
import { getURLInformation } from '@/utils/CommonUtils';
|
||||||
|
|
||||||
|
@ -11,7 +11,6 @@
|
|||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"noImplicitReturns": true,
|
"noImplicitReturns": true,
|
||||||
"suppressImplicitAnyIndexErrors": true,
|
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
|
Reference in New Issue
Block a user