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

取消数据字典分页

parent a681dca6
......@@ -822,7 +822,7 @@ const WebDic = () => {
setSelectID(record.nodeID);
}}
ItemTypes="first"
pagination={pagenation}
pagination={false}
/>
</Col>
<Col span={16}>
......@@ -859,7 +859,7 @@ const WebDic = () => {
</Tooltip>
</div>
)}
pagination={pagenation}
pagination={false}
/>
</Spin>
</Col>
......
.WebDic{
.item{
.WebDic {
.item {
margin-bottom: 20px;
}
.ant-table-content{
.ant-table-content {
max-height: calc(100vh - 260px);
border-right: white;
overflow: auto !important;
}
.divv{
.divv {
.ant-modal-wrap {
z-index: 1001 !important;
}
}
.ant-table-tbody{
.clickRowStyle{
.ant-table-tbody {
.clickRowStyle {
background: #cfe7fd;
}
.clickRowStyle:hover>td{
.clickRowStyle:hover > td {
background: #aed8fa;
}
.clickRowStyle1{
.clickRowStyle1 {
background: #b9dbfa;
}
.clickRowStyle1:hover>td{
.clickRowStyle1:hover > td {
background: #9ec3e2;
}
}
.ant-table-body{
max-height: calc(100vh - 345px) !important;
min-height:calc(100vh - 345px);
.ant-table-body {
max-height: calc(100vh - 300px) !important;
min-height: calc(100vh - 300px);
margin-right: -6px;
width:100%;
width: 100%;
}
.ant-table-pagination.ant-pagination {
margin: 10px 0 !important;
......@@ -38,9 +38,9 @@
.font {
font-weight: bold;
}
.tab{
.tab {
padding-right: 5px;
.ant-table-body{
.ant-table-body {
margin-right: -7px;
}
}
......
......@@ -130,7 +130,7 @@ const AddFlowsModal = props => {
let a1 = [];
let a2;
let a3 = [];
initialArr.map(i => {
initialArr.data.map(i => {
// console.log(i.groupType)
a2 = i.groupType;
// console.log(a2)
......
......@@ -796,7 +796,7 @@ const AddModal = props => {
let a1 = [];
let a2;
let a3 = [];
initialArr.map(i => {
initialArr.data.map(i => {
// console.log(i.groupType)
a2 = i.groupType;
// console.log(a2)
......
......@@ -740,7 +740,7 @@ const AddModal = props => {
forceRender
getContainer={false}
>
{/* <Search
<Search
style={{
width: 260,
marginRight: '20px',
......@@ -751,8 +751,8 @@ const AddModal = props => {
onChange={e => handleSearch(e)}
enterButton
value={searchWord}
/> */}
{/* <Button
/>
<Button
type="primary"
htmlType="submit"
// onClick={() => {
......@@ -762,7 +762,7 @@ const AddModal = props => {
// }}
>
重置
</Button> */}
</Button>
{visible && (
<div className={styles.listCard1}>
<div className={styles.cardItem1}>
......@@ -819,7 +819,7 @@ const AddModal = props => {
</div>
</div>
)}
{/* <Pagination
<Pagination
total={total}
showTotal={item => `共 ${item} 条`}
defaultPageSize={pageSize}
......@@ -829,7 +829,7 @@ const AddModal = props => {
style={{ marginBottom: '10px' }}
size="small"
showQuickJumper
/> */}
/>
</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