salary-management-front/pc4mobx/hrmSalary/components/custom-title/weaReqTitle/index.js

18 lines
464 B
JavaScript
Raw Normal View History

2024-06-17 16:17:16 +08:00
import React, { Component } from "react";
import { WeaLocaleProvider, WeaReqTop } from "ecCom";
const getLabel = WeaLocaleProvider.getLabel;
class Index extends Component {
render() {
return (
<WeaReqTop
2024-10-09 10:22:00 +08:00
title={this.props.title || getLabel(111, "编辑账套")} icon={<i className="icon-coms-fa"/>} iconBgcolor="#F14A2D"
2024-06-17 16:17:16 +08:00
showDropIcon={false} tabDatas={this.props.tabDatas} {...this.props}
/>
);
}
}
export default Index;