|
|
@@ -11,7 +11,7 @@ import {
|
|
|
} from 'antd';
|
|
|
import type { TableProps } from 'antd';
|
|
|
|
|
|
-import { PlusCircleOutlined, MinusCircleOutlined, ArrowLeftOutlined, InfoCircleOutlined } from '@ant-design/icons';
|
|
|
+import { PlusCircleOutlined, MinusCircleOutlined, ArrowLeftOutlined, InfoCircleOutlined,CloseCircleOutlined } from '@ant-design/icons';
|
|
|
import { apis } from '@/apis';
|
|
|
import router from '@/router';
|
|
|
import LocalStorage from '@/LocalStorage';
|
|
|
@@ -790,11 +790,16 @@ const QuestionAnswerInfo: React.FC = () => {
|
|
|
</Tag>)
|
|
|
)}
|
|
|
</p>
|
|
|
- <Button style={{
|
|
|
- background: 'transparent',
|
|
|
- border: '1px solid #1677ff',
|
|
|
- color: '#1677ff'
|
|
|
- }} type="primary" variant="outlined" onClick={() => { setIsModalOpen(true) }}>选择</Button>
|
|
|
+ <p>
|
|
|
+ {vipList.length>0&&<CloseCircleOutlined className='cup' onClick={()=>{
|
|
|
+ setVipList([]);
|
|
|
+ }} />}
|
|
|
+ <Button style={{
|
|
|
+ background: 'transparent',
|
|
|
+ border: '1px solid #1677ff',
|
|
|
+ color: '#1677ff'
|
|
|
+ }} type="primary" variant="outlined" onClick={() => { setIsModalOpen(true) }}>选择</Button>
|
|
|
+ </p>
|
|
|
</div>
|
|
|
</FormItem>
|
|
|
<FormItem
|