23 lines
622 B
JavaScript
23 lines
622 B
JavaScript
/*
|
|
* 薪酬报表-薪酬明细
|
|
* 模板管理弹框
|
|
* @Author: 黎永顺
|
|
* @Date: 2024/12/4
|
|
* @Wechat:
|
|
* @Email: 971387674@qq.com
|
|
* @description:
|
|
*/
|
|
import React, { Component } from "react";
|
|
import { WeaLocaleProvider } from "ecCom";
|
|
import CustomTransferDialog from "../../../components/CustomBrowser/components/customTransferDialog";
|
|
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
|
|
class SalaryTempMangerDialog extends Component {
|
|
render() {
|
|
return (<CustomTransferDialog {...this.props} buttons={[]} title={getLabel(111, "模板管理")}/>);
|
|
}
|
|
}
|
|
|
|
export default SalaryTempMangerDialog;
|