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

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

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