diff --git a/web/client/src/sections/humanAffairs/containers/communication/detailModal.js b/web/client/src/sections/humanAffairs/containers/communication/detailModal.js index c4e2010..755fb7f 100644 --- a/web/client/src/sections/humanAffairs/containers/communication/detailModal.js +++ b/web/client/src/sections/humanAffairs/containers/communication/detailModal.js @@ -1,6 +1,6 @@ import React, { useEffect, useRef, useState } from 'react'; import { connect } from "react-redux"; -import { Select, Modal, Form, Button, Toast } from "@douyinfe/semi-ui"; +import { Modal, Button, Row, Col, Input } from "@douyinfe/semi-ui"; const DetailModal = (props) => { const { dispatch, actions, user, onCancel, dataToDetail, close } = props; const { humanAffairs } = actions; @@ -13,6 +13,7 @@ const DetailModal = (props) => { return ( { } > - + + + 被沟通人: + + + + 岗位: + + + + + + 部门: + + + + 沟通截止时间: + + + + + + 沟通主题: + + + + 沟通背景: + + + +
面谈的主要内容
) }