From 78142d32fe6719ac1dbd6adffc2dd6e75d69e9c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=8E=E6=B0=B8=E9=A1=BA?= <971387674@qq.com> Date: Sat, 11 May 2024 11:33:09 +0800 Subject: [PATCH] hotfix/2.12.1.2404.02 --- pc4mobx/hrmSalary/stores/custom-stores/index.js | 2 ++ pc4mobx/hrmSalary/stores/index.js | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pc4mobx/hrmSalary/stores/custom-stores/index.js b/pc4mobx/hrmSalary/stores/custom-stores/index.js index e69de29b..7be35b6b 100644 --- a/pc4mobx/hrmSalary/stores/custom-stores/index.js +++ b/pc4mobx/hrmSalary/stores/custom-stores/index.js @@ -0,0 +1,2 @@ +module.exports = { +}; diff --git a/pc4mobx/hrmSalary/stores/index.js b/pc4mobx/hrmSalary/stores/index.js index c9590ab3..56eee32a 100644 --- a/pc4mobx/hrmSalary/stores/index.js +++ b/pc4mobx/hrmSalary/stores/index.js @@ -19,6 +19,7 @@ import { StandingBookStore } from "./StandingBook"; import { PayrollFilesStore } from "./payrollFiles"; import { SpecialAddStore } from "./specialAdd"; import { ExternalPersonManageStore } from "./externalPersonManage"; +import CustomModule from "./custom-stores"; module.exports = { baseFormStore: new BaseFormStore(), @@ -41,5 +42,6 @@ module.exports = { standingBookStore: new StandingBookStore(), payrollFilesStore: new PayrollFilesStore(), specialAddStore: new SpecialAddStore(), - externalPersonManageStore: new ExternalPersonManageStore() + externalPersonManageStore: new ExternalPersonManageStore(), + ...CustomModule };