You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
768 B
31 lines
768 B
import React, { useEffect, useState } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { Spin, Card, Modal, TreeSelect, message } from 'antd';
|
|
import ProForm, { ProFormText, ModalForm, ProFormSwitch, ProFormTreeSelect } from '@ant-design/pro-form';
|
|
import './basis.less'
|
|
|
|
const Basis = ({ user, module, setModule }) => {
|
|
|
|
useEffect(() => {
|
|
|
|
}, [])
|
|
|
|
return <div>
|
|
<div className='super-screen-body left'>
|
|
基础信息
|
|
</div>
|
|
<div className='super-screen-body right'>
|
|
基础信息
|
|
</div>
|
|
</div >
|
|
}
|
|
|
|
function mapStateToProps(state) {
|
|
const { auth, global } = state;
|
|
return {
|
|
user: auth.user,
|
|
clientHeight: global.clientHeight,
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(Basis);
|