feature/2.15.1.2407.01-导入工具

This commit is contained in:
黎永顺 2024-08-16 16:37:45 +08:00
parent e8625fd0ef
commit f730cba8de
2 changed files with 28 additions and 0 deletions

View File

@ -7,6 +7,7 @@
import React, { Component } from "react";
import { WeaLocaleProvider, WeaTable } from "ecCom";
import successImg from "../../importModal/success.svg";
import MoveInResult from "./moveInResult";
const getLabel = WeaLocaleProvider.getLabel;
@ -15,6 +16,8 @@ class ImpStep3 extends Component {
const { importResult } = this.props;
return (
<div className="weapp-batch-impsteps-picker-content-imp-step3">
<MoveInResult/>
{
!_.isEmpty(importResult) ?
<div className="weapp-batch-impsteps-picker-spinText">

View File

@ -0,0 +1,25 @@
/*
* 薪酬迁入结果展示
*
* @Author: 黎永顺
* @Date: 2024/8/16
* @Wechat:
* @Email: 971387674@qq.com
* @description:
*/
import React, { Component } from "react";
import { WeaLocaleProvider } from "ecCom";
const getLabel = WeaLocaleProvider.getLabel;
class MoveInResult extends Component {
render() {
return (
<div>
</div>
);
}
}
export default MoveInResult;