mirror of
https://github.com/eyebluecn/tank-front
synced 2024-04-21 12:31:55 +00:00
change soft del and hard del order.
This commit is contained in:
@@ -340,6 +340,7 @@ let LangZh = {
|
||||
required: "必填",
|
||||
cancel: "取消",
|
||||
delete: "删除",
|
||||
deleteDirectly: "直接删除",
|
||||
actionCanNotRevertConfirm: "此操作不可撤回, 是否继续?",
|
||||
actionDeleteConfirm: "确定删除吗?",
|
||||
actionRecoveryConfirm: "确定恢复吗?",
|
||||
|
||||
@@ -55,11 +55,11 @@ export default class MatterDeleteModal extends TankComponent<IProps, IState> {
|
||||
<Button className="mr10" onClick={this.props.onClose}>
|
||||
{Lang.t("cancel")}
|
||||
</Button>
|
||||
<Button type="primary" className="mr10" onClick={this.props.onSoftDel}>
|
||||
{Lang.t("matter.intoRecycleBin")}
|
||||
<Button type="primary" danger className="mr10" onClick={this.props.onHardDel}>
|
||||
{Lang.t("deleteDirectly")}
|
||||
</Button>
|
||||
<Button type="primary" danger onClick={this.props.onHardDel}>
|
||||
{Lang.t("delete")}
|
||||
<Button type="primary" onClick={this.props.onSoftDel}>
|
||||
{Lang.t("matter.intoRecycleBin")}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user