From af02b8f3c3ec9e5684be1084904d673429421d2b Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 03 九月 2020 16:40:47 +0800 Subject: [PATCH] 2020-09-03 --- src/menu/actioncomponent/verifyexcelin/index.jsx | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/menu/actioncomponent/verifyexcelin/index.jsx b/src/menu/actioncomponent/verifyexcelin/index.jsx index 2103682..3035b8b 100644 --- a/src/menu/actioncomponent/verifyexcelin/index.jsx +++ b/src/menu/actioncomponent/verifyexcelin/index.jsx @@ -84,7 +84,7 @@ <span className="operation-btn" title={this.props.dict['header.form.down']} onClick={() => this.handleUpDown(record, 'columns', 'down')} style={{color: '#ff4d4f'}}><Icon type="arrow-down" /></span> <Popconfirm overlayClassName="popover-confirm" - title={this.props.dict['header.form.query.delete']} + title={this.props.dict['model.query.delete']} onConfirm={() => this.handleDelete(record, 'columns') }> <span className="operation-btn" style={{color: '#ff4d4f'}}><Icon type="delete" /></span> @@ -117,13 +117,13 @@ render: (text, record) => record.status === 'false' ? ( <div> - {this.props.dict['header.form.status.forbidden']} + {this.props.dict['model.status.forbidden']} <Icon style={{marginLeft: '5px'}} type="stop" theme="twoTone" twoToneColor="#ff4d4f" /> </div> ) : ( <div> - {this.props.dict['header.form.status.open']} + {this.props.dict['model.status.open']} <Icon style={{marginLeft: '5px'}} type="check-circle" theme="twoTone" twoToneColor="#52c41a" /> </div> ) @@ -141,7 +141,7 @@ <span className="operation-btn" title={this.props.dict['header.form.status.change']} onClick={() => this.handleStatus(record, 'unique')} style={{color: '#8E44AD'}}><Icon type="swap" /></span> <Popconfirm overlayClassName="popover-confirm" - title={this.props.dict['header.form.query.delete']} + title={this.props.dict['model.query.delete']} onConfirm={() => this.handleDelete(record, 'unique') }> <span className="operation-btn" style={{color: '#ff4d4f'}}><Icon type="delete" /></span> @@ -181,13 +181,13 @@ render: (text, record) => record.status === 'false' ? ( <div> - {this.props.dict['header.form.status.forbidden']} + {this.props.dict['model.status.forbidden']} <Icon style={{marginLeft: '5px'}} type="stop" theme="twoTone" twoToneColor="#ff4d4f" /> </div> ) : ( <div> - {this.props.dict['header.form.status.open']} + {this.props.dict['model.status.open']} <Icon style={{marginLeft: '5px'}} type="check-circle" theme="twoTone" twoToneColor="#52c41a" /> </div> ) @@ -205,7 +205,7 @@ <span className="operation-btn" title={this.props.dict['header.form.status.change']} onClick={() => this.handleStatus(record, 'scripts')} style={{color: '#8E44AD'}}><Icon type="swap" /></span> <Popconfirm overlayClassName="popover-confirm" - title={this.props.dict['header.form.query.delete']} + title={this.props.dict['model.query.delete']} onConfirm={() => this.handleDelete(record, 'scripts') }> <span className="operation-btn" style={{color: '#ff4d4f'}}><Icon type="delete" /></span> -- Gitblit v1.8.0