投标文件智能审查
This commit is contained in:
@ -8,6 +8,7 @@ import ViewBlacklistFormModal from './components/ViewBlacklistFormModal';
|
||||
import ViewReviewResultFormModal from './components/ViewReviewResultFormModal';
|
||||
import ViewJuryScoringRemindFormModal from './components/ViewJuryScoringRemindFormModal';
|
||||
import ViewJuryScoringAnalysisFormModal from './components/ViewJuryScoringAnalysisFormModal';
|
||||
import BidDocSmartCheckFormModal from './components/BidDocSmartCheckFormModal';
|
||||
|
||||
function callback(key) {
|
||||
//getSessionUserData.roleIds;
|
||||
@ -90,6 +91,11 @@ const Sing: React.FC<{}> = () => {
|
||||
const [ViewJuryScoringAnalysisFormVisible, setViewJuryScoringAnalysisFormVisible] = useState<any>(false);
|
||||
//查看详情窗口record
|
||||
const [ViewJuryScoringAnalysisValues, setViewJuryScoringAnalysisValues] = useState<any>({});
|
||||
|
||||
//投标文件智能审查
|
||||
const [BidDocSmartCheckFormVisible, setBidDocSmartCheckFormVisible] = useState<any>(false);
|
||||
//查看详情窗口record
|
||||
const [BidDocSmartCheckValues, setBidDocSmartCheckValues] = useState<any>({});
|
||||
|
||||
|
||||
const getWarningList = async() => {
|
||||
@ -175,6 +181,19 @@ const Sing: React.FC<{}> = () => {
|
||||
</ViewJuryScoringAnalysisFormModal>
|
||||
) : null
|
||||
}
|
||||
{
|
||||
BidDocSmartCheckFormModal ? (
|
||||
<BidDocSmartCheckFormModal
|
||||
modalVisible={BidDocSmartCheckFormVisible}
|
||||
values={BidDocSmartCheckValues}
|
||||
onCancel={() => {
|
||||
setBidDocSmartCheckFormVisible(!BidDocSmartCheckFormVisible);
|
||||
setBidDocSmartCheckValues({});
|
||||
}}
|
||||
>
|
||||
</BidDocSmartCheckFormModal>
|
||||
) : null
|
||||
}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
Reference in New Issue
Block a user