+
+ {/*基础信息*/}
+
+ {/*列表数据*/}
+
this.setState({ showSearchAd: bool })}
+ advanceHeight={300} searchsAd={getSearchs(form, toJS(advanceConditions), 2)}
buttons={[
+
+ {getLabel(32935, "导入")}
+
+ }
+ type="primary">{getLabel(1421, "新增")},
({ ...it, showname: getLabel(it.lanId, it.showname) }))}/>
- ]}
+ value={declareStatus}
+ style={{ width: 150 }}
+ options={_.map(submitStatus, it => ({ ...it, showname: getLabel(it.lanId, it.showname) }))}
+ onChange={declareStatus => this.setState({ declareStatus })}
+ />
+ ]} searchsBaseValue={form.getFormParams().keyword}
+ onSearchChange={(v) => form.updateFields({ keyword: v })}
onChange={key => this.setState({ selectedKey: key })}
+ onAdReset={() => form.resetForm()}
/>
+
+
+
+
+
diff --git a/pc4mobx/hrmSalary/pages/employeedeclareDetail/index.less b/pc4mobx/hrmSalary/pages/employeedeclareDetail/index.less
index 5368ac1a..d303eded 100644
--- a/pc4mobx/hrmSalary/pages/employeedeclareDetail/index.less
+++ b/pc4mobx/hrmSalary/pages/employeedeclareDetail/index.less
@@ -49,3 +49,54 @@
}
}
}
+
+.pickerDateCustom {
+ .icon-coms-Browse-box-delete, .icon-coms-Browse-box-Add-to {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border: 1px solid #e5e5e5;
+ background: transparent;
+ cursor: pointer;
+ outline: none;
+ padding: 0 6px;
+ height: 30px;
+ top: auto;
+ }
+
+ .icon-coms-Browse-box-delete:hover, .icon-coms-Browse-box-Add-to:hover {
+ color: #5d9cec;
+ }
+
+}
+
+.ant-calendar-picker-container {
+ right: 0 !important;
+ left: auto !important;
+}
+
+.declareSchemeDialog {
+ height: 100%;
+ padding: 16px;
+ overflow-y: auto;
+}
+
+.flex {
+ display: flex;
+}
+
+.flex-rollback {
+ flex-direction: column;
+}
+
+.flex-1 {
+ flex: 1;
+
+ .ant-spin-nested-loading, .ant-spin-container {
+ height: 99%;
+ }
+}
+
+.a-center {
+ align-items: center;
+}
diff --git a/pc4mobx/hrmSalary/stores/employeeDeclare.js b/pc4mobx/hrmSalary/stores/employeeDeclare.js
new file mode 100644
index 00000000..9566d8c9
--- /dev/null
+++ b/pc4mobx/hrmSalary/stores/employeeDeclare.js
@@ -0,0 +1,13 @@
+import { action, observable } from "mobx";
+import { WeaForm, WeaTableNew } from "comsMobx";
+
+const { TableStore } = WeaTableNew;
+
+export class EmployeeDeclareStore {
+ @observable advanceForm = new WeaForm(); //人员信息报送详情页面,高级搜索form实例
+ @observable tableStore = new TableStore();
+
+ @action("...")
+ Init = () => {
+ };
+}
diff --git a/pc4mobx/hrmSalary/stores/index.js b/pc4mobx/hrmSalary/stores/index.js
index c9590ab3..7d14ab86 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 { EmployeeDeclareStore } from "./employeeDeclare";
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(),
+ employeeDeclareStore: new EmployeeDeclareStore()
};