BatchAudit.js 466 Bytes
Newer Older
钟是志's avatar
钟是志 committed
1 2 3 4 5 6
/***
 * 批量审核
 * 2020年5月7日 09:53:12
 * 钟是志
 *
 * */
钟是志's avatar
钟是志 committed
7
import React, { Component, useEffect, useState } from 'react';
钟是志's avatar
钟是志 committed
8
import AuditPage from './index';
9
import { getIsBei_Dian } from '@/webPublic/zyd_public/utils/getSchoolType';
钟是志's avatar
钟是志 committed
10

钟是志's avatar
钟是志 committed
11
export default function BatchAudit(props) {
12 13 14 15 16
	let noNeedForm = false;
	if (props.workId === '1492048888356405248') {
		noNeedForm = true;
	}

17
	return <AuditPage {...props} hasBatchAudit={true} noNeedForm={noNeedForm} />;
钟是志's avatar
钟是志 committed
18
}