Commit 02bc8edf authored by 卢均锐's avatar 卢均锐

fix: 报价弹窗取消按钮位置问题

parent a9b09224
import React, { useState, useEffect, useMemo } from 'react'; import React, { useState, useEffect, useMemo } from 'react';
import { Row, Col, Input, Drawer, Table, Space, Typography, message, Form } from 'antd'; import { Row, Col, Input, Drawer, Table, Space, Typography, message, Form,Button } from 'antd';
import { ColumnType } from 'antd/lib/table/interface'; import { ColumnType } from 'antd/lib/table/interface';
import { priceFormat } from '@/utils/numberFomat'; import { priceFormat } from '@/utils/numberFomat';
...@@ -187,13 +187,13 @@ const DetailBottomDrawer: React.FC<DetailBottomDrawerProps> = (props: any) => { ...@@ -187,13 +187,13 @@ const DetailBottomDrawer: React.FC<DetailBottomDrawerProps> = (props: any) => {
<Drawer <Drawer
title={intl.formatMessage({ id: 'detail.purchase.modalTitle14' })} title={intl.formatMessage({ id: 'detail.purchase.modalTitle14' })}
placement={'bottom'} placement={'bottom'}
closable={true} closable={false}
onClose={onClose} onClose={onClose}
visible={visible} visible={visible}
key={'bottom'} key={'bottom'}
height={450} height={450}
className={styles.drawer} className={styles.drawer}
closeIcon={<div>{intl.formatMessage({ id: 'detail.purchase.cancelOffer' })}</div>} extra={<Button onClick={onClose}>{intl.formatMessage({ id: 'detail.purchase.cancelOffer' })}</Button>}
> >
<div style={{ width: '100%', overflowX: 'auto' }}> <div style={{ width: '100%', overflowX: 'auto' }}>
<Row gutter={[8, 8]} style={{ marginBottom: '10px' }} wrap={false}> <Row gutter={[8, 8]} style={{ marginBottom: '10px' }} wrap={false}>
......
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