社保福利台账详情页面退差功能对接

This commit is contained in:
黎永顺 2022-11-24 18:45:12 +08:00
parent c040469ee1
commit 23b44a0b4c
1 changed files with 2 additions and 2 deletions

View File

@ -145,7 +145,7 @@ class RegEditDetial extends Component {
});
break;
case "fund":
const fundlist = _.map(socialData.dataSource, item => {
const fundlist = _.map(foundData.dataSource, item => {
if (item.insuranceId === record.insuranceId) {
return { ...item, [dataIndex]: value };
}
@ -156,7 +156,7 @@ class RegEditDetial extends Component {
});
break;
case "other":
const otherlist = _.map(socialData.dataSource, item => {
const otherlist = _.map(otherData.dataSource, item => {
if (item.insuranceId === record.insuranceId) {
return { ...item, [dataIndex]: value };
}