提交 b13984f1 authored 作者: 钟是志's avatar 钟是志

批量审核增加 按钮名称的props定义

上级 ef7aaebc
...@@ -18,7 +18,7 @@ export default class AuditPage extends Component { ...@@ -18,7 +18,7 @@ export default class AuditPage extends Component {
componentDidMount() {} componentDidMount() {}
handleButtonSet = () => { handleButtonSet = () => {
const { hasBatchAudit } = this.props; const { hasBatchAudit, batchAuditButtonName } = this.props;
return { return {
tab1: [ tab1: [
hasBatchAudit ? { hasBatchAudit ? {
...@@ -44,7 +44,7 @@ export default class AuditPage extends Component { ...@@ -44,7 +44,7 @@ export default class AuditPage extends Component {
<AuditModal selectRows={selectRows} getPage={getPage}> <AuditModal selectRows={selectRows} getPage={getPage}>
{({ onShow }) => ( {({ onShow }) => (
<ButtonDiy <ButtonDiy
name="批量审核" name={batchAuditButtonName || "批量审核"}
handleClick={() => handleClick(onShow)} handleClick={() => handleClick(onShow)}
disabled={disabled} disabled={disabled}
/> />
......
...@@ -15,7 +15,7 @@ export default class Index extends React.Component { ...@@ -15,7 +15,7 @@ export default class Index extends React.Component {
static defaultProps = { static defaultProps = {
hasBatchAudit: false, // 是否有批量审核按钮 默认关掉 如果有需要再在外面包一层 2020年5月6日 18:44:11 钟是志 hasBatchAudit: false, // 是否有批量审核按钮 默认关掉 如果有需要再在外面包一层 2020年5月6日 18:44:11 钟是志
// 如果需要批量审核 则直接用 BatchAudit.js 文件 batchAuditButtonName: '批量审核', // 如果需要批量审核 则直接用 BatchAudit.js 文件
}; };
constructor(props) { constructor(props) {
...@@ -118,7 +118,7 @@ export default class Index extends React.Component { ...@@ -118,7 +118,7 @@ export default class Index extends React.Component {
render() { render() {
const { workId, dataBaseId, columns, searchCondition, addFields, allConfigSetInfo, tableInfo } = this.state; const { workId, dataBaseId, columns, searchCondition, addFields, allConfigSetInfo, tableInfo } = this.state;
const { hasBatchAudit } = this.props; const { hasBatchAudit, batchAuditButtonName } = this.props;
if(!workId){ if(!workId){
return null; return null;
} }
...@@ -132,6 +132,7 @@ export default class Index extends React.Component { ...@@ -132,6 +132,7 @@ export default class Index extends React.Component {
tableInfo={tableInfo} tableInfo={tableInfo}
allConfigSetInfo={allConfigSetInfo} allConfigSetInfo={allConfigSetInfo}
searchCondition={searchCondition} searchCondition={searchCondition}
batchAuditButtonName={batchAuditButtonName}
/> />
); );
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论