编号设置路径修改
This commit is contained in:
parent
76051adc16
commit
88bf00cc8d
|
|
@ -2,7 +2,7 @@
|
||||||
* Author: 黎永顺
|
* Author: 黎永顺
|
||||||
* Description:
|
* Description:
|
||||||
* Date: 2022-06-07 09:52:01
|
* Date: 2022-06-07 09:52:01
|
||||||
* LastEditTime: 2022-06-07 17:00:34
|
* LastEditTime: 2022-06-08 09:37:41
|
||||||
*/
|
*/
|
||||||
import { WeaTools } from "ecCom";
|
import { WeaTools } from "ecCom";
|
||||||
|
|
||||||
|
|
@ -48,3 +48,42 @@ export const getStartNumForm = (params) => {
|
||||||
params
|
params
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* name: 高级搜索条件
|
||||||
|
* param {*} params
|
||||||
|
* return {*}
|
||||||
|
*/
|
||||||
|
export const getAdvanceSearchCondition = (params) => {
|
||||||
|
return WeaTools.callApi(
|
||||||
|
"/api/hrm/codeSetting/getAdvanceSearchCondition",
|
||||||
|
"GET",
|
||||||
|
params
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* name: 预留编号设置列表查询
|
||||||
|
* param {*} params
|
||||||
|
* return {*}
|
||||||
|
*/
|
||||||
|
export const getSearchReservedCodeList = (params) => {
|
||||||
|
return WeaTools.callApi(
|
||||||
|
"/api/hrm/codeSetting/getSearchReservedCodeList",
|
||||||
|
"POST",
|
||||||
|
params
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* name: 新增预留编号表单查询
|
||||||
|
* param {*} params
|
||||||
|
* return {*}
|
||||||
|
*/
|
||||||
|
export const getReservedCodeFrom = (params) => {
|
||||||
|
return WeaTools.callApi(
|
||||||
|
"/api/hrm/codeSetting/getReservedCodeFrom",
|
||||||
|
"GET",
|
||||||
|
params
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ import {
|
||||||
WeaInputNumber,
|
WeaInputNumber,
|
||||||
} from "ecCom";
|
} from "ecCom";
|
||||||
import Preview from "./preview";
|
import Preview from "./preview";
|
||||||
import { i18n } from "../../../public/i18n";
|
import { i18n } from "../../../../public/i18n";
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
import "../index.less";
|
import "../index.less";
|
||||||
|
|
||||||
|
|
@ -8,7 +8,7 @@ import React, { Component, Fragment } from "react";
|
||||||
import { Button, Modal } from "antd";
|
import { Button, Modal } from "antd";
|
||||||
import StartNumberSetting from "./startNumberSetting";
|
import StartNumberSetting from "./startNumberSetting";
|
||||||
import { WeaFormItem, WeaDialog, WeaMoreButton } from "ecCom";
|
import { WeaFormItem, WeaDialog, WeaMoreButton } from "ecCom";
|
||||||
import { i18n } from "../../../public/i18n";
|
import { i18n } from "../../../../public/i18n";
|
||||||
|
|
||||||
class StartReservedNumberSet extends Component {
|
class StartReservedNumberSet extends Component {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|
@ -17,7 +17,7 @@ import {
|
||||||
} from "ecCom";
|
} from "ecCom";
|
||||||
import StartReservedNumberSet from "./components/startReservedNumberSet";
|
import StartReservedNumberSet from "./components/startReservedNumberSet";
|
||||||
import NumberComposition from "./components/numberComposition";
|
import NumberComposition from "./components/numberComposition";
|
||||||
import { i18n } from "../../public/i18n";
|
import { i18n } from "../../../public/i18n";
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import "./index.less";
|
import "./index.less";
|
||||||
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
* Author: 黎永顺
|
* Author: 黎永顺
|
||||||
* Description: 部门编号设置
|
* Description: 部门编号设置
|
||||||
* Date: 2022-06-06 09:37:39
|
* Date: 2022-06-06 09:37:39
|
||||||
* LastEditTime: 2022-06-07 17:44:30
|
* LastEditTime: 2022-06-08 09:32:09
|
||||||
*/
|
*/
|
||||||
import React, { Component, Fragment } from "react";
|
import React, { Component, Fragment } from "react";
|
||||||
import { inject, observer } from "mobx-react";
|
import { inject, observer } from "mobx-react";
|
||||||
|
|
@ -17,7 +17,7 @@ import {
|
||||||
} from "ecCom";
|
} from "ecCom";
|
||||||
import StartReservedNumberSet from "../branchNumSetting/components/startReservedNumberSet";
|
import StartReservedNumberSet from "../branchNumSetting/components/startReservedNumberSet";
|
||||||
import NumberComposition from "../branchNumSetting/components/numberComposition";
|
import NumberComposition from "../branchNumSetting/components/numberComposition";
|
||||||
import { i18n } from "../../public/i18n";
|
import { i18n } from "../../../public/i18n";
|
||||||
import moment from 'moment';
|
import moment from 'moment';
|
||||||
import "../branchNumSetting/index.less";
|
import "../branchNumSetting/index.less";
|
||||||
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
* Author: 黎永顺
|
* Author: 黎永顺
|
||||||
* Description: 岗位编号设置
|
* Description: 岗位编号设置
|
||||||
* Date: 2022-06-06 09:37:39
|
* Date: 2022-06-06 09:37:39
|
||||||
* LastEditTime: 2022-06-07 17:49:19
|
* LastEditTime: 2022-06-08 09:32:24
|
||||||
*/
|
*/
|
||||||
import React, { Component, Fragment } from "react";
|
import React, { Component, Fragment } from "react";
|
||||||
import { inject, observer } from "mobx-react";
|
import { inject, observer } from "mobx-react";
|
||||||
|
|
@ -17,7 +17,7 @@ import {
|
||||||
} from "ecCom";
|
} from "ecCom";
|
||||||
import StartReservedNumberSet from "../branchNumSetting/components/startReservedNumberSet";
|
import StartReservedNumberSet from "../branchNumSetting/components/startReservedNumberSet";
|
||||||
import NumberComposition from "../branchNumSetting/components/numberComposition";
|
import NumberComposition from "../branchNumSetting/components/numberComposition";
|
||||||
import { i18n } from "../../public/i18n";
|
import { i18n } from "../../../public/i18n";
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import "../branchNumSetting/index.less";
|
import "../branchNumSetting/index.less";
|
||||||
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
* Author: 黎永顺
|
* Author: 黎永顺
|
||||||
* Description: 岗位编号设置
|
* Description: 岗位编号设置
|
||||||
* Date: 2022-06-06 09:37:39
|
* Date: 2022-06-06 09:37:39
|
||||||
* LastEditTime: 2022-06-07 17:56:42
|
* LastEditTime: 2022-06-08 09:32:33
|
||||||
*/
|
*/
|
||||||
import React, { Component, Fragment } from "react";
|
import React, { Component, Fragment } from "react";
|
||||||
import { inject, observer } from "mobx-react";
|
import { inject, observer } from "mobx-react";
|
||||||
|
|
@ -17,7 +17,7 @@ import {
|
||||||
} from "ecCom";
|
} from "ecCom";
|
||||||
import StartReservedNumberSet from "../branchNumSetting/components/startReservedNumberSet";
|
import StartReservedNumberSet from "../branchNumSetting/components/startReservedNumberSet";
|
||||||
import NumberComposition from "../branchNumSetting/components/numberComposition";
|
import NumberComposition from "../branchNumSetting/components/numberComposition";
|
||||||
import { i18n } from "../../public/i18n";
|
import { i18n } from "../../../public/i18n";
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
import "../branchNumSetting/index.less";
|
import "../branchNumSetting/index.less";
|
||||||
|
|
||||||
|
|
@ -11,10 +11,10 @@ import Sequence from "./components/sequence/Sequence";
|
||||||
import Group from "./components/group/Group";
|
import Group from "./components/group/Group";
|
||||||
import OfficeManage from "./components/office/officeManage";
|
import OfficeManage from "./components/office/officeManage";
|
||||||
import CompanyExtend from "./components/company/CompanyExtend";
|
import CompanyExtend from "./components/company/CompanyExtend";
|
||||||
import BranchNumSetting from "./components/branchNumSetting";
|
import BranchNumSetting from "./components/numberSetting/branchNumSetting";
|
||||||
import DeptNumberSet from "./components/deptNumberSet";
|
import DeptNumberSet from "./components/numberSetting/deptNumberSet";
|
||||||
import PostNumberSet from "./components/postNumberSet";
|
import PostNumberSet from "./components/numberSetting/postNumberSet";
|
||||||
import ResourceNumberSet from "./components/resourceNumberSet";
|
import ResourceNumberSet from "./components/numberSetting/resourceNumberSet";
|
||||||
import Company from "./components/company/company";
|
import Company from "./components/company/company";
|
||||||
import DepartmentManage from "./components/department/department";
|
import DepartmentManage from "./components/department/department";
|
||||||
import StaffScheme from "./components/staff/StaffScheme";
|
import StaffScheme from "./components/staff/StaffScheme";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue