Commit b36e2c66 authored by 皮倩雯's avatar 皮倩雯

取消数据字典分页

parent a681dca6
...@@ -822,7 +822,7 @@ const WebDic = () => { ...@@ -822,7 +822,7 @@ const WebDic = () => {
setSelectID(record.nodeID); setSelectID(record.nodeID);
}} }}
ItemTypes="first" ItemTypes="first"
pagination={pagenation} pagination={false}
/> />
</Col> </Col>
<Col span={16}> <Col span={16}>
...@@ -859,7 +859,7 @@ const WebDic = () => { ...@@ -859,7 +859,7 @@ const WebDic = () => {
</Tooltip> </Tooltip>
</div> </div>
)} )}
pagination={pagenation} pagination={false}
/> />
</Spin> </Spin>
</Col> </Col>
......
.WebDic{ .WebDic {
.item{ .item {
margin-bottom: 20px; margin-bottom: 20px;
} }
.ant-table-content{ .ant-table-content {
max-height: calc(100vh - 260px); max-height: calc(100vh - 260px);
border-right: white; border-right: white;
overflow: auto !important; overflow: auto !important;
} }
.divv{ .divv {
.ant-modal-wrap { .ant-modal-wrap {
z-index: 1001 !important; z-index: 1001 !important;
} }
} }
.ant-table-tbody{ .ant-table-tbody {
.clickRowStyle{ .clickRowStyle {
background: #cfe7fd; background: #cfe7fd;
} }
.clickRowStyle:hover>td{ .clickRowStyle:hover > td {
background: #aed8fa; background: #aed8fa;
} }
.clickRowStyle1{ .clickRowStyle1 {
background: #b9dbfa; background: #b9dbfa;
} }
.clickRowStyle1:hover>td{ .clickRowStyle1:hover > td {
background: #9ec3e2; background: #9ec3e2;
} }
} }
.ant-table-body{ .ant-table-body {
max-height: calc(100vh - 345px) !important; max-height: calc(100vh - 300px) !important;
min-height:calc(100vh - 345px); min-height: calc(100vh - 300px);
margin-right: -6px; margin-right: -6px;
width:100%; width: 100%;
} }
.ant-table-pagination.ant-pagination { .ant-table-pagination.ant-pagination {
margin: 10px 0 !important; margin: 10px 0 !important;
} }
.font { .font {
font-weight: bold; font-weight: bold;
} }
.tab{ .tab {
padding-right: 5px; padding-right: 5px;
.ant-table-body{ .ant-table-body {
margin-right: -7px; margin-right: -7px;
} }
} }
// .pad{ // .pad{
// overflow-x: hidden; // overflow-x: hidden;
// } // }
.ant-table-wrapper { .ant-table-wrapper {
max-width: 98%; max-width: 98%;
margin-left: 2%; margin-left: 2%;
} }
} }
\ No newline at end of file
...@@ -130,7 +130,7 @@ const AddFlowsModal = props => { ...@@ -130,7 +130,7 @@ const AddFlowsModal = props => {
let a1 = []; let a1 = [];
let a2; let a2;
let a3 = []; let a3 = [];
initialArr.map(i => { initialArr.data.map(i => {
// console.log(i.groupType) // console.log(i.groupType)
a2 = i.groupType; a2 = i.groupType;
// console.log(a2) // console.log(a2)
......
...@@ -796,7 +796,7 @@ const AddModal = props => { ...@@ -796,7 +796,7 @@ const AddModal = props => {
let a1 = []; let a1 = [];
let a2; let a2;
let a3 = []; let a3 = [];
initialArr.map(i => { initialArr.data.map(i => {
// console.log(i.groupType) // console.log(i.groupType)
a2 = i.groupType; a2 = i.groupType;
// console.log(a2) // console.log(a2)
......
...@@ -740,7 +740,7 @@ const AddModal = props => { ...@@ -740,7 +740,7 @@ const AddModal = props => {
forceRender forceRender
getContainer={false} getContainer={false}
> >
{/* <Search <Search
style={{ style={{
width: 260, width: 260,
marginRight: '20px', marginRight: '20px',
...@@ -751,8 +751,8 @@ const AddModal = props => { ...@@ -751,8 +751,8 @@ const AddModal = props => {
onChange={e => handleSearch(e)} onChange={e => handleSearch(e)}
enterButton enterButton
value={searchWord} value={searchWord}
/> */} />
{/* <Button <Button
type="primary" type="primary"
htmlType="submit" htmlType="submit"
// onClick={() => { // onClick={() => {
...@@ -762,7 +762,7 @@ const AddModal = props => { ...@@ -762,7 +762,7 @@ const AddModal = props => {
// }} // }}
> >
重置 重置
</Button> */} </Button>
{visible && ( {visible && (
<div className={styles.listCard1}> <div className={styles.listCard1}>
<div className={styles.cardItem1}> <div className={styles.cardItem1}>
...@@ -819,7 +819,7 @@ const AddModal = props => { ...@@ -819,7 +819,7 @@ const AddModal = props => {
</div> </div>
</div> </div>
)} )}
{/* <Pagination <Pagination
total={total} total={total}
showTotal={item => `共 ${item} 条`} showTotal={item => `共 ${item} 条`}
defaultPageSize={pageSize} defaultPageSize={pageSize}
...@@ -829,7 +829,7 @@ const AddModal = props => { ...@@ -829,7 +829,7 @@ const AddModal = props => {
style={{ marginBottom: '10px' }} style={{ marginBottom: '10px' }}
size="small" size="small"
showQuickJumper showQuickJumper
/> */} />
</Modal> </Modal>
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment