23 lines
369 B
JavaScript
23 lines
369 B
JavaScript
/*
|
|
* Author: 黎永顺
|
|
* name: 薪资核算查看
|
|
* Description:
|
|
* Date: 2023/12/7
|
|
*/
|
|
import React, { Component } from "react";
|
|
import { WeaLocaleProvider } from "ecCom";
|
|
|
|
const getLabel = WeaLocaleProvider.getLabel;
|
|
|
|
class Index extends Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
薪资核算查看
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Index;
|