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/templates/sharecomponent/settingcomponent/settingform/index.jsx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/templates/sharecomponent/settingcomponent/settingform/index.jsx b/src/templates/sharecomponent/settingcomponent/settingform/index.jsx index 3c8e2e3..b5f1bc2 100644 --- a/src/templates/sharecomponent/settingcomponent/settingform/index.jsx +++ b/src/templates/sharecomponent/settingcomponent/settingform/index.jsx @@ -53,13 +53,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> ) @@ -77,7 +77,7 @@ <span className="operation-btn" title={this.props.dict['header.form.status.change']} onClick={() => this.handleStatus(record)} 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) }> <span className="operation-btn" style={{color: '#ff4d4f'}}><Icon type="delete" /></span> -- Gitblit v1.8.0