+
+
+ {/*

+
+
+
+
+
+
+

+
+
+
+
+ {/* 主要内容区域 */}
+
+ {/* 左侧:人员资质 */}
+
+
+
+
+ {/* 中间:部门人员分布 */}
+
+
+
+
+ {/* 右侧:到期提醒 */}
+
+
+
+
+ 到期提醒
+
+
+
+
+ 沈一撒合同已到期
+
+
+
+ 赵敏敏合同临期 15 天
+
+
+
+ 赵敏敏合同临期 15 天
+
+
+
+
+
+
+ {/* 底部表格区域 */}
+
+
+
+
+
+
+ 部门
+
+
+
+
+
+ }
+ style={{ backgroundColor: '#2E4CD4', color: '#fff', borderColor: '#2E4CD4' }}
+ onClick={() => this.handleModalVisible(true)}
+ >
+ 新增人员
+
+ }
+ className={styles['button-style']}
+ >
+ 批量导入
+
+ }
+ className={styles['button-style']}
+ >
+ 批量导出
+
+
+
+
+
+
+
`共 ${total} 条`}
+ />
+
+
+ {modalVisible &&
}
+
+ {updateFormValues && Object.keys(updateFormValues).length ? (
+
+ ) : null}
+
+ {viewFormValues && Object.keys(viewFormValues).length ? (
+
+ ) : null}
+
+ )
+ }
+}
+
+export default PersonnelBasicInfo;
diff --git a/src/pages/business_basicinformation/components/QualificationManagement.js b/src/pages/business_basicinformation/components/QualificationManagement.js
new file mode 100644
index 0000000..1af972f
--- /dev/null
+++ b/src/pages/business_basicinformation/components/QualificationManagement.js
@@ -0,0 +1,743 @@
+import React, { PureComponent } from 'react';
+import {
+ DeleteOutlined,
+ EditOutlined,
+ PlusOutlined,
+ SearchOutlined,
+ RedoOutlined,
+ DownOutlined,
+ ExclamationCircleFilled,
+ UpOutlined,
+ SafetyOutlined,
+ ImportOutlined,
+ ExportOutlined,
+ UserOutlined,
+ TeamOutlined,
+ SettingOutlined,
+ FileTextOutlined,
+ ProjectOutlined,
+ WarningOutlined,
+ AlertOutlined,
+} from '@ant-design/icons';
+import { Button, Card, Divider, Dropdown, message, Modal, Popconfirm, Space, Switch, Tag, Row, Col, Tree, Progress, Input, Select } from 'antd';
+import StandardTable from '@/components/StandardTable';
+import ReactECharts from 'echarts-for-react';
+
+import { MyIcon } from "@/components/Icon"
+import style from "@/global.less";
+import StaffSheetCreateForm from '../form/BasicInfoCreateForm'; //新增表单
+import StaffSheetUpdateForm from '../form/BasicInfoUpdateForm'; //修改表单
+import StaffSheetViewForm from '../form/BasicInfoViewForm'; //查看表单
+import styles from '../BasicInformation.less';
+import datadictionary from "@/utils/dataDictionary";
+import { formatDate } from "@/utils/formatUtils";
+import { formatDictText, checkButtonAuthority } from "@/utils/globalCommon";
+
+const { confirm } = Modal;
+
+//预约类型
+const sex_type = datadictionary.sex
+const user_status = datadictionary.user_status
+const sys_user_post = datadictionary.sys_user_post
+
+const mockData = {
+ list: [
+ {
+ id: '01',
+ certificateName: '安全生产许可证',
+ certificateNumber: 'AQ103',
+ validDate: '2025-09-09',
+ status: '有效',
+ remainingDays: 15,
+ fileLink: '点击查看 PDF',
+ },
+ {
+ id: '02',
+ certificateName: '特种设备证书',
+ certificateNumber: 'AQ103',
+ validDate: '2025-09-09',
+ status: '有效',
+ remainingDays: 15,
+ fileLink: '点击查看 PDF',
+ },
+ {
+ id: '03',
+ certificateName: '安全许可证书',
+ certificateNumber: 'AQ103',
+ validDate: '2025-09-09',
+ status: '即将到期',
+ remainingDays: 15,
+ fileLink: '点击查看 PDF',
+ },
+ {
+ id: '04',
+ certificateName: '安全生产许可证',
+ certificateNumber: 'AQ103',
+ validDate: '2025-09-09',
+ status: '即将到期',
+ remainingDays: 15,
+ fileLink: '点击查看 PDF',
+ },
+ {
+ id: '05',
+ certificateName: '安全生产许可证',
+ certificateNumber: 'AQ103',
+ validDate: '2025-09-09',
+ status: '异常',
+ remainingDays: 15,
+ fileLink: '点击查看 PDF',
+ },
+ ],
+ pagination: {
+ total: 48,
+ current: 1,
+ pageSize: 5,
+ },
+}
+
+class QualificationManagement extends PureComponent {
+ state = {
+ modalVisible: false,
+ updateModalVisible: false,
+ viewModalVisible: false,
+ expandForm: false,
+ selectedRows: [],
+ formValues: {},
+ updateFormValues: {},
+ viewFormValues: {},
+ toggleExpand: false,
+ }
+
+ columns = [
+ {
+ title: '序号',
+ dataIndex: 'id',
+ key: 'id',
+ width: 60,
+ fixed: 'left',
+ render: (text) => (
+
{text}
+ ),
+ },
+ {
+ title: '证书名称',
+ dataIndex: 'certificateName',
+ key: 'certificateName',
+ width: 150,
+ fixed: 'left',
+ render: (text) => (
+
{text}
+ ),
+ },
+ {
+ title: '编号',
+ dataIndex: 'certificateNumber',
+ key: 'certificateNumber',
+ width: 120,
+ render: (text) => (
+
{text}
+ ),
+ },
+ {
+ title: '有效期',
+ dataIndex: 'validDate',
+ key: 'validDate',
+ width: 100,
+ render: (text) => (
+
{text}
+ ),
+ },
+ {
+ title: '状态',
+ dataIndex: 'status',
+ key: 'status',
+ width: 100,
+ render: (text) => {
+ let color = '#2E4CD4';
+ let bgColor = '#E6E9FB';
+ if (text === '即将到期') {
+ color = '#FF8800';
+ bgColor = '#FFF3E9';
+ } else if (text === '异常') {
+ color = '#FF3E48';
+ bgColor = '#FFE0E2';
+ }
+ return (
+
+ {text}
+
+ );
+ },
+ },
+ {
+ title: '预警信息',
+ dataIndex: 'remainingDays',
+ key: 'remainingDays',
+ width: 100,
+ render: (text) => (
+
{text} 天
+ ),
+ },
+ {
+ title: '关联文件链接',
+ dataIndex: 'fileLink',
+ key: 'fileLink',
+ width: 120,
+ render: (text, record) => (
+
{text}
+ ),
+ },
+ // {
+ // title: '操作',
+ // fixed: 'right',
+ // align: 'center',
+ // width: 200,
+ // render: (text, record) => {
+ // return (
+ //
+ // )
+ // }
+ // },
+ ]
+
+ getPieChartOption = () => {
+ return {
+ tooltip: {
+ trigger: 'item',
+ formatter: '{a}
{b}: {c}% ({d}%)'
+ },
+ legend: {
+ orient: 'vertical',
+ right: '0',
+ top: '22%',
+ itemWidth: 16,
+ itemHeight: 4,
+ itemGap: 16,
+ textStyle: {
+ fontSize: 12,
+ color: '#666',
+ fontWeight: 'normal'
+ }
+ },
+ series: [
+ {
+ name: '证照类型分布',
+ type: 'pie',
+ radius: ['30%', '45%'],
+ center: ['30%', '40%'],
+ avoidLabelOverlap: false,
+ label: {
+ show: false
+ },
+ emphasis: {
+ scale: true,
+ scaleSize: 5
+ },
+ labelLine: {
+ show: false
+ },
+ data: [
+ {
+ value: 45,
+ name: '安全生产许可证',
+ itemStyle: {
+ color: '#4B69F1'
+ }
+ },
+ {
+ value: 20,
+ name: '安全评价报告',
+ itemStyle: {
+ color: '#44BB5F'
+ }
+ },
+ {
+ value: 20,
+ name: '施工资质证书',
+ itemStyle: {
+ color: '#A493FB'
+ }
+ },
+ {
+ value: 15,
+ name: '其他',
+ itemStyle: {
+ color: '#FFD85A'
+ }
+ }
+ ]
+ }
+ ]
+ };
+ }
+
+ getPieCertificationStatusChartOption = () => {
+ return {
+ tooltip: {
+ trigger: 'item',
+ formatter: '{b}: {c}% ({d}%)'
+ },
+ legend: {
+ orient: 'vertical',
+ right: '20%',
+ top: '22%',
+ itemWidth: 16,
+ itemHeight: 4,
+ itemGap: 16,
+ textStyle: {
+ fontSize: 12,
+ color: '#666'
+ }
+ },
+ series: [
+ {
+ name: '证照状态分布',
+ type: 'pie',
+ radius: '45%',
+ center: ['30%', '40%'],
+ avoidLabelOverlap: false,
+ label: {
+ show: true,
+ position: 'inside',
+ formatter: '{d}%',
+ fontSize: 12,
+ // fontWeight: 'bold',
+ color: '#fff'
+ },
+ emphasis: {
+ scale: true,
+ scaleSize: 5
+ },
+ labelLine: {
+ show: false
+ },
+ data: [
+ {
+ value: 40,
+ name: '有效',
+ itemStyle: {
+ color: '#1269FF'
+ }
+ },
+ {
+ value: 25,
+ name: '临期 30 天',
+ itemStyle: {
+ color: '#6E86F4'
+ }
+ },
+ {
+ value: 25,
+ name: '临期 15 天',
+ itemStyle: {
+ color: '#A3B3F8'
+ }
+ },
+ {
+ value: 10,
+ name: '异常',
+ itemStyle: {
+ color: '#C6D0FB'
+ }
+ }
+ ]
+ }
+ ]
+ };
+ }
+
+ handleStandardTableChange = (pagination, sorter) => {
+ const { dispatch } = this.props
+ const { formValues } = this.state
+
+ const params = {
+ currentPage: pagination.current,
+ pageSize: pagination.pageSize,
+ ...formValues
+ }
+
+ sorter.field && (params.sorter = `${sorter.field}_${sorter.order}`)
+ }
+
+ handleFormReset = () => {
+ const { dispatch } = this.props
+ this.setState({
+ formValues: {}
+ })
+ }
+
+ toggleForm = () => {
+ const { expandForm } = this.state
+ this.setState({
+ expandForm: !expandForm
+ })
+ }
+
+ handleSelectRows = rows => {
+ this.setState({
+ selectedRows: rows
+ })
+ }
+
+ handleSearch = values => {
+ const { dispatch } = this.props
+ const { expandForm } = this.state
+
+ this.setState({
+ formValues: values
+ })
+ }
+
+ handleModalVisible = flag => {
+ this.setState({
+ modalVisible: !!flag
+ })
+ }
+
+ handleUpdateModalVisible = (flag, record) => {
+ this.setState({
+ updateModalVisible: !!flag,
+ updateFormValues: record || {}
+ })
+ }
+
+ handleViewModalVisible = (flag, record) => {
+ this.setState({
+ viewModalVisible: !!flag,
+ viewFormValues: record || {}
+ })
+ }
+
+ handleAdd = fields => {
+ const { dispatch } = this.props
+ // 添加逻辑
+ }
+
+ handleDeleteRecord = record => {
+ const { dispatch } = this.props
+ // 删除逻辑
+ }
+
+ handleUpdate = fields => {
+ const { dispatch } = this.props
+ // 更新逻辑
+ }
+
+ handleCollapse = () => {
+ const { toggleExpand } = this.state
+ this.setState({
+ toggleExpand: !toggleExpand
+ })
+ }
+
+ render() {
+ const {
+ loading,
+ dispatch
+ } = this.props
+ const {
+ selectedRows,
+ modalVisible,
+ updateModalVisible,
+ viewModalVisible,
+ updateFormValues,
+ viewFormValues,
+ toggleExpand,
+ } = this.state
+
+ const parentMethods = {
+ handleAdd: this.handleAdd,
+ handleModalVisible: this.handleModalVisible,
+ dispatch: dispatch,
+ loading,
+ }
+
+ const updateMethods = {
+ handleUpdateModalVisible: this.handleUpdateModalVisible,
+ handleUpdate: this.handleUpdate,
+ dispatch: dispatch,
+ loading,
+ }
+
+ const viewMethods = {
+ handleViewModalVisible: this.handleViewModalVisible
+ }
+
+ return (
+
+ {/* 主要内容区域 */}
+
+ {/* 左侧:证照类型分布 */}
+
+
+
+
+ {/* 中间:证照状态分布 */}
+
+
+
+
+ {/* 右侧:临期预警 */}
+
+
+ {/* 添加半透明覆盖层以增强内容可读性 */}
+
+
+
+
+ 临期预警
+
+
+ {/* 证照预警列表 */}
+
+ {[
+ { name: '安全生产许可证', code: 'AQXK-2023-0552', status: '15天后到期', backgroundColor: '#FFF9F4', borderColor: '#FFD7BB', backgroundColorDate: '#FFEDDE', color: '#FF8800' },
+ { name: '安全生产许可证', code: 'AQXK-2023-0552', status: '15天后到期', backgroundColor: '#FFF9F4', borderColor: '#FFD7BB', backgroundColorDate: '#FFEDDE', color: '#FF8800' },
+ { name: '安全生产许可证', code: 'AQXK-2023-0552', status: '5天后到期', backgroundColor: '#FFF5F6', borderColor: '#FFC0BF', backgroundColorDate: '#FFE0E2', color: '#FF2526' }
+ ].map((item, index) => (
+
+
+
+ {item.name}
+
+
+ {item.status}
+
+
+
+ 编号:{item.code}
+
+
+ ))}
+
+
+
+
+
+ {/* 底部表格区域 */}
+
+
+
+
+
+
+ 证件类型
+
+
+
+
+
+ }
+ className={styles['button-style']}
+ >
+ 批量导入
+
+ }
+ className={styles['button-style']}
+ >
+ 批量导出
+
+
+
+
+
+
+
`共 ${total} 条`}
+ />
+
+
+ {modalVisible && }
+
+ {updateFormValues && Object.keys(updateFormValues).length ? (
+
+ ) : null}
+
+ {viewFormValues && Object.keys(viewFormValues).length ? (
+
+ ) : null}
+
+ )
+ }
+}
+
+export default QualificationManagement;
diff --git a/src/pages/business_basicinformation/form/BasicInfoCreateForm.js b/src/pages/business_basicinformation/form/BasicInfoCreateForm.js
new file mode 100644
index 0000000..bafac8c
--- /dev/null
+++ b/src/pages/business_basicinformation/form/BasicInfoCreateForm.js
@@ -0,0 +1,167 @@
+import { useState, useEffect } from 'react'
+import { Col, DatePicker, Form, Input, Modal, Row, Select } from 'antd'
+import SelectDeptTree from '@/components/SelectDeptTree'
+import SelectOrganTree from '@/components/SelectOrganTree'
+import datadictionary from '@/utils/dataDictionary'
+import { formatDictOptions, verifyPhone } from '@/utils/globalCommon'
+import { NumberInput } from '@/components/NumberInput'
+import styles from '../BasicInformation.less'
+import style from '@/global.less'
+import dayjs from 'dayjs'
+import { formatDate } from '@/utils/formatUtils'
+
+const { Item: FormItem } = Form
+const { TextArea } = Input
+const dictData = datadictionary
+
+//新增表单
+let getDeptTreeBySelectTree
+let getOrganTreeBySelectTree
+
+const BasicInfoCreateForm = (props => {
+ const [form] = Form.useForm()
+
+ const {
+ modalVisible,
+ handleAdd,
+ handleModalVisible,
+ loading,
+ dispatch,
+ selectDeptTree,
+ selectOrganTree
+ } = props
+
+ // 清空和初始化逻辑可保留
+ useEffect(() => {
+ form.resetFields();
+ }, [modalVisible])
+
+ const okHandle = () => {
+ form.validateFields()
+ .then(fieldsValue => {
+ form.resetFields()
+ handleAdd(fieldsValue)
+ })
+ .catch(() => { })
+ }
+
+ const afterClose = () => {
+ form.resetFields();
+ }
+
+ return (
+
handleModalVisible()}
+ afterClose={afterClose}
+ confirmLoading={loading}
+ footer={[
+ ,
+
+ ]}
+ >
+
+
+ )
+})
+
+export default BasicInfoCreateForm
diff --git a/src/pages/business_basicinformation/form/BasicInfoImportForm.js b/src/pages/business_basicinformation/form/BasicInfoImportForm.js
new file mode 100644
index 0000000..2b2ef56
--- /dev/null
+++ b/src/pages/business_basicinformation/form/BasicInfoImportForm.js
@@ -0,0 +1,148 @@
+import React, { useState } from 'react';
+import { Modal, Upload, message, Progress } from 'antd';
+import { UploadOutlined, ExclamationCircleOutlined } from '@ant-design/icons';
+import styles from '../BasicInformation.less';
+import fileIcon from '@/assets/basic_information/file-icon.png';
+const BasicInfoImportForm = (props) => {
+ const { modalVisible, handleModalVisible, loading } = props;
+ const [fileList, setFileList] = useState([
+ // 示例数据,实际可根据上传进度动态设置
+ // { uid: '1', name: '文件名称', size: 3 * 1024 * 1024, status: 'uploading', percent: 60 },
+ // ...
+ ]);
+
+ const maxFiles = 10;
+ const maxSize = 100 * 1024 * 1024; // 100M
+
+ const beforeUpload = (file) => {
+ if (file.size > maxSize) {
+ message.error('单个文件不能超过100M');
+ return Upload.LIST_IGNORE;
+ }
+ if (fileList.length >= maxFiles) {
+ message.error(`最多只能上传${maxFiles}个文件`);
+ return Upload.LIST_IGNORE;
+ }
+ // 模拟上传进度
+ file.status = 'uploading';
+ file.percent = 60;
+ return true;
+ };
+
+ const handleChange = ({ fileList: newFileList }) => {
+ // 模拟每个文件60%进度
+ const updatedList = newFileList.slice(0, maxFiles).map(file => ({
+ ...file,
+ status: 'uploading',
+ percent: 60,
+ }));
+ setFileList(updatedList);
+ };
+
+ const handleRemove = (file) => {
+ setFileList(fileList.filter(item => item.uid !== file.uid));
+ };
+
+ const handleOk = () => {
+ handleModalVisible(false);
+ setFileList([]);
+ };
+
+ const handleCancel = () => {
+ handleModalVisible(false);
+ setFileList([]);
+ };
+
+ // 文件列表渲染
+ const renderFileList = () => (
+
+ {fileList.map(file => (
+
+
+

+
+
+
{file.name || '文件名称'}
+
+ {file.size ? `${(file.size / (1024 * 1024)).toFixed(0)} MB` : '3 MB'}
+
+
+
+
handleRemove(file)}
+ >
+ ×
+
+
+ ))}
+
+ );
+
+ return (
+
取消,
+
+ ]}
+ >
+
+ {fileList.length > 0 && renderFileList()}
+
+
+
+
+
+
+ 添加文件 {fileList.length}/{maxFiles}
+
+
+
+
+
+ 单个文件不超过 100M
+
+
+
+ );
+};
+
+export default BasicInfoImportForm;
\ No newline at end of file
diff --git a/src/pages/business_basicinformation/form/BasicInfoUpdateForm.js b/src/pages/business_basicinformation/form/BasicInfoUpdateForm.js
new file mode 100644
index 0000000..c9b8c90
--- /dev/null
+++ b/src/pages/business_basicinformation/form/BasicInfoUpdateForm.js
@@ -0,0 +1,149 @@
+import { useEffect } from 'react'
+import { Col, Form, Input, Modal, Row, Select } from 'antd'
+import styles from '../BasicInformation.less'
+
+const BasicInfoUpdateForm = (props => {
+ const [form] = Form.useForm()
+
+ const {
+ updateModalVisible,
+ handleUpdate,
+ handleUpdateModalVisible,
+ loading,
+ values = {}
+ } = props
+
+ useEffect(() => {
+ if (updateModalVisible) {
+ form.setFieldsValue(values)
+ }
+ }, [updateModalVisible, values, form])
+
+ const okHandle = () => {
+ form.validateFields()
+ .then(fieldsValue => {
+ form.resetFields()
+ handleUpdate(fieldsValue)
+ })
+ .catch(() => { })
+ }
+
+ const afterClose = () => {
+ form.resetFields();
+ }
+
+ return (
+
handleUpdateModalVisible()}
+ afterClose={afterClose}
+ confirmLoading={loading}
+ footer={[
+ ,
+
+ ]}
+ >
+
+
+ )
+})
+
+export default BasicInfoUpdateForm
\ No newline at end of file
diff --git a/src/pages/business_basicinformation/form/BasicInfoViewForm.js b/src/pages/business_basicinformation/form/BasicInfoViewForm.js
new file mode 100644
index 0000000..15f6759
--- /dev/null
+++ b/src/pages/business_basicinformation/form/BasicInfoViewForm.js
@@ -0,0 +1,52 @@
+import React from 'react';
+import { Modal, Row, Col } from 'antd';
+import styles from '../BasicInformation.less';
+
+const BasicInfoViewForm = (props) => {
+ const { viewModalVisible, handleViewModalVisible, values = {} } = props;
+
+ return (
+
handleViewModalVisible(false)}
+ >
+
+
+ 项目名称
+ {values.projectName || '-'}
+
+
+ 地理信息
+ {values.location || '-'}
+
+
+ 占地面积
+
+ {values.area ? `${values.area}` : '-'}
+
+
+
+ 职业人数
+ {values.staffCount || '-'}
+
+
+ 组织机构
+ {values.organization || '-'}
+
+
+ 安全等级
+ {values.safetyLevel || '-'}
+
+
+
+ );
+};
+
+export default BasicInfoViewForm;
\ No newline at end of file
diff --git a/src/pages/business_basicinformation/form/PersonnelCreateForm.js b/src/pages/business_basicinformation/form/PersonnelCreateForm.js
new file mode 100644
index 0000000..76b3e56
--- /dev/null
+++ b/src/pages/business_basicinformation/form/PersonnelCreateForm.js
@@ -0,0 +1,152 @@
+import { useState, useEffect } from 'react'
+import { Col, DatePicker, Form, Input, Modal, Row, Select } from 'antd'
+import SelectDeptTree from '@/components/SelectDeptTree'
+import SelectOrganTree from '@/components/SelectOrganTree'
+import datadictionary from '@/utils/dataDictionary'
+import { formatDictOptions, verifyPhone } from '@/utils/globalCommon'
+import { NumberInput } from '@/components/NumberInput'
+import styles from '../BasicInformation.less'
+import style from '@/global.less'
+import dayjs from 'dayjs'
+import { formatDate } from '@/utils/formatUtils'
+
+const { Item: FormItem } = Form
+const { TextArea } = Input
+const dictData = datadictionary
+
+//新增表单
+let getDeptTreeBySelectTree
+let getOrganTreeBySelectTree
+
+const PersonnelCreateForm = (props => {
+ const [form] = Form.useForm()
+
+ const {
+ modalVisible,
+ handleAdd,
+ handleModalVisible,
+ loading,
+ dispatch,
+ selectDeptTree,
+ selectOrganTree
+ } = props
+
+ // 清空和初始化逻辑可保留
+ useEffect(() => {
+ form.resetFields();
+ }, [modalVisible])
+
+ const okHandle = () => {
+ form.validateFields()
+ .then(fieldsValue => {
+ form.resetFields()
+ handleAdd(fieldsValue)
+ })
+ .catch(() => { })
+ }
+
+ const afterClose = () => {
+ form.resetFields();
+ }
+
+ return (
+
handleModalVisible()}
+ afterClose={afterClose}
+ confirmLoading={loading}
+ footer={[
+ ,
+
+ ]}
+ >
+
+
+ )
+})
+
+export default PersonnelCreateForm
diff --git a/src/pages/business_basicinformation/form/StaffSheetRenderAdvancedForm.js b/src/pages/business_basicinformation/form/StaffSheetRenderAdvancedForm.js
new file mode 100644
index 0000000..2625938
--- /dev/null
+++ b/src/pages/business_basicinformation/form/StaffSheetRenderAdvancedForm.js
@@ -0,0 +1,113 @@
+import { useEffect } from 'react'
+import { Button, Col, Form, Input, Row } from 'antd'
+import { UpOutlined, SearchOutlined, RedoOutlined } from '@ant-design/icons'
+import SelectDeptTree from '@/components/SelectDeptTree'
+import SelectOrganTree from '@/components/SelectOrganTree'
+import style from '@/global.less'
+
+const { Item: FormItem } = Form
+let getDeptTreeBySelectTree
+let getOrganTreeBySelectTree
+
+const StaffSheetRenderAdvancedForm = (props) => {
+ const [form] = Form.useForm()
+ const { dispatch, handleSearch, handleFormReset, toggleForm, selectDeptTree, selectOrganTree, params } = props
+
+ useEffect(() => {
+ form.setFieldsValue({
+ user_name: params?.user_name,
+ user_name_cn: params?.user_name_cn,
+ deptname: params?.deptname,
+ orgname: params?.orgname,
+ })
+ }, [params])
+
+ const onFinish = values => {
+ // if (getDeptTreeBySelectTree) {
+ // values.dept_code = getDeptTreeBySelectTree.dept_code
+ // values.deptname = getDeptTreeBySelectTree.title
+ // }
+
+ if (getOrganTreeBySelectTree) {
+ values.org_code = getOrganTreeBySelectTree.org_code
+ values.orgname = getOrganTreeBySelectTree.title
+ }
+
+ handleSearch(values)
+ }
+
+ const myHandleFormReset = () => {
+ form.resetFields()
+ handleFormReset()
+ }
+
+ const selectedDeptTreeValue = (deptRecord) => {
+ getDeptTreeBySelectTree = deptRecord
+ }
+
+ const selectedOrganTreeValue = (orgRecord) => {
+ getOrganTreeBySelectTree = orgRecord
+ }
+
+ const parentDeptTreeMethod = {
+ dispatch: dispatch,
+ selectDeptTree: selectDeptTree,
+ selectedDeptTreeValue: selectedDeptTreeValue
+ }
+
+ const parentOrganTreeMethod = {
+ dispatch: dispatch,
+ selectOrganTree: selectOrganTree,
+ selectedOrganTreeValue: selectedOrganTreeValue
+ }
+
+ return (
+
+ )
+}
+
+export default StaffSheetRenderAdvancedForm
diff --git a/src/pages/business_basicinformation/form/StaffSheetRenderSimpleForm.js b/src/pages/business_basicinformation/form/StaffSheetRenderSimpleForm.js
new file mode 100644
index 0000000..0468e76
--- /dev/null
+++ b/src/pages/business_basicinformation/form/StaffSheetRenderSimpleForm.js
@@ -0,0 +1,81 @@
+import { useEffect } from 'react'
+import {Button, Col, Form, Input, Row, DatePicker, Select} from 'antd'
+import {DownOutlined, RedoOutlined, SearchOutlined} from '@ant-design/icons'
+import style from '@/global.less'
+import dayjs from 'dayjs'
+const { Item: FormItem } = Form
+
+const StaffSheetRenderSimpleForm = (props) => {
+ const [form] = Form.useForm()
+ const { handleSearch, handleFormReset, toggleForm, params } = props
+
+ useEffect(() => {
+ form.setFieldsValue({
+ user_name: params?.user_name,
+ user_name_cn: params?.user_name_cn,
+ })
+ }, [params])
+
+ const onFinish = values => {
+ handleSearch(values)
+ }
+
+ const myHandleFormReset = () => {
+ form.resetFields()
+ handleFormReset()
+ }
+
+ return (
+
+ )
+}
+
+export default StaffSheetRenderSimpleForm
diff --git a/src/pages/business_hiddentrouble/HiddenTrouble.js b/src/pages/business_hiddentrouble/HiddenTrouble.js
new file mode 100644
index 0000000..6ea7690
--- /dev/null
+++ b/src/pages/business_hiddentrouble/HiddenTrouble.js
@@ -0,0 +1,32 @@
+import MyCard from "@/pages/business_hiddentrouble/component/MyCard";
+import {Col, Row, Tabs} from "antd";
+import HiddenDangerInspection from "@/pages/business_hiddentrouble/component/hiddenDangerInspection/hiddenDangerInspection";
+import styles from './HiddenTrouble.less'
+import HiddenDangerRighted from "@/pages/business_hiddentrouble/component/hiddenDangerRighted/hiddenDangerRighted";
+import HiddenDangerCount from "@/pages/business_hiddentrouble/component/hiddenDangerCount/hiddenDangerCount";
+
+const items = [
+ {
+ key: '1',
+ label: '隐患检查',
+ children:
,
+ },
+ {
+ key: '2',
+ label: '隐患整改',
+ children:
+ },
+ {
+ key: '3',
+ label: '隐患统计',
+ children: ,
+ },
+];
+const HiddenTrouble = () => {
+ return (
+ <>
+
+ >
+ )
+}
+export default HiddenTrouble
diff --git a/src/pages/business_hiddentrouble/HiddenTrouble.less b/src/pages/business_hiddentrouble/HiddenTrouble.less
new file mode 100644
index 0000000..56d8636
--- /dev/null
+++ b/src/pages/business_hiddentrouble/HiddenTrouble.less
@@ -0,0 +1,43 @@
+/* 移除下滑线 */
+.custom-tabs .ant-tabs-ink-bar {
+ display: none !important;
+}
+
+/* 未选中状态 */
+.custom-tabs {
+ .ant-tabs-tab {
+ background: #f0f0f0 !important;
+ border: none !important;
+ border-radius: 6px !important;
+ margin-right: 8px !important;
+ padding: 8px 16px !important;
+ transition: all 0.3s ease !important;
+ }
+}
+
+/* 选中状态 - 背景变为蓝色 */
+.custom-tabs {
+ :global(.ant-tabs-tab-active) {
+ background: #2E4CD4 !important;
+ }
+}
+
+/* 选中状态 - 文字变为白色 */
+.custom-tabs :global(.ant-tabs-tab-active .ant-tabs-tab-btn) {
+ color: white !important;
+ font-weight: 500 !important;
+}
+
+/* 移除底部边框 */
+.custom-tabs .ant-tabs-nav::before {
+ border-bottom: none !important;
+}
+
+/* 悬停效果 */
+.custom-tabs .ant-tabs-tab:hover {
+ background: #e6e6e6 !important;
+}
+
+.custom-tabs .ant-tabs-tab-active:hover {
+ background: #40a9ff !important;
+}
diff --git a/src/pages/business_hiddentrouble/component/MyCard.js b/src/pages/business_hiddentrouble/component/MyCard.js
new file mode 100644
index 0000000..568de6f
--- /dev/null
+++ b/src/pages/business_hiddentrouble/component/MyCard.js
@@ -0,0 +1,325 @@
+import Icon from "antd/es/icon";
+import {Col, Pagination, Row, Table} from "antd";
+import {Descriptions} from "antd";
+import * as echarts from 'echarts';
+import {useEffect, useRef} from "react";
+
+const HourglassSvg=()=>{
+ return (
+
+ )
+}
+const HourglassIcon=(props)=>{
+ return(
+
+ )
+}
+
+const MyCard = (props) => {
+ return (
+
+
+
{props.title}
+
{props.num}
+ {props.flag === 1 &&
+ {props.grow === 1 ? <>⬆> : <>⬇>} {props.data}% 较上周
+
}
+ {props.flag===2 &&
+ {props.grow===1 ? <>⬆>:<>⬇>} {props.data}% 较上周
+
}
+ {props.flag===3 &&
+ {props.grow===1 ? <>⬆>:<>⬇>} {props.data}% 较上周
+
}
+
+
+
+
+
+ )
+}
+
+
+// 环形图
+const items = [
+ {
+ key: '1',
+ children: '设备安全',
+ color:'#868BF9',
+ },
+ {
+ key: '2',
+ children: '电气安全',
+ color:'#F29629',
+ },
+ {
+ key: '3',
+ children: '消防安全',
+ color:'#FFD85A',
+ },
+ {
+ key: '4',
+ children: '工艺安全',
+ color:'#5ED6BE',
+ },
+ {
+ key: '5',
+ children: '储罐专业',
+ color:'#00AAFF',
+ },
+ {
+ key: '6',
+ children: '其他',
+ color:'#5FDCF7',
+ },
+];
+export const PieChart=(props)=>{
+ const chartRef=useRef(null)
+ const data=[
+ { value: 5, name: '设备安全' ,itemStyle:{color:'#868BF9'}},
+ { value: 5, name: '电气安全',itemStyle:{color:'#F29629'} },
+ { value: 10, name: '消防安全' ,itemStyle:{color:'#FFD85A'}},
+ { value: 20, name: '工艺安全',itemStyle:{color:'#5ED6BE'} },
+ { value: 30, name: '储罐专业',itemStyle:{color:'#00AAFF'} },
+ { value: 30, name:'其他',itemStyle:{color:'#5FDCF7'}}
+ ]
+ useEffect(() => {
+ const chart=echarts.init(chartRef.current)
+ const option = {
+ legend: {
+ show:false,
+ orient: 'vertical',
+ x: 'left',
+ data: ['设备安全', '电气安全', '消防安全', '工艺安全', '储罐专业','其他']
+ },
+ grid:{
+ top: 20,
+ bottom: 20,
+ left: 20,
+ right: 20,
+ },
+ series: [
+ {
+ type: 'pie',
+ radius: ['50%', '70%'],
+ avoidLabelOverlap: false,
+ label: {
+ show: true,
+ formatter: '{d}%',
+ position: 'outsider',
+ },
+ labelLine: {
+ show: true
+ },
+ emphasis: {
+ label: {
+ show: true,
+ position:'center',
+ fontSize: '15',
+ fontWeight: 'bold',
+ formatter: function(params) {
+ return `${params.name}\n${params.percent}%`;
+ },
+
+ }
+ },
+ data:data,
+ },
+ ]
+ };
+ chart.setOption(option)
+ // 响应式调整
+ const handleResize = () => {
+ chart.resize();
+ };
+
+ window.addEventListener('resize', handleResize);
+
+ // 清理函数
+ return () => {
+ window.removeEventListener('resize', handleResize);
+ chart.dispose();
+ };
+ }, []);
+
+ return(
+
+
+
+ {props.title}>}
+ column={2}
+ >
+ {items.map((item)=>{
+ return(
+
+
+
+ {item.children}
+
+
+ )
+ })}
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
+
+// 柱状图
+
+export const BarChart=()=>{
+ const chartRef=useRef(null)
+ const data=[]
+ useEffect(() => {
+ const chart =echarts.init(chartRef.current)
+ const option = {
+ grid:{
+ top:20,
+ bottom:20,
+ right:30,
+ left:30,
+ },
+ xAxis:{
+ type: 'category',
+ data:['每日','每周','每月','每季度','每半年','每年','季节性','专项'],
+ axisLine:{
+ show:true,
+ lineStyle:{
+ color:'#D5E2FF'
+ }
+ },
+ axisLabel:{
+ show:true,
+ position:'bottom',
+ color:'#333'
+ },
+
+ },
+ yAxis:{
+ type:'value',
+
+ axisLine:{
+ show:true,
+ min:0,
+ lineStyle:{
+ color:'#D5E2FF'
+ }
+
+ },
+ axisLabel: {
+ show:true,
+ color:'#333'
+ },
+ splitLine:{
+ show:true,
+ lineStyle:{
+ color:'#D5E2FF',
+ type:'dashed'
+ }
+ },
+ nameTextStyle:{
+ color:'#000',
+ fontSize:16,
+ fontWeight:'600',
+ }
+ },
+ series:[
+ {
+ name: '数据系列1',
+ type: 'bar', // 柱状图
+ data: [120, 200, 150, 80, 70,123,70,90], // 数据值
+ barWidth: '20%', // 柱子宽度
+ itemStyle: {
+ color: '#007BFF', // 柱子颜色
+ borderRadius: [4, 4, 0, 0] ,// 柱子圆角
+ },
+ label: {
+ show: true,
+ position: 'top', // 数据标签位置
+ color: '#333'
+ },
+ emphasis: { // 高亮样式
+ itemStyle: {
+ color: '#7491db'
+ }
+ }
+ }
+ ]
+
+ }
+ chart.setOption(option)
+ const handleResize = () => {
+ chart.resize();
+ };
+
+ window.addEventListener('resize', handleResize);
+
+ // 清理函数
+ return () => {
+ window.removeEventListener('resize', handleResize);
+ chart.dispose();
+ };
+ })
+ return(
+
+
+ )
+}
+
+export const MyTable=(props)=>{
+ const {dataSource,columns}=props
+ return (
+ <>
+ '共 25 条',
+ pageSizeOptions:[5,10,20,50,100],
+ defaultPageSize:5,
+ style:{
+ marginTop:50
+ }
+ }}
+ style={{width:'100%'}}
+ />
+
+ >
+ )
+}
+
+
+export default MyCard;
diff --git a/src/pages/business_hiddentrouble/component/hiddenDangerCount/hiddenDangerCount.js b/src/pages/business_hiddentrouble/component/hiddenDangerCount/hiddenDangerCount.js
new file mode 100644
index 0000000..cf9e757
--- /dev/null
+++ b/src/pages/business_hiddentrouble/component/hiddenDangerCount/hiddenDangerCount.js
@@ -0,0 +1,100 @@
+import {Col, List, Row} from "antd";
+import MyCard from "@/pages/business_hiddentrouble/component/MyCard";
+
+const headerList=[
+ {
+ title:'总隐患数',
+ num:'1489',
+ data:'12',
+ flag:1,
+ grow:1,
+ backgroundColor:'#E5EEFE',
+ color:'#1269FF',
+ },
+ {
+ title:'已整改隐患',
+ num:'986',
+ data:'12',
+ flag:1,
+ grow:1,
+ backgroundColor:'#D9F8E8',
+ color:'#1DCE74',
+ },
+ {
+ title:'整改率',
+ num:'86%',
+ data:'8',
+ flag:2,
+ grow:0,
+ backgroundColor:'#FFF3E9',
+ color:'orange',
+ },
+ {
+ title:'按期整改率',
+ num:'89%',
+ data:'2',
+ flag:3,
+ grow:0,
+ backgroundColor:'#FFE6E8',
+ color:'#FF3E48',
+ }
+]
+const data=[
+ {name:'Q3设备故障类隐患',tip:'占比最高',num:'45%'},
+ {name:'Q2安全防护隐患',tip:'显著下降',num:'32%'},
+ {name:'Q4电器隐患',tip:'持续改善',num:'28%'},
+ {name:'全年平均整改周期',tip:'同比缩短',num:'7天'},
+]
+const TrendAnalysis=()=>{
+ return(
+
+
+ 1
+
+ {data.map((item,index)=>{
+ return(
+
+
+
{item.name}
+
{item.tip}
+
+
+ {item.num}
+
+
+ )
+ })}
+
+
+
+ )
+}
+
+const HiddenDangerCount=()=>{
+ return (
+ <>
+
+
+ {headerList.map((item, index) => {
+ return
+ })}
+
+
+
+
+ >
+ )
+}
+export default HiddenDangerCount
diff --git a/src/pages/business_hiddentrouble/component/hiddenDangerInspection/hiddenDangerInspection.js b/src/pages/business_hiddentrouble/component/hiddenDangerInspection/hiddenDangerInspection.js
new file mode 100644
index 0000000..a82ed49
--- /dev/null
+++ b/src/pages/business_hiddentrouble/component/hiddenDangerInspection/hiddenDangerInspection.js
@@ -0,0 +1,198 @@
+import {Card, Col, Row, Input, Space, Select, Upload, Button, message, Tag} from "antd";
+import './hiddenDangerInspection.less'
+import MyCard, {BarChart, MyTable, PieChart} from "@/pages/business_hiddentrouble/component/MyCard";
+import {ExportOutlined, UploadOutlined} from "@ant-design/icons";
+import {render} from "react-dom";
+const { Search } = Input;
+
+const dataList=[
+ {
+ title:'隐患总数',
+ num:'169',
+ data:'12',
+ flag:1,
+ grow:1,
+ backgroundColor:'#E5EEFE',
+ color:'#1269FF',
+ },
+ {
+ title:'已整改隐患',
+ num:'169',
+ data:'12',
+ flag:1,
+ grow:1,
+ backgroundColor:'#D9F8E8',
+ color:'#1DCE74',
+ },
+ {
+ title:'整改中隐患',
+ num:'169',
+ data:'8',
+ flag:2,
+ grow:0,
+ backgroundColor:'#FFF3E9',
+ color:'orange',
+ },
+ {
+ title:'超期未整改',
+ num:'169',
+ data:'2',
+ flag:3,
+ grow:0,
+ backgroundColor:'#FFE6E8',
+ color:'#FF3E48',
+ }
+]
+export const Select1=()=>{
+ return(
+
+ )
+}
+export const Select2=()=>{
+ return(
+
+ )
+}
+const props = {
+ name: 'file',
+ action: 'https://660d2bd96ddfa2943b33731c.mockapi.io/api/upload',
+ headers: {
+ authorization: 'authorization-text',
+ },
+ onChange(info) {
+ if (info.file.status !== 'uploading') {
+ console.log(info.file, info.fileList);
+ }
+ if (info.file.status === 'done') {
+ message.success(`${info.file.name} file uploaded successfully`);
+ } else if (info.file.status === 'error') {
+ message.error(`${info.file.name} file upload failed.`);
+ }
+ },
+};
+export const Import=()=>{
+ return(
+
+ } style={{color:'#2E4CD4'}}>导入
+
+ )
+
+
+}
+export const Export=()=>{
+ return(
+
+ )
+}
+export const levelList= {
+ '一般隐患':['#DAF3FF','#00AAFA'],
+ '中等隐患':['#FFF3E9','#FF8800'],
+ '极高隐患':['#FFE0E2','#FF3E48'],
+}
+
+const columns=[
+ {align:'center',title:'检查项',dataIndex:'inspectionItems',key:'inspectionItems'},
+ {align:'center',title:'隐患名称',dataIndex:'name',key:'name'},
+ {align:'center',title:'隐患等级',dataIndex:'level',key:'level',render:(level)=>{
+
+ return {level}
+ }},
+ {align:'center',title:'登记时间',dataIndex:'createTime',key:'createTime'},
+ {align:'center',title:'隐患来源',dataIndex:'source',key:'source'},
+ {align:'center',title:'隐患描述',dataIndex:'description',key:'description',ellipsis:{showTitle:true}},
+ {align:'center',title:'治理类型',dataIndex:'type',key:'type'},
+ {align:'center',title:'治理期限',dataIndex:'deadline',key:'deadline'},
+ {align:'center',title:'整改负责人',dataIndex:'head',key:'head'},
+ {align:'center',title:'隐患状态',dataIndex:'state',key:'state',render:(state)=>{return {state}}},
+ {align:'center',title:'验收时间',dataIndex:'acceptanceTime',key:'acceptanceTime'},
+ {align:'center',title:'操作',dataIndex:'operation',key:'operation',render:(_,record)=>{
+ return
+ }},
+]
+
+const dataSource=[
+ {key:1,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述111111111111111111111111111111111111',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:2,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'中等隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:3,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'极高隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:4,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:5,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:6,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:7,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:8,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:9,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:10,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:11,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:12,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:13,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:14,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:15,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:16,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:17,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:18,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:19,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:20,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+
+]
+
+
+const HiddenDangerInspection=()=>{
+ return(
+ < >
+
+
+ {dataList.map((item) => {
+ return
+ })}
+
+
+
+
+
+
+ >
+ )
+}
+export default HiddenDangerInspection
diff --git a/src/pages/business_hiddentrouble/component/hiddenDangerInspection/hiddenDangerInspection.less b/src/pages/business_hiddentrouble/component/hiddenDangerInspection/hiddenDangerInspection.less
new file mode 100644
index 0000000..b28b04f
--- /dev/null
+++ b/src/pages/business_hiddentrouble/component/hiddenDangerInspection/hiddenDangerInspection.less
@@ -0,0 +1,3 @@
+
+
+
diff --git a/src/pages/business_hiddentrouble/component/hiddenDangerRighted/hiddenDangerRighted.js b/src/pages/business_hiddentrouble/component/hiddenDangerRighted/hiddenDangerRighted.js
new file mode 100644
index 0000000..aa61d7a
--- /dev/null
+++ b/src/pages/business_hiddentrouble/component/hiddenDangerRighted/hiddenDangerRighted.js
@@ -0,0 +1,318 @@
+import {Button, Card, Col, Input, Row, Space, Steps, Tag} from "antd";
+import MyCard, {MyTable, PieChart} from "@/pages/business_hiddentrouble/component/MyCard";
+import {useEffect, useRef} from "react";
+import img1 from '../../../../assets/img/stepOne.png'
+import img2 from '../../../../assets/img/stepTwo.png'
+import img3 from '../../../../assets/img/stepThree.png'
+import img4 from '../../../../assets/img/stepFour.png'
+
+import echarts from "echarts/lib/echarts";
+import {
+ Export, Import,
+ levelList,
+ Select1, Select2
+} from "@/pages/business_hiddentrouble/component/hiddenDangerInspection/hiddenDangerInspection";
+import './hiddenDangerRighted.less'
+const { Search } = Input;
+const dataList=[
+ {
+ title:'待整改隐患',
+ num:'169',
+ data:'12',
+ flag:1,
+ grow:1,
+ backgroundColor:'#E5EEFE',
+ color:'#1269FF',
+ },
+ {
+ title:'整改中隐患',
+ num:'169',
+ data:'12',
+ flag:1,
+ grow:1,
+ backgroundColor:'#D9F8E8',
+ color:'#1DCE74',
+ },
+ {
+ title:'已完成整改',
+ num:'169',
+ data:'8',
+ flag:2,
+ grow:0,
+ backgroundColor:'#FFF3E9',
+ color:'orange',
+ },
+ {
+ title:'整改完成率',
+ num:'89%',
+ data:'2',
+ flag:3,
+ grow:0,
+ backgroundColor:'#FFE6E8',
+ color:'#FF3E48',
+ }
+]
+
+
+const columns=[
+ {align:'center',title:'检查项',dataIndex:'inspectionItems',key:'inspectionItems'},
+ {align:'center',title:'隐患名称',dataIndex:'name',key:'name'},
+ {align:'center',title:'隐患等级',dataIndex:'level',key:'level',render:(level)=>{
+
+ return {level}
+ }},
+ {align:'center',title:'登记时间',dataIndex:'createTime',key:'createTime'},
+ {align:'center',title:'隐患来源',dataIndex:'source',key:'source'},
+ {align:'center',title:'隐患描述',dataIndex:'description',key:'description',ellipsis:{showTitle:true}},
+ {align:'center',title:'治理类型',dataIndex:'type',key:'type'},
+ {align:'center',title:'治理期限',dataIndex:'deadline',key:'deadline'},
+ {align:'center',title:'整改负责人',dataIndex:'head',key:'head'},
+ {align:'center',title:'隐患状态',dataIndex:'state',key:'state',render:(state)=>{return {state}}},
+ {align:'center',title:'验收时间',dataIndex:'acceptanceTime',key:'acceptanceTime'},
+ {align:'center',title:'操作',dataIndex:'operation',key:'operation',render:(_,record)=>{
+ return
+
+
+
+ }},
+]
+
+const dataSource=[
+ {key:1,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述111111111111111111111111111111111111',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:2,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'中等隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:3,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'极高隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:4,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:5,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:6,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:7,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:8,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:9,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:10,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:11,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:12,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:13,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:14,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:15,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:16,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:17,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:18,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:19,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:20,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+ {key:21,inspectionItems:'设备运行温度',name:'D10精馏车间',level:'一般隐患',createTime:'2025-03-01',source:'日常排查',description:'隐患描述',type:'限期整改',deadline:'2025-09-03',head:'张小龙',state:'已验收',acceptanceTime:'2025-09-03'},
+
+]
+
+
+
+const Qiu=(props)=>{
+ return(
+
+ {props.num}
+
+ )
+}
+const items=[
+ {'0': img1},
+ {'1': img2},
+ {'2': img3},
+ {'3': img4},
+
+]
+
+const TrendChart=()=>{
+ const TrendChart=useRef(null)
+ useEffect(() => {
+ const chart=echarts.init(TrendChart.current);
+ const option={
+ grid:{
+ bottom:25,
+ top:20,
+ },
+ legend:{
+ show:true,
+ left:'50%',
+ top:0,
+ icon: 'path://M0,0 L20,0',
+ itemStyle:{
+ color:'#00A0E9',
+ }
+ },
+ xAxis:{
+ type:'category',
+ data:['3月','4月','5月','6月','7月','8月'],
+ axisLabel:{
+ color:'#000',
+ },
+ axisLine:{
+ lineStyle:{
+ color:'#00A0E9',
+ type:'dashed',
+ }
+ },
+ boundaryGap: false, // 关键
+ axisTick: {
+ show: true,
+ alignWithLabel: true, // 关键
+ inside: true, // 刻度朝外
+ length: 100, // 足够长的长度(根据图表高度调整)
+ lineStyle: {
+ color: '#cccccc',
+ width: 1,
+ type: 'dashed',
+ }
+ },
+ },
+ yAxis:{
+ type:'value',
+ axisLabel:{
+ color:'#000',
+ type:'dashed',
+ },
+ axisLine:{
+ show:true,
+ lineStyle:{
+ color:'#00A0E9',
+ type:'dashed',
+ }
+ },
+ splitLine:{
+ lineStyle:{
+ color:'#00A0E9',
+ type:'dashed'
+ }
+ }
+ },
+ series:[
+ {
+ name:'整改完成率',
+ data:[120,200,150,80,70,110],
+ type:'line',
+ smooth:true,
+ lineStyle:{
+ color:'#00A0E9'
+ },
+ areaStyle:{
+ color:{
+ type:'linear',
+ x:0,
+ y:0,
+ x2:0,
+ y2:1,
+ colorStops:[
+ {offset:0,color:'#00A0E9'},
+ {offset:1,color:'#99D4F5 '}
+ ]
+ }
+ },
+ symbol:'none'
+ }
+ ]
+ }
+ chart.setOption(option)
+ // 响应式调整
+ const handleResize = () => {
+ chart.resize();
+ };
+ handleResize()
+ window.addEventListener('resize', handleResize);
+
+ // 清理函数
+ return () => {
+ window.removeEventListener('resize', handleResize);
+ chart.dispose();
+ };
+ }, []);
+ return(
+
+ )
+}
+const Workflow=()=>{
+ return(
+
+
+ 隐患整改流程
+
+
+ {items.map((item,index)=>{
+ return (
+
+ )
+ })}
+
+
+ )
+}
+
+const HiddenDangerRighted = () => {
+ return (
+ <>
+
+
+ {dataList.map((item, index) => {
+ return
+ })}
+
+
+
+
+ >
+ )
+}
+export default HiddenDangerRighted;
diff --git a/src/pages/business_hiddentrouble/component/hiddenDangerRighted/hiddenDangerRighted.less b/src/pages/business_hiddentrouble/component/hiddenDangerRighted/hiddenDangerRighted.less
new file mode 100644
index 0000000..8789c1b
--- /dev/null
+++ b/src/pages/business_hiddentrouble/component/hiddenDangerRighted/hiddenDangerRighted.less
@@ -0,0 +1,13 @@
+.qiu{
+ width: 27px;
+ height: 27px;
+ border-radius: 50%;
+ background-color:blue;
+ color: #fff;
+ text-align: center;
+ line-height: 27px;
+}
+.box{
+ display: flex;
+ justify-content: center;
+}
diff --git a/src/pages/business_system/SystemContentList.js b/src/pages/business_system/SystemContentList.js
new file mode 100644
index 0000000..d7d40d3
--- /dev/null
+++ b/src/pages/business_system/SystemContentList.js
@@ -0,0 +1,15 @@
+import React from 'react';
+import { Outlet } from '@umijs/max';
+import './SystemContentList.less';
+
+const SystemContentList = () => {
+ return (
+
+ );
+};
+
+export default SystemContentList;
\ No newline at end of file
diff --git a/src/pages/business_system/SystemContentList.less b/src/pages/business_system/SystemContentList.less
new file mode 100644
index 0000000..cf4557c
--- /dev/null
+++ b/src/pages/business_system/SystemContentList.less
@@ -0,0 +1,10 @@
+.systemContentContainer {
+ width: 100%;
+ height: 100%;
+}
+
+.systemContentMain {
+ width: 100%;
+ height: 100%;
+ padding: 12px;
+}
\ No newline at end of file
diff --git a/src/pages/business_system/systemMenu/SystemMenuList.js b/src/pages/business_system/systemMenu/SystemMenuList.js
new file mode 100644
index 0000000..ee8176c
--- /dev/null
+++ b/src/pages/business_system/systemMenu/SystemMenuList.js
@@ -0,0 +1,408 @@
+import React from 'react';
+import {
+ DeleteOutlined,
+ EditOutlined,
+ PlusOutlined,
+ SearchOutlined,
+ RedoOutlined,
+ DownOutlined,
+ ExclamationCircleFilled,
+ UpOutlined,
+ InfoCircleFilled,
+ QuestionCircleFilled,
+ DownloadOutlined
+} from '@ant-design/icons';
+import {connect, history} from '@umijs/max';
+import {Button, Card, Divider, Dropdown, message, Modal, Popconfirm, Space, Switch, Tag, Row, Col, Tree} from 'antd';
+import StandardTable from '@/components/StandardTable';
+
+import { MyIcon } from "@/components/Icon"
+import style from "@/global.less";
+import styles from './SystemMenuList.less';
+import datadictionary from "@/utils/dataDictionary";
+import {formatDate} from "@/utils/formatUtils";
+import { formatDictText, checkButtonAuthority } from "@/utils/globalCommon";
+
+const { confirm } = Modal;
+
+// 菜单类型
+const menu_type = datadictionary.menu_type || [];
+const menu_status = datadictionary.menu_status || [];
+const menu_level = datadictionary.menu_level || [];
+
+const mockData = {
+ list: [
+ {
+ id: '1',
+ name: '效率管理',
+ code: 'hrefficiency',
+ type: '1',
+ level: '1',
+ status: '1',
+ path: '/topnavbar00/hrefficiency',
+ component: '',
+ icon: 'setting',
+ createTime: '2023-01-01 10:00:00',
+ createUser: 'admin',
+ children: [
+ {
+ id: '2',
+ name: '工时仪表盘',
+ code: 'timesheet',
+ type: '2',
+ level: '2',
+ status: '1',
+ path: '/topnavbar00/hrefficiency/timesheet',
+ component: './hrefficiency_timesheet/TimeSheetList',
+ icon: 'dashboard',
+ createTime: '2023-01-01 10:05:00',
+ createUser: 'admin'
+ },
+ {
+ id: '3',
+ name: '员工仪表盘',
+ code: 'staffsheet',
+ type: '2',
+ level: '2',
+ status: '1',
+ path: '/topnavbar00/hrefficiency/staffsheet',
+ component: './hrefficiency_staffsheet/StaffSheetList',
+ icon: 'user',
+ createTime: '2023-01-01 10:10:00',
+ createUser: 'admin'
+ }
+ ]
+ },
+ {
+ id: '4',
+ name: '系统管理',
+ code: 'system',
+ type: '1',
+ level: '1',
+ status: '1',
+ path: '/topnavbar00/hrefficiency/system',
+ component: './nav_system_content/SystemContentList',
+ icon: 'control',
+ createTime: '2023-01-02 14:30:00',
+ createUser: 'admin'
+ }
+ ],
+ pagination: {
+ total: 2,
+ pageSize: 10,
+ current: 1
+ }
+};
+
+@connect(({ systemMenu }) => ({
+ systemMenu
+}))
+export default class SystemMenuList extends React.Component {
+ state = {
+ selectedRows: [],
+ advancedFormVisible: false,
+ filterData: {},
+ pagination: {
+ pageSize: 10,
+ current: 1
+ },
+ tableData: mockData.list,
+ treeData: [],
+ expandedKeys: []
+ };
+
+ componentDidMount() {
+ this.getMenuList();
+ this.buildTreeData();
+ }
+
+ // 获取菜单列表
+ getMenuList = () => {
+ const { dispatch } = this.props;
+ const { pagination, filterData } = this.state;
+
+ try {
+ dispatch({
+ type: 'systemMenu/fetchList',
+ payload: {
+ pageNum: pagination.current,
+ pageSize: pagination.pageSize,
+ ...filterData
+ },
+ callback: (res) => {
+ this.setState({
+ tableData: res?.list || mockData.list,
+ pagination: {
+ ...pagination,
+ total: res?.total || mockData.pagination.total
+ }
+ }, () => {
+ this.buildTreeData();
+ });
+ }
+ });
+ } catch (error) {
+ console.error('获取菜单列表失败:', error);
+ this.setState({
+ tableData: mockData.list,
+ pagination: mockData.pagination
+ }, () => {
+ this.buildTreeData();
+ });
+ }
+ };
+
+ // 构建树数据
+ buildTreeData = () => {
+ const { tableData } = this.state;
+ const treeData = this.transformToTree(tableData);
+ this.setState({ treeData });
+ };
+
+ // 转换为树结构
+ transformToTree = (data) => {
+ return data.map(item => {
+ const node = {
+ title: item.name,
+ key: item.id,
+ dataRef: item
+ };
+ if (item.children && item.children.length > 0) {
+ node.children = this.transformToTree(item.children);
+ }
+ return node;
+ });
+ };
+
+ // 表格选择变化
+ handleSelectChange = (selectedRowKeys, selectedRows) => {
+ this.setState({ selectedRows });
+ };
+
+ // 分页变化
+ handleTableChange = (pagination) => {
+ this.setState({
+ pagination: {
+ ...this.state.pagination,
+ current: pagination.current
+ }
+ }, () => {
+ this.getMenuList();
+ });
+ };
+
+ // 新增菜单
+ handleAdd = () => {
+ // 新增逻辑
+ message.success('新增菜单功能');
+ };
+
+ // 编辑菜单
+ handleEdit = (record) => {
+ // 编辑逻辑
+ message.success('编辑菜单功能');
+ };
+
+ // 删除菜单
+ handleDelete = (record) => {
+ confirm({
+ title: '确定要删除这个菜单吗?',
+ icon: ,
+ onOk: () => {
+ // 删除逻辑
+ message.success('删除菜单成功');
+ }
+ });
+ };
+
+ // 批量删除
+ handleBatchDelete = () => {
+ const { selectedRows } = this.state;
+ if (selectedRows.length === 0) {
+ message.warning('请选择要删除的菜单');
+ return;
+ }
+ confirm({
+ title: `确定要删除选中的${selectedRows.length}个菜单吗?`,
+ icon: ,
+ onOk: () => {
+ // 批量删除逻辑
+ message.success('批量删除菜单成功');
+ }
+ });
+ };
+
+ // 启用/禁用菜单
+ handleStatusChange = (record) => {
+ const newStatus = record.status === '1' ? '0' : '1';
+ confirm({
+ title: `确定要${newStatus === '1' ? '启用' : '禁用'}这个菜单吗?`,
+ icon: ,
+ onOk: () => {
+ // 状态变更逻辑
+ message.success(`${newStatus === '1' ? '启用' : '禁用'}菜单成功`);
+ }
+ });
+ };
+
+ // 展开/折叠树节点
+ handleExpand = (expandedKeys) => {
+ this.setState({ expandedKeys });
+ };
+
+ // 点击树节点
+ handleTreeSelect = (selectedKeys, info) => {
+ // 树节点选择逻辑
+ console.log('Selected', selectedKeys, info);
+ };
+
+ render() {
+ const { selectedRows, tableData, pagination, treeData, expandedKeys } = this.state;
+
+ const columns = [
+ {
+ title: '菜单名称',
+ dataIndex: 'name',
+ key: 'name',
+ ellipsis: true
+ },
+ {
+ title: '菜单编码',
+ dataIndex: 'code',
+ key: 'code',
+ ellipsis: true
+ },
+ {
+ title: '菜单类型',
+ dataIndex: 'type',
+ key: 'type',
+ render: text => formatDictText(menu_type, text)
+ },
+ {
+ title: '菜单级别',
+ dataIndex: 'level',
+ key: 'level',
+ render: text => formatDictText(menu_level, text)
+ },
+ {
+ title: '路径',
+ dataIndex: 'path',
+ key: 'path',
+ ellipsis: true
+ },
+ {
+ title: '状态',
+ dataIndex: 'status',
+ key: 'status',
+ render: text => (
+
+ {text === '1' ? '启用' : '禁用'}
+
+ )
+ },
+ {
+ title: '创建时间',
+ dataIndex: 'createTime',
+ key: 'createTime',
+ ellipsis: true
+ },
+ {
+ title: '创建人',
+ dataIndex: 'createUser',
+ key: 'createUser',
+ ellipsis: true
+ },
+ {
+ title: '操作',
+ key: 'action',
+ fixed: 'right',
+ width: 160,
+ render: (_, record) => (
+
+ }
+ onClick={() => this.handleEdit(record)}
+ >
+ 编辑
+
+ }
+ onClick={() => this.handleDelete(record)}
+ >
+ 删除
+
+ this.handleStatusChange(record)}
+ />
+
+ )
+ }
+ ];
+
+ return (
+
+
+
+
+
菜单配置
+
+
+ }
+ onClick={this.handleAdd}
+ >
+ 新增菜单
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/pages/business_system/systemMenu/SystemMenuList.less b/src/pages/business_system/systemMenu/SystemMenuList.less
new file mode 100644
index 0000000..39b5dcb
--- /dev/null
+++ b/src/pages/business_system/systemMenu/SystemMenuList.less
@@ -0,0 +1,112 @@
+.header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 16px;
+}
+
+.headerLeft {
+ display: flex;
+ align-items: center;
+}
+
+.headerRight {
+ display: flex;
+ align-items: center;
+}
+
+.title {
+ margin: 0;
+ font-size: 18px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.filterSection {
+ margin-bottom: 16px;
+}
+
+.filterRow {
+ display: flex;
+ align-items: center;
+ margin-bottom: 12px;
+}
+
+.filterItem {
+ margin-right: 16px;
+}
+
+.actionButtons {
+ display: flex;
+ align-items: center;
+}
+
+.batchAction {
+ margin-right: 12px;
+}
+
+.formContainer {
+ padding: 24px;
+ background-color: #f5f5f5;
+}
+
+.formHeader {
+ margin-bottom: 16px;
+ padding-bottom: 8px;
+ border-bottom: 1px solid #e8e8e8;
+}
+
+.formTitle {
+ margin: 0;
+ font-size: 16px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.formContent {
+ background-color: #fff;
+ padding: 24px;
+ border-radius: 2px;
+}
+
+.formFooter {
+ display: flex;
+ justify-content: flex-end;
+ margin-top: 24px;
+}
+
+.formButton {
+ margin-left: 12px;
+}
+
+.menuContent {
+ width: 100%;
+}
+
+.menuTreeSection {
+ margin-bottom: 20px;
+}
+
+.sectionTitle {
+ margin: 0 0 12px 0;
+ font-size: 16px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.menuTree {
+ border: 1px solid #e8e8e8;
+ min-height: 200px;
+}
+
+.tree {
+ background-color: transparent;
+}
+
+.tree .ant-tree-node-selected {
+ background-color: #e6f7ff;
+}
+
+.tree .ant-tree-node-selected:hover {
+ background-color: #bae7ff;
+}
\ No newline at end of file
diff --git a/src/pages/business_system/systemOrganization/SystemOrganizationList.js b/src/pages/business_system/systemOrganization/SystemOrganizationList.js
new file mode 100644
index 0000000..e0c919c
--- /dev/null
+++ b/src/pages/business_system/systemOrganization/SystemOrganizationList.js
@@ -0,0 +1,314 @@
+import React from 'react';
+import {
+ DeleteOutlined,
+ EditOutlined,
+ PlusOutlined,
+ SearchOutlined,
+ RedoOutlined,
+ DownOutlined,
+ ExclamationCircleFilled,
+ UpOutlined,
+ InfoCircleFilled,
+ QuestionCircleFilled,
+ DownloadOutlined
+} from '@ant-design/icons';
+import {connect, history} from '@umijs/max';
+import {Button, Card, Divider, Dropdown, message, Modal, Popconfirm, Space, Switch, Tag, Row, Col} from 'antd';
+import StandardTable from '@/components/StandardTable';
+
+import { MyIcon } from "@/components/Icon"
+import style from "@/global.less";
+import styles from './SystemOrganizationList.less';
+import datadictionary from "@/utils/dataDictionary";
+import {formatDate} from "@/utils/formatUtils";
+import { formatDictText, checkButtonAuthority } from "@/utils/globalCommon";
+
+const { confirm } = Modal;
+
+// 组织类型
+const organization_type = datadictionary.organization_type || [];
+const organization_status = datadictionary.organization_status || [];
+
+const mockData = {
+ list: [
+ {
+ id: '1',
+ name: '总部',
+ code: 'HQ',
+ type: '1',
+ parentId: '0',
+ status: '1',
+ createTime: '2023-01-01 10:00:00',
+ createUser: 'admin'
+ },
+ {
+ id: '2',
+ name: '研发部',
+ code: 'R&D',
+ type: '2',
+ parentId: '1',
+ status: '1',
+ createTime: '2023-01-02 14:30:00',
+ createUser: 'admin'
+ },
+ {
+ id: '3',
+ name: '市场部',
+ code: 'MKT',
+ type: '2',
+ parentId: '1',
+ status: '1',
+ createTime: '2023-01-03 09:15:00',
+ createUser: 'admin'
+ }
+ ],
+ pagination: {
+ total: 3,
+ pageSize: 10,
+ current: 1
+ }
+};
+
+@connect(({ systemOrganization }) => ({
+ systemOrganization
+}))
+export default class SystemOrganizationList extends React.Component {
+ state = {
+ selectedRows: [],
+ advancedFormVisible: false,
+ filterData: {},
+ pagination: {
+ pageSize: 10,
+ current: 1
+ },
+ tableData: mockData.list
+ };
+
+ componentDidMount() {
+ this.getOrganizationList();
+ }
+
+ // 获取组织列表
+ getOrganizationList = () => {
+ const { dispatch } = this.props;
+ const { pagination, filterData } = this.state;
+
+ try {
+ dispatch({
+ type: 'systemOrganization/fetchList',
+ payload: {
+ pageNum: pagination.current,
+ pageSize: pagination.pageSize,
+ ...filterData
+ },
+ callback: (res) => {
+ this.setState({
+ tableData: res?.list || mockData.list,
+ pagination: {
+ ...pagination,
+ total: res?.total || mockData.pagination.total
+ }
+ });
+ }
+ });
+ } catch (error) {
+ console.error('获取组织列表失败:', error);
+ this.setState({
+ tableData: mockData.list,
+ pagination: mockData.pagination
+ });
+ }
+ };
+
+ // 表格选择变化
+ handleSelectChange = (selectedRowKeys, selectedRows) => {
+ this.setState({ selectedRows });
+ };
+
+ // 分页变化
+ handleTableChange = (pagination) => {
+ this.setState({
+ pagination: {
+ ...this.state.pagination,
+ current: pagination.current
+ }
+ }, () => {
+ this.getOrganizationList();
+ });
+ };
+
+ // 新增组织
+ handleAdd = () => {
+ // 新增逻辑
+ message.success('新增组织功能');
+ };
+
+ // 编辑组织
+ handleEdit = (record) => {
+ // 编辑逻辑
+ message.success('编辑组织功能');
+ };
+
+ // 删除组织
+ handleDelete = (record) => {
+ confirm({
+ title: '确定要删除这个组织吗?',
+ icon: ,
+ onOk: () => {
+ // 删除逻辑
+ message.success('删除组织成功');
+ }
+ });
+ };
+
+ // 批量删除
+ handleBatchDelete = () => {
+ const { selectedRows } = this.state;
+ if (selectedRows.length === 0) {
+ message.warning('请选择要删除的组织');
+ return;
+ }
+ confirm({
+ title: `确定要删除选中的${selectedRows.length}个组织吗?`,
+ icon: ,
+ onOk: () => {
+ // 批量删除逻辑
+ message.success('批量删除组织成功');
+ }
+ });
+ };
+
+ // 启用/禁用组织
+ handleStatusChange = (record) => {
+ const newStatus = record.status === '1' ? '0' : '1';
+ confirm({
+ title: `确定要${newStatus === '1' ? '启用' : '禁用'}这个组织吗?`,
+ icon: ,
+ onOk: () => {
+ // 状态变更逻辑
+ message.success(`${newStatus === '1' ? '启用' : '禁用'}组织成功`);
+ }
+ });
+ };
+
+ render() {
+ const { selectedRows, tableData, pagination } = this.state;
+
+ const columns = [
+ {
+ title: '组织名称',
+ dataIndex: 'name',
+ key: 'name',
+ ellipsis: true
+ },
+ {
+ title: '组织编码',
+ dataIndex: 'code',
+ key: 'code',
+ ellipsis: true
+ },
+ {
+ title: '组织类型',
+ dataIndex: 'type',
+ key: 'type',
+ render: text => formatDictText(organization_type, text)
+ },
+ {
+ title: '状态',
+ dataIndex: 'status',
+ key: 'status',
+ render: text => (
+
+ {text === '1' ? '启用' : '禁用'}
+
+ )
+ },
+ {
+ title: '创建时间',
+ dataIndex: 'createTime',
+ key: 'createTime',
+ ellipsis: true
+ },
+ {
+ title: '创建人',
+ dataIndex: 'createUser',
+ key: 'createUser',
+ ellipsis: true
+ },
+ {
+ title: '操作',
+ key: 'action',
+ fixed: 'right',
+ width: 160,
+ render: (_, record) => (
+
+ }
+ onClick={() => this.handleEdit(record)}
+ >
+ 编辑
+
+ }
+ onClick={() => this.handleDelete(record)}
+ >
+ 删除
+
+ this.handleStatusChange(record)}
+ />
+
+ )
+ }
+ ];
+
+ return (
+
+
+
+
+
组织管理
+
+
+ }
+ onClick={this.handleAdd}
+ >
+ 新增组织
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/pages/business_system/systemOrganization/SystemOrganizationList.less b/src/pages/business_system/systemOrganization/SystemOrganizationList.less
new file mode 100644
index 0000000..9b7b87b
--- /dev/null
+++ b/src/pages/business_system/systemOrganization/SystemOrganizationList.less
@@ -0,0 +1,80 @@
+.header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 16px;
+}
+
+.headerLeft {
+ display: flex;
+ align-items: center;
+}
+
+.headerRight {
+ display: flex;
+ align-items: center;
+}
+
+.title {
+ margin: 0;
+ font-size: 18px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.filterSection {
+ margin-bottom: 16px;
+}
+
+.filterRow {
+ display: flex;
+ align-items: center;
+ margin-bottom: 12px;
+}
+
+.filterItem {
+ margin-right: 16px;
+}
+
+.actionButtons {
+ display: flex;
+ align-items: center;
+}
+
+.batchAction {
+ margin-right: 12px;
+}
+
+.formContainer {
+ padding: 24px;
+ background-color: #f5f5f5;
+}
+
+.formHeader {
+ margin-bottom: 16px;
+ padding-bottom: 8px;
+ border-bottom: 1px solid #e8e8e8;
+}
+
+.formTitle {
+ margin: 0;
+ font-size: 16px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.formContent {
+ background-color: #fff;
+ padding: 24px;
+ border-radius: 2px;
+}
+
+.formFooter {
+ display: flex;
+ justify-content: flex-end;
+ margin-top: 24px;
+}
+
+.formButton {
+ margin-left: 12px;
+}
\ No newline at end of file
diff --git a/src/pages/business_system/systemRole/SystemRoleList.js b/src/pages/business_system/systemRole/SystemRoleList.js
new file mode 100644
index 0000000..7d805e0
--- /dev/null
+++ b/src/pages/business_system/systemRole/SystemRoleList.js
@@ -0,0 +1,333 @@
+import React from 'react';
+import {
+ DeleteOutlined,
+ EditOutlined,
+ PlusOutlined,
+ SearchOutlined,
+ RedoOutlined,
+ DownOutlined,
+ ExclamationCircleFilled,
+ UpOutlined,
+ InfoCircleFilled,
+ QuestionCircleFilled,
+ DownloadOutlined
+} from '@ant-design/icons';
+import {connect, history} from '@umijs/max';
+import {Button, Card, Divider, Dropdown, message, Modal, Popconfirm, Space, Switch, Tag, Row, Col} from 'antd';
+import StandardTable from '@/components/StandardTable';
+
+import { MyIcon } from "@/components/Icon"
+import style from "@/global.less";
+import styles from './SystemRoleList.less';
+import datadictionary from "@/utils/dataDictionary";
+import {formatDate} from "@/utils/formatUtils";
+import { formatDictText, checkButtonAuthority } from "@/utils/globalCommon";
+
+const { confirm } = Modal;
+
+// 角色类型
+const role_type = datadictionary.role_type || [];
+const role_status = datadictionary.role_status || [];
+
+const mockData = {
+ list: [
+ {
+ id: '1',
+ name: '超级管理员',
+ code: 'SUPER_ADMIN',
+ type: '1',
+ status: '1',
+ createTime: '2023-01-01 10:00:00',
+ createUser: 'admin',
+ remark: '系统最高权限角色'
+ },
+ {
+ id: '2',
+ name: '部门管理员',
+ code: 'DEPT_ADMIN',
+ type: '2',
+ status: '1',
+ createTime: '2023-01-02 14:30:00',
+ createUser: 'admin',
+ remark: '部门级管理权限'
+ },
+ {
+ id: '3',
+ name: '普通用户',
+ code: 'NORMAL_USER',
+ type: '3',
+ status: '1',
+ createTime: '2023-01-03 09:15:00',
+ createUser: 'admin',
+ remark: '基础功能访问权限'
+ }
+ ],
+ pagination: {
+ total: 3,
+ pageSize: 10,
+ current: 1
+ }
+};
+
+@connect(({ systemRole }) => ({
+ systemRole
+}))
+export default class SystemRoleList extends React.Component {
+ state = {
+ selectedRows: [],
+ advancedFormVisible: false,
+ filterData: {},
+ pagination: {
+ pageSize: 10,
+ current: 1
+ },
+ tableData: mockData.list
+ };
+
+ componentDidMount() {
+ this.getRoleList();
+ }
+
+ // 获取角色列表
+ getRoleList = () => {
+ const { dispatch } = this.props;
+ const { pagination, filterData } = this.state;
+
+ try {
+ dispatch({
+ type: 'systemRole/fetchList',
+ payload: {
+ pageNum: pagination.current,
+ pageSize: pagination.pageSize,
+ ...filterData
+ },
+ callback: (res) => {
+ this.setState({
+ tableData: res?.list || mockData.list,
+ pagination: {
+ ...pagination,
+ total: res?.total || mockData.pagination.total
+ }
+ });
+ }
+ });
+ } catch (error) {
+ console.error('获取角色列表失败:', error);
+ this.setState({
+ tableData: mockData.list,
+ pagination: mockData.pagination
+ });
+ }
+ };
+
+ // 表格选择变化
+ handleSelectChange = (selectedRowKeys, selectedRows) => {
+ this.setState({ selectedRows });
+ };
+
+ // 分页变化
+ handleTableChange = (pagination) => {
+ this.setState({
+ pagination: {
+ ...this.state.pagination,
+ current: pagination.current
+ }
+ }, () => {
+ this.getRoleList();
+ });
+ };
+
+ // 新增角色
+ handleAdd = () => {
+ // 新增逻辑
+ message.success('新增角色功能');
+ };
+
+ // 编辑角色
+ handleEdit = (record) => {
+ // 编辑逻辑
+ message.success('编辑角色功能');
+ };
+
+ // 角色授权
+ handleAuth = (record) => {
+ // 授权逻辑
+ message.success('角色授权功能');
+ };
+
+ // 删除角色
+ handleDelete = (record) => {
+ confirm({
+ title: '确定要删除这个角色吗?',
+ icon: ,
+ onOk: () => {
+ // 删除逻辑
+ message.success('删除角色成功');
+ }
+ });
+ };
+
+ // 批量删除
+ handleBatchDelete = () => {
+ const { selectedRows } = this.state;
+ if (selectedRows.length === 0) {
+ message.warning('请选择要删除的角色');
+ return;
+ }
+ confirm({
+ title: `确定要删除选中的${selectedRows.length}个角色吗?`,
+ icon: ,
+ onOk: () => {
+ // 批量删除逻辑
+ message.success('批量删除角色成功');
+ }
+ });
+ };
+
+ // 启用/禁用角色
+ handleStatusChange = (record) => {
+ const newStatus = record.status === '1' ? '0' : '1';
+ confirm({
+ title: `确定要${newStatus === '1' ? '启用' : '禁用'}这个角色吗?`,
+ icon: ,
+ onOk: () => {
+ // 状态变更逻辑
+ message.success(`${newStatus === '1' ? '启用' : '禁用'}角色成功`);
+ }
+ });
+ };
+
+ render() {
+ const { selectedRows, tableData, pagination } = this.state;
+
+ const columns = [
+ {
+ title: '角色名称',
+ dataIndex: 'name',
+ key: 'name',
+ ellipsis: true
+ },
+ {
+ title: '角色编码',
+ dataIndex: 'code',
+ key: 'code',
+ ellipsis: true
+ },
+ {
+ title: '角色类型',
+ dataIndex: 'type',
+ key: 'type',
+ render: text => formatDictText(role_type, text)
+ },
+ {
+ title: '状态',
+ dataIndex: 'status',
+ key: 'status',
+ render: text => (
+
+ {text === '1' ? '启用' : '禁用'}
+
+ )
+ },
+ {
+ title: '创建时间',
+ dataIndex: 'createTime',
+ key: 'createTime',
+ ellipsis: true
+ },
+ {
+ title: '创建人',
+ dataIndex: 'createUser',
+ key: 'createUser',
+ ellipsis: true
+ },
+ {
+ title: '备注',
+ dataIndex: 'remark',
+ key: 'remark',
+ ellipsis: true
+ },
+ {
+ title: '操作',
+ key: 'action',
+ fixed: 'right',
+ width: 200,
+ render: (_, record) => (
+
+ }
+ onClick={() => this.handleEdit(record)}
+ >
+ 编辑
+
+
+ }
+ onClick={() => this.handleDelete(record)}
+ >
+ 删除
+
+ this.handleStatusChange(record)}
+ />
+
+ )
+ }
+ ];
+
+ return (
+
+
+
+
+
角色配置
+
+
+ }
+ onClick={this.handleAdd}
+ >
+ 新增角色
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/pages/business_system/systemRole/SystemRoleList.less b/src/pages/business_system/systemRole/SystemRoleList.less
new file mode 100644
index 0000000..9b7b87b
--- /dev/null
+++ b/src/pages/business_system/systemRole/SystemRoleList.less
@@ -0,0 +1,80 @@
+.header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 16px;
+}
+
+.headerLeft {
+ display: flex;
+ align-items: center;
+}
+
+.headerRight {
+ display: flex;
+ align-items: center;
+}
+
+.title {
+ margin: 0;
+ font-size: 18px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.filterSection {
+ margin-bottom: 16px;
+}
+
+.filterRow {
+ display: flex;
+ align-items: center;
+ margin-bottom: 12px;
+}
+
+.filterItem {
+ margin-right: 16px;
+}
+
+.actionButtons {
+ display: flex;
+ align-items: center;
+}
+
+.batchAction {
+ margin-right: 12px;
+}
+
+.formContainer {
+ padding: 24px;
+ background-color: #f5f5f5;
+}
+
+.formHeader {
+ margin-bottom: 16px;
+ padding-bottom: 8px;
+ border-bottom: 1px solid #e8e8e8;
+}
+
+.formTitle {
+ margin: 0;
+ font-size: 16px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.formContent {
+ background-color: #fff;
+ padding: 24px;
+ border-radius: 2px;
+}
+
+.formFooter {
+ display: flex;
+ justify-content: flex-end;
+ margin-top: 24px;
+}
+
+.formButton {
+ margin-left: 12px;
+}
\ No newline at end of file
diff --git a/src/pages/exception/1403.js b/src/pages/exception/1403.js
new file mode 100644
index 0000000..070a7c2
--- /dev/null
+++ b/src/pages/exception/1403.js
@@ -0,0 +1,20 @@
+import { Link } from '@umijs/max'
+import { Result, Button } from 'antd'
+import React from 'react'
+import master from '@/assets/yay.jpg'
+
+export default () => (
+ }
+ style={{
+ // background: ,
+ }}
+ subTitle='客服在线时间: 周一到周日 24小时在线。'
+ // extra={
+ //
+ //
+ //
+ // }
+ />
+)
diff --git a/src/pages/exception/403.js b/src/pages/exception/403.js
new file mode 100644
index 0000000..b787d9b
--- /dev/null
+++ b/src/pages/exception/403.js
@@ -0,0 +1,19 @@
+import { Link } from '@umijs/max'
+import { Result, Button } from 'antd'
+import React from 'react'
+
+export default () => (
+
+
+
+ }
+ />
+)
diff --git a/src/pages/exception/404.js b/src/pages/exception/404.js
new file mode 100644
index 0000000..93de606
--- /dev/null
+++ b/src/pages/exception/404.js
@@ -0,0 +1,19 @@
+import { Link } from '@umijs/max'
+import { Result, Button } from 'antd'
+import React from 'react'
+
+export default () => (
+
+
+
+ }
+ />
+)
diff --git a/src/pages/exception/500.js b/src/pages/exception/500.js
new file mode 100644
index 0000000..b005e29
--- /dev/null
+++ b/src/pages/exception/500.js
@@ -0,0 +1,19 @@
+import { Link } from '@umijs/max'
+import { Result, Button } from 'antd'
+import React from 'react'
+
+export default () => (
+
+
+
+ }
+ />
+)
diff --git a/src/pages/home/HomeList.js b/src/pages/home/HomeList.js
new file mode 100644
index 0000000..86f2e79
--- /dev/null
+++ b/src/pages/home/HomeList.js
@@ -0,0 +1,24 @@
+
+import React, { PureComponent } from 'react'
+import { history, connect } from '@umijs/max'
+import './HomeList.less'
+
+class HomeList extends PureComponent {
+ state = {
+
+ }
+
+ componentDidMount() {
+ const { dispatch } = this.props
+ }
+
+ render() {
+ return (
+
+ HomeList
+
+ )
+ }
+}
+
+export default HomeList
diff --git a/src/pages/home/HomeList.less b/src/pages/home/HomeList.less
new file mode 100644
index 0000000..e69de29
diff --git a/src/pages/login/Login.js b/src/pages/login/Login.js
new file mode 100644
index 0000000..ce0ccbd
--- /dev/null
+++ b/src/pages/login/Login.js
@@ -0,0 +1,152 @@
+import { createRef } from 'react'
+import GlobalComponent from '@/components/GlobalComponent'
+import { connect, useModel, history } from '@umijs/max'
+import './Login.less'
+import login from '@/assets/login/login.png'
+import { EyeInvisibleOutlined, EyeTwoTone } from '@ant-design/icons'
+import { getPageQuery } from '@/utils/utils'
+import { getInitialState } from '@/app'
+
+@connect(({ login, loading }) => ({
+ login,
+ loading: loading.models.login
+}))
+
+class Login extends GlobalComponent {
+ formRef = createRef()
+ state = {
+ isRemember: false
+ }
+
+ componentDidMount() {
+ const { dispatch } = this.props
+ }
+
+ toggleRemember = e => {
+ this.setState({
+ isRemember: e.target.checked ?? false
+ })
+ }
+
+ replaceGoto = () => {
+ const urlParams = new URL(window.location.href)
+ const params = getPageQuery()
+ let { redirect } = params
+
+ if (redirect) {
+ const redirectUrlParams = new URL(redirect)
+
+ if (redirectUrlParams.origin === urlParams.origin) {
+ redirect = redirect.slice(urlParams.origin.length)
+ if (redirect.match(/^\/.*#/)) {
+ redirect = redirect.slice(redirect.indexOf('#') + 1)
+ }
+ } else {
+ history.replace('/')
+ return
+ }
+ }
+
+ history.replace(redirect || '/')
+ }
+
+ submitForm = () => {
+ this.formRef.current.validateFields()
+ .then(fieldsValue => {
+ const { dispatch } = this.props
+ const { message } = this
+ const params = {
+ username: fieldsValue?.username,
+ password: fieldsValue?.password
+ }
+
+ dispatch({
+ type: 'login/login_user',
+ payload: params,
+ callback: async res => {
+ if (res?.success && res?.datarecord) {
+ message.success('登录成功!')
+ await localStorage.setItem('antd-token-authority', res.datarecord.token)
+
+ await getInitialState('refresh').then(res => {
+ this.replaceGoto()
+ })
+ }
+ }
+ })
+ })
+ .catch(error => { })
+ }
+
+ onKeyDown = e => {
+ if (e.keyCode !== 13) return
+
+ this.submitForm()
+ }
+
+ contactAdmin = () => {
+ }
+
+ render() {
+ const { Row, Col, Carousel, Input, Form, Checkbox, Button, Spin } = this
+ const { Item: FormItem } = Form
+ const { Password } = Input
+ const { isRemember } = this.state
+ const { loading } = this.props
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/**/}
+
+
+
+ )
+ }
+}
+
+export default Login
diff --git a/src/pages/login/Login.less b/src/pages/login/Login.less
new file mode 100644
index 0000000..80898fd
--- /dev/null
+++ b/src/pages/login/Login.less
@@ -0,0 +1,125 @@
+@import '~@/utils/utils.less';
+@import '@/global.less';
+
+@color: rgba(41, 105, 255, 1);
+
+.loginBox {
+ height: 100vh;
+
+ .boxLeft {
+ background-color: #F5F8FF;
+ height: 100vh;
+ position: relative;
+
+ img {
+ position: absolute;
+ right: -60px;
+ bottom: 10%;
+ max-height: 80%;
+ max-width: 80%;
+ }
+ }
+
+ .boxRight {
+ height: 100vh;
+ overflow-y: auto;
+
+ .loginForm {
+ .formHeader {
+ width: 100%;
+ height: 80px;
+ line-height: 80px;
+ }
+
+ .formContent {
+ padding: 40px 0 0;
+
+ .contentBox {
+ width: 450px;
+ margin: 0 auto;
+
+ .contentHeader {
+ margin: 0 auto;
+
+ .headerName {
+ color: @color;
+ font-weight: 1000;
+ font-size: 40px;
+ }
+
+ @media screen and (max-width: @screen-lg) {
+ .headerName { font-size: 30px; }
+ }
+
+ @media screen and (min-width: @screen-xl) {
+ .headerName { font-size: 40px; }
+ }
+
+ .headerSlogan {
+ font-weight: 400;
+ font-size: 16px;
+ padding: 16px 0 40px;
+ }
+ }
+
+ .contentBody {
+ margin: 0 auto;
+
+ .username, .password {
+ margin-bottom: 20px;
+
+ .ant-form-item-label {
+ font-size: 14px;
+ padding: 0 0 14px;
+ letter-spacing: 1px;
+ }
+
+ .ant-input {
+ padding: 12px 10px;
+ font-size: 18px;
+ border-radius: 5px;
+ }
+
+ .ant-input-password {
+ padding: 0 10px 0 0;
+ }
+ }
+
+ .isRemember {
+ padding-top: 10px;
+ padding-bottom: 24px;
+
+ .ant-checkbox+span {
+ padding: 0 8px;
+ letter-spacing: 1px;
+ }
+ }
+
+ .loginBtn {
+ width: 100%;
+ background-color: @color;
+ padding: 12px;
+ height: 54px;
+ line-height: 1;
+ border-radius: 5px;
+ }
+
+ .isForget {
+ padding-top: 20px;
+ text-align: center;
+
+ span+a {
+ padding: 0 8px;
+ letter-spacing: 1px;
+ }
+
+ a {
+ color: @color;
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/src/pages/login/models/Login.js b/src/pages/login/models/Login.js
new file mode 100644
index 0000000..ce86291
--- /dev/null
+++ b/src/pages/login/models/Login.js
@@ -0,0 +1,42 @@
+import { loginUser, logOutUser } from '@/services/system/api_login'
+
+export default {
+ namespace: 'login',
+ state: {
+ data: {}
+ },
+ effects: {
+ *login_user({ payload, callback }, { call, put }) {
+ const response = yield call(loginUser, payload)
+ yield put({
+ type: 'loginUser',
+ payload: response
+ })
+
+ if (callback) callback(response)
+ },
+ *login_out_user({ payload, callback }, { call, put }) {
+ const response = yield call(logOutUser, payload)
+ yield put({
+ type: 'logOutUser',
+ payload: response
+ })
+
+ if (callback) callback(response)
+ }
+ },
+ reducers: {
+ loginUser(state, { payload }) {
+ return {
+ ...state,
+ data: { ...payload }
+ }
+ },
+ logOutUser(state, { payload }) {
+ return {
+ ...state,
+ data: { ...payload }
+ }
+ }
+ }
+}
diff --git a/src/pages/nav_pocmodel_content/PocmodelContentList.js b/src/pages/nav_pocmodel_content/PocmodelContentList.js
new file mode 100644
index 0000000..fd010ee
--- /dev/null
+++ b/src/pages/nav_pocmodel_content/PocmodelContentList.js
@@ -0,0 +1,73 @@
+import React, { useState, useEffect } from 'react'
+import { history, Outlet, useLocation, matchRoutes } from '@umijs/max'
+import { Menu } from 'antd'
+import './PocmodelContentList.less'
+import { formatRoute, getDefaultRoute } from '@/utils/routeUtils'
+
+const PocmodelContentList = (props) => {
+ const dynamicRoute = window.dynamicRoute
+ const location = useLocation()
+ const pathName = location.pathname
+ const [openKey, setOpenKey] = useState([])
+ const [selectedKey, setSelectedKey] = useState([])
+ const [menuItems, setMenuItems] = useState([])
+ let defaultKey = ''
+
+ useEffect(() => {
+ if (!dynamicRoute || dynamicRoute?.length === 0) return
+ let newList = []
+ let routes = []
+
+ if (dynamicRoute?.length) {
+ let tempRoute = dynamicRoute?.filter(item => pathName.indexOf(item.key) !== -1) ?? []
+
+ newList = formatRoute(tempRoute[0]?.children)
+ routes = formatRoute(tempRoute[0]?.children, true)
+ defaultKey = getDefaultRoute(routes)
+ const mathRoute = matchRoutes(routes, pathName)
+
+ setRouteActive({ key: mathRoute?.length ? pathName : defaultKey }, routes)
+ }
+
+ setMenuItems(newList)
+ }, [pathName])
+
+ const setRouteActive = (value, menu) => {
+ const curKey = value.key
+ const tempMenu = menu ?? menuItems ?? []
+ const mathRoute = matchRoutes(tempMenu, curKey)
+ let openKeys = []
+ let selectedKeys = []
+
+ mathRoute?.map((item, index) => {
+ mathRoute?.length !== index + 1 && (openKeys = [...openKeys, item.pathname])
+ mathRoute?.length === index + 1 && (selectedKeys = [...selectedKeys, item.pathname])
+ })
+
+ setOpenKey(openKeys)
+ setSelectedKey(selectedKeys)
+ history.replace(curKey)
+ }
+
+ return (
+
+
+
+
+
+
+
+
+ )
+}
+
+export default PocmodelContentList
diff --git a/src/pages/nav_pocmodel_content/PocmodelContentList.less b/src/pages/nav_pocmodel_content/PocmodelContentList.less
new file mode 100644
index 0000000..d2ecd56
--- /dev/null
+++ b/src/pages/nav_pocmodel_content/PocmodelContentList.less
@@ -0,0 +1,27 @@
+.systemContent {
+ display: flex;
+ height: 100%;
+ justify-content: space-between;
+ flex-wrap: nowrap;
+ padding: 12px;
+
+ .leftMenu {
+ margin: 0;
+ width: 200px;
+ background-color: #ffffff;
+ border-radius: 6px;
+ overflow-y: auto;
+ overflow-x: hidden;
+
+ .ant-menu-inline {
+ background: #ffffff !important;
+ }
+ }
+
+ .rightContentMain {
+ width: calc(100% - 212px);
+ background-color: #ffffff;
+ border-radius: 6px;
+ overflow-y: auto;
+ }
+}
diff --git a/src/pages/nav_system_content/SystemContentList.js b/src/pages/nav_system_content/SystemContentList.js
new file mode 100644
index 0000000..cdf3db9
--- /dev/null
+++ b/src/pages/nav_system_content/SystemContentList.js
@@ -0,0 +1,402 @@
+import React, { useState, useEffect } from 'react'
+import { history, Outlet, useLocation, matchRoutes, useModel } from '@umijs/max'
+import { Menu, Tabs, Select } from 'antd'
+import './SystemContentList.less'
+import { formatRoute, getDefaultRoute } from '@/utils/routeUtils'
+import styles from './TopNavBar.less'
+import { Row, Col, Avatar, Dropdown, Button } from 'antd'
+import { userInfo } from '@/utils/globalCommon'
+import { HomeOutlined, LogoutOutlined, AppstoreOutlined, UserOutlined, SettingOutlined, DatabaseOutlined, FileTextOutlined, LockOutlined, AreaChartOutlined, CaretDownOutlined, BellOutlined, SearchOutlined, QuestionCircleOutlined } from '@ant-design/icons'
+import { getPageQuery } from '@/utils/utils'
+import menuTitle from '@/assets/img/智能管控平台.svg'
+import menuTitle1 from '@/assets/img/智能管控平台-1.svg'
+import fireHydrant from '@/assets/img/fireHydrant.svg'
+import fireHydrant1 from '@/assets/img/fireHydrant1.svg'
+import trouble from '@/assets/img/trouble.svg'
+import book from '@/assets/img/book.svg'
+import danger from '@/assets/img/danger.svg'
+import danger1 from '@/assets/img/danger1.svg'
+import license from '@/assets/img/license.svg'
+import people from '@/assets/img/people.svg'
+import risk from '@/assets/img/risk.svg'
+import { CustomBreadcrumb } from '@/components/GlobalComponent'
+
+
+// 自定义菜单项渲染组件,支持根据激活状态显示不同图片
+const CustomMenuItem = ({ item, selectedKeys }) => {
+ const isActive = selectedKeys.includes(item.key);
+
+ // 为每个菜单项定义激活状态的图片
+ // 如果没有专门的激活状态图片,则使用默认图片
+ const getActiveIcon = (baseIcon) => {
+ // 这里可以根据需要为每个图标定义对应的激活状态图片
+ // 目前暂时使用相同的图片,用户可以根据实际情况替换
+ return baseIcon;
+ };
+
+ const renderIcon = () => {
+ if (item.icon && typeof item.icon === 'object' && item.icon.props && item.icon.props.src) {
+ const iconSrc = isActive ? getActiveIcon(item.icon.props.src) : item.icon.props.src;
+ return
+ }
+ return item.icon;
+ };
+
+ const renderMenuItem = (menuItem) => ({
+ ...menuItem,
+ icon: renderIcon(),
+ children: menuItem.children?.map(child => renderMenuItem(child))
+ });
+
+ return renderMenuItem(item);
+};
+
+const SystemContentList = (props) => {
+ const dynamicRoute = window.dynamicRoute
+ console.log(dynamicRoute)
+ const location = useLocation()
+ const pathName = location.pathname
+ const [openKey, setOpenKey] = useState([])
+ const [selectedKey, setSelectedKey] = useState([])
+ const [menuItems, setMenuItems] = useState([])
+ const [systemType, setSystemType] = useState('智能巡检系统')
+ const [isMenuCollapsed, setIsMenuCollapsed] = useState(false); // 添加菜单收缩状态
+ let defaultKey = ''
+
+ useEffect(() => {
+ console.log('dynamicRoute structure:', dynamicRoute)
+ if (!dynamicRoute || dynamicRoute?.length === 0) return
+ let newList = []
+ let routes = []
+
+ if (dynamicRoute?.length) {
+ let tempRoute = dynamicRoute?.filter(item => pathName.indexOf(item.key) !== -1) ?? []
+
+ newList = formatRoute(tempRoute[0]?.children)
+ routes = formatRoute(tempRoute[0]?.children, true)
+ defaultKey = getDefaultRoute(routes)
+ const mathRoute = matchRoutes(routes, pathName)
+
+ setRouteActive({ key: mathRoute?.length ? pathName : defaultKey }, routes)
+ }
+
+ setMenuItems(newList)
+
+ const fixedMenuItems = [
+ {
+ "path": "/topnavbar00/business/basicinformation",
+ icon:
,
+ "key": "/topnavbar00/business/basicinformation",
+ "label": "安全管理基础信息"
+ },
+ {
+ "path": "/topnavbar00/business/hiddentrouble",
+ icon:
,
+ "key": "/topnavbar00/business/hiddentrouble",
+ "label": "隐患排查"
+ }
+ ]
+ setMenuItems(fixedMenuItems)
+ // 初始化默认路由
+ const defaultRoute = fixedMenuItems[0]?.key || ''
+ const mathRoute = matchRoutes(fixedMenuItems, pathName)
+ setRouteActive({ key: mathRoute?.length ? pathName : defaultRoute }, fixedMenuItems)
+ }, [pathName])
+
+ const setRouteActive = (value, menu) => {
+ const curKey = value.key
+ const tempMenu = menu ?? menuItems ?? []
+ const mathRoute = matchRoutes(tempMenu, curKey)
+ let openKeys = []
+ let selectedKeys = []
+
+ mathRoute?.map((item, index) => {
+ mathRoute?.length !== index + 1 && (openKeys = [...openKeys, item.pathname])
+ mathRoute?.length === index + 1 && (selectedKeys = [...selectedKeys, item.pathname])
+ })
+
+ setOpenKey(openKeys)
+ setSelectedKey(selectedKeys)
+ history.replace(curKey)
+ }
+
+ // 切换菜单收缩状态
+ const toggleMenu = () => {
+ setIsMenuCollapsed(!isMenuCollapsed);
+ };
+
+ const { initialState: { menu }, setInitialState } = useModel('@@initialState')
+
+ const loginOut = async () => {
+ // await outLogin()
+ const { redirect } = getPageQuery()
+
+ if (window.location.pathname !== '/login/login' && !redirect) {
+ history.replace({
+ pathname: '/login',
+ // search: stringify({
+ // redirect: window.location.href,
+ // }),
+ })
+
+ setInitialState({ currentUser: null, menu: null, menuMap: null })
+ window.dynamicRoute = null
+ localStorage.clear()
+ }
+ }
+
+ const handleMenuClick = (e) => {
+ switch (e.key) {
+ case 'logout':
+ loginOut()
+ break
+ default:
+ break
+ }
+ }
+
+ const dropDownMenuItems = [
+ {
+ label: <>退出登录>,
+ key: 'logout'
+ }
+ ]
+
+ const dropDownMenu = () => (
+
+ )
+
+ return (
+
+
+
+

+

+
+
+ }
+ />
+
+
+ {/* 菜单收缩按钮 */}
+
+
+
+
+
+ {/*
*/}
+
+
+ {/*
+
+
+
+
+ {/*
*/}
+
+
+
+
+ )
+}
+
+export default SystemContentList
+
+
diff --git a/src/pages/nav_system_content/SystemContentList.less b/src/pages/nav_system_content/SystemContentList.less
new file mode 100644
index 0000000..4019b6c
--- /dev/null
+++ b/src/pages/nav_system_content/SystemContentList.less
@@ -0,0 +1,136 @@
+.systemContent {
+ display: flex;
+ height: 100vh;
+ // justify-content: space-between;
+ flex-wrap: nowrap;
+ // padding: 12px;
+
+ .tabBarHeader {
+ background-color: #fff;
+ padding: 0;
+ width: 100%;
+ min-height: 62px;
+ display: grid;
+ // margin-bottom: 10px;
+
+ .tabBarRow {
+ padding: 0 12px;
+ justify-content: flex-end;
+
+ .tabBarLeft {
+ display: flex;
+ justify-content: space-between;
+ flex-wrap: nowrap;
+ align-items: center;
+
+ .leftLogo {
+ width: 36px;
+ height: 36px;
+ margin: 0 12px;
+ }
+
+ .leftMenu {
+ width: calc(100% - 52px);
+ }
+ }
+
+ .tabBarLeft {
+ text-align: right;
+ display: flex;
+ // justify-content: flex-end;s
+ flex-wrap: nowrap;
+ align-items: center;
+ }
+
+ .tabBarRight {
+ text-align: right;
+ display: flex;
+ justify-content: flex-end;
+ flex-wrap: nowrap;
+ align-items: center;
+
+ .tabBarRightAvaTor {
+ margin-right: 20px;
+ }
+
+ .tabBarRightName {
+ margin-right: 5px;
+ }
+
+ .tabBarRightBtn {
+ height: 100%;
+ }
+ }
+ }
+ }
+
+ .rightContent {
+ width: calc(100% - 230px);
+ display: flex;
+ flex-direction: column;
+ height: 100vh;
+ overflow: auto;
+ }
+
+ .leftMenu {
+ margin: 0;
+ width: 230px;
+ overflow-y: auto;
+ overflow-x: hidden;
+ background-color: #2E4CD4;
+
+ .ant-menu-inline,
+ .ant-menu-vertical {
+ background: #2E4CD4 !important;
+ }
+
+ // 默认情况字体样式和右边距
+ .ant-menu-title-content {
+ margin-left: 28px !important;
+ }
+
+ .ant-menu-item {
+ width: 100%;
+ // margin: 0px;
+ margin-left: 0px;
+ border-radius: 0px;
+ }
+
+ .ant-menu-item,
+ .ant-menu-submenu-title {
+ color: rgba(255, 255, 255, 0.6) !important;
+ margin-right: 15px !important;
+ }
+
+ // 选中状态样式
+ .ant-menu-item-selected {
+ color: rgba(255, 255, 255, 1) !important;
+ background-color: rgba(255, 255, 255, 0.22) !important;
+ }
+
+ // 选中状态下的文本颜色和右边距
+ .ant-menu-item-selected .ant-menu-item-icon,
+ .ant-menu-item-selected a {
+ color: rgba(255, 255, 255, 1) !important;
+ // margin-right: 15px !important;
+ }
+
+ .menuTitle {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ height: 62px;
+ width: 100%;
+ }
+ }
+
+ .rightContentMain {
+ width: 100%;
+ //background-color: #ffffff;
+ // border-radius: 6px;
+ overflow-y: auto;
+ // height: 100%;
+ overflow: auto;
+ }
+}
\ No newline at end of file
diff --git a/src/pages/nav_system_content/TopNavBar.less b/src/pages/nav_system_content/TopNavBar.less
new file mode 100644
index 0000000..1794cac
--- /dev/null
+++ b/src/pages/nav_system_content/TopNavBar.less
@@ -0,0 +1,11 @@
+.layoutContainer {
+ height: 100%;
+ background-color: #f0f2f5;
+
+
+
+ .contentMain {
+ height: calc(100% - 46px);
+ overflow-y: hidden;
+ }
+}
\ No newline at end of file
diff --git a/src/pages/systemMenu/SystemMenuList.js b/src/pages/systemMenu/SystemMenuList.js
new file mode 100644
index 0000000..57b49e2
--- /dev/null
+++ b/src/pages/systemMenu/SystemMenuList.js
@@ -0,0 +1,402 @@
+import React from 'react';
+import {
+ DeleteOutlined,
+ EditOutlined,
+ PlusOutlined,
+ SearchOutlined,
+ RedoOutlined,
+ DownOutlined,
+ ExclamationCircleFilled,
+ UpOutlined,
+ InfoCircleFilled,
+ QuestionCircleFilled,
+ DownloadOutlined
+} from '@ant-design/icons';
+import {connect, history} from '@umijs/max';
+import {Button, Card, Divider, Dropdown, message, Modal, Popconfirm, Space, Switch, Tag, Row, Col, Tree} from 'antd';
+import StandardTable from '@/components/StandardTable';
+
+import { MyIcon } from "@/components/Icon"
+import style from "@/global.less";
+import styles from './SystemMenuList.less';
+import datadictionary from "@/utils/dataDictionary";
+import {formatDate} from "@/utils/formatUtils";
+import { formatDictText, checkButtonAuthority } from "@/utils/globalCommon";
+
+const { confirm } = Modal;
+
+// 菜单类型
+const menu_type = datadictionary.menu_type || [];
+const menu_status = datadictionary.menu_status || [];
+const menu_level = datadictionary.menu_level || [];
+
+const mockData = {
+ list: [
+ {
+ id: '1',
+ name: '效率管理',
+ code: 'hrefficiency',
+ type: '1',
+ level: '1',
+ status: '1',
+ path: '/topnavbar00/hrefficiency',
+ component: '',
+ icon: 'setting',
+ createTime: '2023-01-01 10:00:00',
+ createUser: 'admin',
+ children: [
+ {
+ id: '2',
+ name: '工时仪表盘',
+ code: 'timesheet',
+ type: '2',
+ level: '2',
+ status: '1',
+ path: '/topnavbar00/hrefficiency/timesheet',
+ component: './hrefficiency_timesheet/TimeSheetList',
+ icon: 'dashboard',
+ createTime: '2023-01-01 10:05:00',
+ createUser: 'admin'
+ },
+ {
+ id: '3',
+ name: '员工仪表盘',
+ code: 'staffsheet',
+ type: '2',
+ level: '2',
+ status: '1',
+ path: '/topnavbar00/hrefficiency/staffsheet',
+ component: './hrefficiency_staffsheet/StaffSheetList',
+ icon: 'user',
+ createTime: '2023-01-01 10:10:00',
+ createUser: 'admin'
+ }
+ ]
+ },
+ {
+ id: '4',
+ name: '系统管理',
+ code: 'system',
+ type: '1',
+ level: '1',
+ status: '1',
+ path: '/topnavbar00/hrefficiency/system',
+ component: './nav_system_content/SystemContentList',
+ icon: 'control',
+ createTime: '2023-01-02 14:30:00',
+ createUser: 'admin'
+ }
+ ],
+ pagination: {
+ total: 2,
+ pageSize: 10,
+ current: 1
+ }
+};
+
+@connect(({ systemMenu, loading }) => ({
+ systemMenu,
+ loading: loading.models.systemMenu
+}))
+export default class SystemMenuList extends React.Component {
+ state = {
+ selectedRows: [],
+ loading: false,
+ advancedFormVisible: false,
+ filterData: {},
+ pagination: {
+ pageSize: 10,
+ current: 1
+ },
+ tableData: mockData.list,
+ treeData: [],
+ expandedKeys: []
+ };
+
+ componentDidMount() {
+ this.getMenuList();
+ this.buildTreeData();
+ }
+
+ // 获取菜单列表
+ getMenuList = () => {
+ const { dispatch } = this.props;
+ const { pagination, filterData } = this.state;
+ this.setState({ loading: true });
+ dispatch({
+ type: 'systemMenu/fetchList',
+ payload: {
+ pageNum: pagination.current,
+ pageSize: pagination.pageSize,
+ ...filterData
+ },
+ callback: (res) => {
+ this.setState({
+ loading: false,
+ tableData: res?.list || [],
+ pagination: {
+ ...pagination,
+ total: res?.total || 0
+ }
+ }, () => {
+ this.buildTreeData();
+ });
+ }
+ });
+ };
+
+ // 构建树数据
+ buildTreeData = () => {
+ const { tableData } = this.state;
+ const treeData = this.transformToTree(tableData);
+ this.setState({ treeData });
+ };
+
+ // 转换为树结构
+ transformToTree = (data) => {
+ return data.map(item => {
+ const node = {
+ title: item.name,
+ key: item.id,
+ dataRef: item
+ };
+ if (item.children && item.children.length > 0) {
+ node.children = this.transformToTree(item.children);
+ }
+ return node;
+ });
+ };
+
+ // 表格选择变化
+ handleSelectChange = (selectedRowKeys, selectedRows) => {
+ this.setState({ selectedRows });
+ };
+
+ // 分页变化
+ handleTableChange = (pagination) => {
+ this.setState({
+ pagination: {
+ ...this.state.pagination,
+ current: pagination.current
+ }
+ }, () => {
+ this.getMenuList();
+ });
+ };
+
+ // 新增菜单
+ handleAdd = () => {
+ // 新增逻辑
+ message.success('新增菜单功能');
+ };
+
+ // 编辑菜单
+ handleEdit = (record) => {
+ // 编辑逻辑
+ message.success('编辑菜单功能');
+ };
+
+ // 删除菜单
+ handleDelete = (record) => {
+ confirm({
+ title: '确定要删除这个菜单吗?',
+ icon: ,
+ onOk: () => {
+ // 删除逻辑
+ message.success('删除菜单成功');
+ }
+ });
+ };
+
+ // 批量删除
+ handleBatchDelete = () => {
+ const { selectedRows } = this.state;
+ if (selectedRows.length === 0) {
+ message.warning('请选择要删除的菜单');
+ return;
+ }
+ confirm({
+ title: `确定要删除选中的${selectedRows.length}个菜单吗?`,
+ icon: ,
+ onOk: () => {
+ // 批量删除逻辑
+ message.success('批量删除菜单成功');
+ }
+ });
+ };
+
+ // 启用/禁用菜单
+ handleStatusChange = (record) => {
+ const newStatus = record.status === '1' ? '0' : '1';
+ confirm({
+ title: `确定要${newStatus === '1' ? '启用' : '禁用'}这个菜单吗?`,
+ icon: ,
+ onOk: () => {
+ // 状态变更逻辑
+ message.success(`${newStatus === '1' ? '启用' : '禁用'}菜单成功`);
+ }
+ });
+ };
+
+ // 展开/折叠树节点
+ handleExpand = (expandedKeys) => {
+ this.setState({ expandedKeys });
+ };
+
+ // 点击树节点
+ handleTreeSelect = (selectedKeys, info) => {
+ // 树节点选择逻辑
+ console.log('Selected', selectedKeys, info);
+ };
+
+ render() {
+ const { selectedRows, loading, tableData, pagination, treeData, expandedKeys } = this.state;
+
+ const columns = [
+ {
+ title: '菜单名称',
+ dataIndex: 'name',
+ key: 'name',
+ ellipsis: true
+ },
+ {
+ title: '菜单编码',
+ dataIndex: 'code',
+ key: 'code',
+ ellipsis: true
+ },
+ {
+ title: '菜单类型',
+ dataIndex: 'type',
+ key: 'type',
+ render: text => formatDictText(menu_type, text)
+ },
+ {
+ title: '菜单级别',
+ dataIndex: 'level',
+ key: 'level',
+ render: text => formatDictText(menu_level, text)
+ },
+ {
+ title: '路径',
+ dataIndex: 'path',
+ key: 'path',
+ ellipsis: true
+ },
+ {
+ title: '状态',
+ dataIndex: 'status',
+ key: 'status',
+ render: text => (
+
+ {text === '1' ? '启用' : '禁用'}
+
+ )
+ },
+ {
+ title: '创建时间',
+ dataIndex: 'createTime',
+ key: 'createTime',
+ ellipsis: true
+ },
+ {
+ title: '创建人',
+ dataIndex: 'createUser',
+ key: 'createUser',
+ ellipsis: true
+ },
+ {
+ title: '操作',
+ key: 'action',
+ fixed: 'right',
+ width: 160,
+ render: (_, record) => (
+
+ }
+ onClick={() => this.handleEdit(record)}
+ >
+ 编辑
+
+ }
+ onClick={() => this.handleDelete(record)}
+ >
+ 删除
+
+ this.handleStatusChange(record)}
+ />
+
+ )
+ }
+ ];
+
+ return (
+
+
+
+
+
菜单配置
+
+
+ }
+ onClick={this.handleAdd}
+ >
+ 新增菜单
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/pages/systemMenu/SystemMenuList.less b/src/pages/systemMenu/SystemMenuList.less
new file mode 100644
index 0000000..1e700fb
--- /dev/null
+++ b/src/pages/systemMenu/SystemMenuList.less
@@ -0,0 +1,115 @@
+.header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 16px;
+}
+
+.headerLeft {
+ display: flex;
+ align-items: center;
+}
+
+.headerRight {
+ display: flex;
+ align-items: center;
+}
+
+.title {
+ margin: 0;
+ font-size: 18px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.filterSection {
+ margin-bottom: 16px;
+}
+
+.filterRow {
+ display: flex;
+ align-items: center;
+ margin-bottom: 12px;
+}
+
+.filterItem {
+ margin-right: 16px;
+}
+
+.actionButtons {
+ display: flex;
+ align-items: center;
+}
+
+.batchAction {
+ margin-right: 12px;
+}
+
+.formContainer {
+ padding: 24px;
+ background-color: #f5f5f5;
+}
+
+.formHeader {
+ margin-bottom: 16px;
+ padding-bottom: 8px;
+ border-bottom: 1px solid #e8e8e8;
+}
+
+.formTitle {
+ margin: 0;
+ font-size: 16px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.formContent {
+ background-color: #fff;
+ padding: 24px;
+ border-radius: 2px;
+}
+
+.formFooter {
+ display: flex;
+ justify-content: flex-end;
+ margin-top: 24px;
+}
+
+.formButton {
+ margin-left: 12px;
+}
+
+.menuContent {
+ width: 100%;
+}
+
+.menuTreeSection {
+ margin-bottom: 24px;
+}
+
+.sectionTitle {
+ margin: 0 0 12px 0;
+ font-size: 16px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.menuTree {
+ background-color: #fafafa;
+ padding: 16px;
+ border-radius: 4px;
+ border: 1px solid #e8e8e8;
+ min-height: 200px;
+}
+
+.tree {
+ background-color: transparent;
+}
+
+.tree .ant-tree-node-selected {
+ background-color: #e6f7ff;
+}
+
+.tree .ant-tree-node-selected:hover {
+ background-color: #bae7ff;
+}
\ No newline at end of file
diff --git a/src/pages/systemOrganization/SystemOrganizationList.js b/src/pages/systemOrganization/SystemOrganizationList.js
new file mode 100644
index 0000000..77ea533
--- /dev/null
+++ b/src/pages/systemOrganization/SystemOrganizationList.js
@@ -0,0 +1,310 @@
+import React from 'react';
+import {
+ DeleteOutlined,
+ EditOutlined,
+ PlusOutlined,
+ SearchOutlined,
+ RedoOutlined,
+ DownOutlined,
+ ExclamationCircleFilled,
+ UpOutlined,
+ InfoCircleFilled,
+ QuestionCircleFilled,
+ DownloadOutlined
+} from '@ant-design/icons';
+import {connect, history} from '@umijs/max';
+import {Button, Card, Divider, Dropdown, message, Modal, Popconfirm, Space, Switch, Tag, Row, Col} from 'antd';
+import StandardTable from '@/components/StandardTable';
+
+import { MyIcon } from "@/components/Icon"
+import style from "@/global.less";
+import styles from './SystemOrganizationList.less';
+import datadictionary from "@/utils/dataDictionary";
+import {formatDate} from "@/utils/formatUtils";
+import { formatDictText, checkButtonAuthority } from "@/utils/globalCommon";
+
+const { confirm } = Modal;
+
+// 组织类型
+const organization_type = datadictionary.organization_type || [];
+const organization_status = datadictionary.organization_status || [];
+
+const mockData = {
+ list: [
+ {
+ id: '1',
+ name: '总部',
+ code: 'HQ',
+ type: '1',
+ parentId: '0',
+ status: '1',
+ createTime: '2023-01-01 10:00:00',
+ createUser: 'admin'
+ },
+ {
+ id: '2',
+ name: '研发部',
+ code: 'R&D',
+ type: '2',
+ parentId: '1',
+ status: '1',
+ createTime: '2023-01-02 14:30:00',
+ createUser: 'admin'
+ },
+ {
+ id: '3',
+ name: '市场部',
+ code: 'MKT',
+ type: '2',
+ parentId: '1',
+ status: '1',
+ createTime: '2023-01-03 09:15:00',
+ createUser: 'admin'
+ }
+ ],
+ pagination: {
+ total: 3,
+ pageSize: 10,
+ current: 1
+ }
+};
+
+@connect(({ systemOrganization, loading }) => ({
+ systemOrganization,
+ loading: loading.models.systemOrganization
+}))
+export default class SystemOrganizationList extends React.Component {
+ state = {
+ selectedRows: [],
+ loading: false,
+ advancedFormVisible: false,
+ filterData: {},
+ pagination: {
+ pageSize: 10,
+ current: 1
+ },
+ tableData: mockData.list
+ };
+
+ componentDidMount() {
+ this.getOrganizationList();
+ }
+
+ // 获取组织列表
+ getOrganizationList = () => {
+ const { dispatch } = this.props;
+ const { pagination, filterData } = this.state;
+ this.setState({ loading: true });
+ dispatch({
+ type: 'systemOrganization/fetchList',
+ payload: {
+ pageNum: pagination.current,
+ pageSize: pagination.pageSize,
+ ...filterData
+ },
+ callback: (res) => {
+ this.setState({
+ loading: false,
+ tableData: res?.list || [],
+ pagination: {
+ ...pagination,
+ total: res?.total || 0
+ }
+ });
+ }
+ });
+ };
+
+ // 表格选择变化
+ handleSelectChange = (selectedRowKeys, selectedRows) => {
+ this.setState({ selectedRows });
+ };
+
+ // 分页变化
+ handleTableChange = (pagination) => {
+ this.setState({
+ pagination: {
+ ...this.state.pagination,
+ current: pagination.current
+ }
+ }, () => {
+ this.getOrganizationList();
+ });
+ };
+
+ // 新增组织
+ handleAdd = () => {
+ // 新增逻辑
+ message.success('新增组织功能');
+ };
+
+ // 编辑组织
+ handleEdit = (record) => {
+ // 编辑逻辑
+ message.success('编辑组织功能');
+ };
+
+ // 删除组织
+ handleDelete = (record) => {
+ confirm({
+ title: '确定要删除这个组织吗?',
+ icon: ,
+ onOk: () => {
+ // 删除逻辑
+ message.success('删除组织成功');
+ }
+ });
+ };
+
+ // 批量删除
+ handleBatchDelete = () => {
+ const { selectedRows } = this.state;
+ if (selectedRows.length === 0) {
+ message.warning('请选择要删除的组织');
+ return;
+ }
+ confirm({
+ title: `确定要删除选中的${selectedRows.length}个组织吗?`,
+ icon: ,
+ onOk: () => {
+ // 批量删除逻辑
+ message.success('批量删除组织成功');
+ }
+ });
+ };
+
+ // 启用/禁用组织
+ handleStatusChange = (record) => {
+ const newStatus = record.status === '1' ? '0' : '1';
+ confirm({
+ title: `确定要${newStatus === '1' ? '启用' : '禁用'}这个组织吗?`,
+ icon: ,
+ onOk: () => {
+ // 状态变更逻辑
+ message.success(`${newStatus === '1' ? '启用' : '禁用'}组织成功`);
+ }
+ });
+ };
+
+ render() {
+ const { selectedRows, loading, tableData, pagination } = this.state;
+
+ const columns = [
+ {
+ title: '组织名称',
+ dataIndex: 'name',
+ key: 'name',
+ ellipsis: true
+ },
+ {
+ title: '组织编码',
+ dataIndex: 'code',
+ key: 'code',
+ ellipsis: true
+ },
+ {
+ title: '组织类型',
+ dataIndex: 'type',
+ key: 'type',
+ render: text => formatDictText(organization_type, text)
+ },
+ {
+ title: '状态',
+ dataIndex: 'status',
+ key: 'status',
+ render: text => (
+
+ {text === '1' ? '启用' : '禁用'}
+
+ )
+ },
+ {
+ title: '创建时间',
+ dataIndex: 'createTime',
+ key: 'createTime',
+ ellipsis: true
+ },
+ {
+ title: '创建人',
+ dataIndex: 'createUser',
+ key: 'createUser',
+ ellipsis: true
+ },
+ {
+ title: '操作',
+ key: 'action',
+ fixed: 'right',
+ width: 160,
+ render: (_, record) => (
+
+ }
+ onClick={() => this.handleEdit(record)}
+ >
+ 编辑
+
+ }
+ onClick={() => this.handleDelete(record)}
+ >
+ 删除
+
+ this.handleStatusChange(record)}
+ />
+
+ )
+ }
+ ];
+
+ return (
+
+
+
+
+
组织管理
+
+
+ }
+ onClick={this.handleAdd}
+ >
+ 新增组织
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/pages/systemOrganization/SystemOrganizationList.less b/src/pages/systemOrganization/SystemOrganizationList.less
new file mode 100644
index 0000000..9b7b87b
--- /dev/null
+++ b/src/pages/systemOrganization/SystemOrganizationList.less
@@ -0,0 +1,80 @@
+.header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 16px;
+}
+
+.headerLeft {
+ display: flex;
+ align-items: center;
+}
+
+.headerRight {
+ display: flex;
+ align-items: center;
+}
+
+.title {
+ margin: 0;
+ font-size: 18px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.filterSection {
+ margin-bottom: 16px;
+}
+
+.filterRow {
+ display: flex;
+ align-items: center;
+ margin-bottom: 12px;
+}
+
+.filterItem {
+ margin-right: 16px;
+}
+
+.actionButtons {
+ display: flex;
+ align-items: center;
+}
+
+.batchAction {
+ margin-right: 12px;
+}
+
+.formContainer {
+ padding: 24px;
+ background-color: #f5f5f5;
+}
+
+.formHeader {
+ margin-bottom: 16px;
+ padding-bottom: 8px;
+ border-bottom: 1px solid #e8e8e8;
+}
+
+.formTitle {
+ margin: 0;
+ font-size: 16px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.formContent {
+ background-color: #fff;
+ padding: 24px;
+ border-radius: 2px;
+}
+
+.formFooter {
+ display: flex;
+ justify-content: flex-end;
+ margin-top: 24px;
+}
+
+.formButton {
+ margin-left: 12px;
+}
\ No newline at end of file
diff --git a/src/pages/systemRole/SystemRoleList.js b/src/pages/systemRole/SystemRoleList.js
new file mode 100644
index 0000000..54c0bc8
--- /dev/null
+++ b/src/pages/systemRole/SystemRoleList.js
@@ -0,0 +1,329 @@
+import React from 'react';
+import {
+ DeleteOutlined,
+ EditOutlined,
+ PlusOutlined,
+ SearchOutlined,
+ RedoOutlined,
+ DownOutlined,
+ ExclamationCircleFilled,
+ UpOutlined,
+ InfoCircleFilled,
+ QuestionCircleFilled,
+ DownloadOutlined
+} from '@ant-design/icons';
+import {connect, history} from '@umijs/max';
+import {Button, Card, Divider, Dropdown, message, Modal, Popconfirm, Space, Switch, Tag, Row, Col} from 'antd';
+import StandardTable from '@/components/StandardTable';
+
+import { MyIcon } from "@/components/Icon"
+import style from "@/global.less";
+import styles from './SystemRoleList.less';
+import datadictionary from "@/utils/dataDictionary";
+import {formatDate} from "@/utils/formatUtils";
+import { formatDictText, checkButtonAuthority } from "@/utils/globalCommon";
+
+const { confirm } = Modal;
+
+// 角色类型
+const role_type = datadictionary.role_type || [];
+const role_status = datadictionary.role_status || [];
+
+const mockData = {
+ list: [
+ {
+ id: '1',
+ name: '超级管理员',
+ code: 'SUPER_ADMIN',
+ type: '1',
+ status: '1',
+ createTime: '2023-01-01 10:00:00',
+ createUser: 'admin',
+ remark: '系统最高权限角色'
+ },
+ {
+ id: '2',
+ name: '部门管理员',
+ code: 'DEPT_ADMIN',
+ type: '2',
+ status: '1',
+ createTime: '2023-01-02 14:30:00',
+ createUser: 'admin',
+ remark: '部门级管理权限'
+ },
+ {
+ id: '3',
+ name: '普通用户',
+ code: 'NORMAL_USER',
+ type: '3',
+ status: '1',
+ createTime: '2023-01-03 09:15:00',
+ createUser: 'admin',
+ remark: '基础功能访问权限'
+ }
+ ],
+ pagination: {
+ total: 3,
+ pageSize: 10,
+ current: 1
+ }
+};
+
+@connect(({ systemRole, loading }) => ({
+ systemRole,
+ loading: loading.models.systemRole
+}))
+export default class SystemRoleList extends React.Component {
+ state = {
+ selectedRows: [],
+ loading: false,
+ advancedFormVisible: false,
+ filterData: {},
+ pagination: {
+ pageSize: 10,
+ current: 1
+ },
+ tableData: mockData.list
+ };
+
+ componentDidMount() {
+ this.getRoleList();
+ }
+
+ // 获取角色列表
+ getRoleList = () => {
+ const { dispatch } = this.props;
+ const { pagination, filterData } = this.state;
+ this.setState({ loading: true });
+ dispatch({
+ type: 'systemRole/fetchList',
+ payload: {
+ pageNum: pagination.current,
+ pageSize: pagination.pageSize,
+ ...filterData
+ },
+ callback: (res) => {
+ this.setState({
+ loading: false,
+ tableData: res?.list || [],
+ pagination: {
+ ...pagination,
+ total: res?.total || 0
+ }
+ });
+ }
+ });
+ };
+
+ // 表格选择变化
+ handleSelectChange = (selectedRowKeys, selectedRows) => {
+ this.setState({ selectedRows });
+ };
+
+ // 分页变化
+ handleTableChange = (pagination) => {
+ this.setState({
+ pagination: {
+ ...this.state.pagination,
+ current: pagination.current
+ }
+ }, () => {
+ this.getRoleList();
+ });
+ };
+
+ // 新增角色
+ handleAdd = () => {
+ // 新增逻辑
+ message.success('新增角色功能');
+ };
+
+ // 编辑角色
+ handleEdit = (record) => {
+ // 编辑逻辑
+ message.success('编辑角色功能');
+ };
+
+ // 角色授权
+ handleAuth = (record) => {
+ // 授权逻辑
+ message.success('角色授权功能');
+ };
+
+ // 删除角色
+ handleDelete = (record) => {
+ confirm({
+ title: '确定要删除这个角色吗?',
+ icon: ,
+ onOk: () => {
+ // 删除逻辑
+ message.success('删除角色成功');
+ }
+ });
+ };
+
+ // 批量删除
+ handleBatchDelete = () => {
+ const { selectedRows } = this.state;
+ if (selectedRows.length === 0) {
+ message.warning('请选择要删除的角色');
+ return;
+ }
+ confirm({
+ title: `确定要删除选中的${selectedRows.length}个角色吗?`,
+ icon: ,
+ onOk: () => {
+ // 批量删除逻辑
+ message.success('批量删除角色成功');
+ }
+ });
+ };
+
+ // 启用/禁用角色
+ handleStatusChange = (record) => {
+ const newStatus = record.status === '1' ? '0' : '1';
+ confirm({
+ title: `确定要${newStatus === '1' ? '启用' : '禁用'}这个角色吗?`,
+ icon: ,
+ onOk: () => {
+ // 状态变更逻辑
+ message.success(`${newStatus === '1' ? '启用' : '禁用'}角色成功`);
+ }
+ });
+ };
+
+ render() {
+ const { selectedRows, loading, tableData, pagination } = this.state;
+
+ const columns = [
+ {
+ title: '角色名称',
+ dataIndex: 'name',
+ key: 'name',
+ ellipsis: true
+ },
+ {
+ title: '角色编码',
+ dataIndex: 'code',
+ key: 'code',
+ ellipsis: true
+ },
+ {
+ title: '角色类型',
+ dataIndex: 'type',
+ key: 'type',
+ render: text => formatDictText(role_type, text)
+ },
+ {
+ title: '状态',
+ dataIndex: 'status',
+ key: 'status',
+ render: text => (
+
+ {text === '1' ? '启用' : '禁用'}
+
+ )
+ },
+ {
+ title: '创建时间',
+ dataIndex: 'createTime',
+ key: 'createTime',
+ ellipsis: true
+ },
+ {
+ title: '创建人',
+ dataIndex: 'createUser',
+ key: 'createUser',
+ ellipsis: true
+ },
+ {
+ title: '备注',
+ dataIndex: 'remark',
+ key: 'remark',
+ ellipsis: true
+ },
+ {
+ title: '操作',
+ key: 'action',
+ fixed: 'right',
+ width: 200,
+ render: (_, record) => (
+
+ }
+ onClick={() => this.handleEdit(record)}
+ >
+ 编辑
+
+
+ }
+ onClick={() => this.handleDelete(record)}
+ >
+ 删除
+
+ this.handleStatusChange(record)}
+ />
+
+ )
+ }
+ ];
+
+ return (
+
+
+
+
+
角色配置
+
+
+ }
+ onClick={this.handleAdd}
+ >
+ 新增角色
+
+
+
+
+
+
+
+
+
+
+ );
+ }
+}
\ No newline at end of file
diff --git a/src/pages/systemRole/SystemRoleList.less b/src/pages/systemRole/SystemRoleList.less
new file mode 100644
index 0000000..9b7b87b
--- /dev/null
+++ b/src/pages/systemRole/SystemRoleList.less
@@ -0,0 +1,80 @@
+.header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 16px;
+}
+
+.headerLeft {
+ display: flex;
+ align-items: center;
+}
+
+.headerRight {
+ display: flex;
+ align-items: center;
+}
+
+.title {
+ margin: 0;
+ font-size: 18px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.filterSection {
+ margin-bottom: 16px;
+}
+
+.filterRow {
+ display: flex;
+ align-items: center;
+ margin-bottom: 12px;
+}
+
+.filterItem {
+ margin-right: 16px;
+}
+
+.actionButtons {
+ display: flex;
+ align-items: center;
+}
+
+.batchAction {
+ margin-right: 12px;
+}
+
+.formContainer {
+ padding: 24px;
+ background-color: #f5f5f5;
+}
+
+.formHeader {
+ margin-bottom: 16px;
+ padding-bottom: 8px;
+ border-bottom: 1px solid #e8e8e8;
+}
+
+.formTitle {
+ margin: 0;
+ font-size: 16px;
+ font-weight: 500;
+ color: rgba(0, 0, 0, 0.85);
+}
+
+.formContent {
+ background-color: #fff;
+ padding: 24px;
+ border-radius: 2px;
+}
+
+.formFooter {
+ display: flex;
+ justify-content: flex-end;
+ margin-top: 24px;
+}
+
+.formButton {
+ margin-left: 12px;
+}
\ No newline at end of file
diff --git a/src/pages/topnavbar/TopNavBar.js b/src/pages/topnavbar/TopNavBar.js
new file mode 100644
index 0000000..48f9c89
--- /dev/null
+++ b/src/pages/topnavbar/TopNavBar.js
@@ -0,0 +1,129 @@
+import React, { useState, useEffect } from 'react'
+import { history, Outlet, useModel, useDispatch, useLocation, matchRoutes } from '@umijs/max'
+import styles from './TopNavBar.less'
+import { Menu, Row, Col, Avatar, Dropdown, Button } from 'antd'
+import { HomeOutlined, SettingOutlined, LogoutOutlined } from '@ant-design/icons'
+import { getPageQuery } from '@/utils/utils'
+import Logo from '@/assets/logo.png'
+import { userInfo } from '@/utils/globalCommon'
+
+const menuItem = [
+ {
+ label: '安全管理基础信息',
+ key: '/topnavbar00/business/basicinformation',
+ },
+ {
+ label: '隐患排查',
+ key: '/topnavbar00/business/hiddentrouble',
+ },
+]
+
+const TopNavBar = (props) => {
+ const dispatch = useDispatch()
+ const { initialState: { menu }, setInitialState } = useModel('@@initialState')
+ // 测试时候放开启用本地菜单
+ window.dynamicRoute = menuItem
+ const dynamicRoute = window.dynamicRoute
+ const location = useLocation()
+ const pathName = location.pathname
+
+ const [activeKey, setActiveKey] = useState(pathName ?? '/topnavbar00/home')
+ const [menuItems, setMenuItems] = useState([])
+
+ useEffect(() => {
+ if (!dynamicRoute || dynamicRoute?.length === 0) return
+ let newList = []
+
+ if (dynamicRoute?.length) {
+ dynamicRoute?.map(item => {
+ newList.push({
+ key: item?.key,
+ label: item?.label,
+ icon: item?.icon
+ })
+ })
+
+ setActiveKey(newList?.filter(item => pathName.indexOf(item.key) !== -1)[0]?.key ?? '')
+ }
+
+ setMenuItems(newList)
+ }, [dynamicRoute])
+
+ const setRouteActive = value => {
+ const curKey = value.key
+ const activeKeys = menuItems?.filter(item => curKey.indexOf(item.key) !== -1)[0]?.key ?? ''
+
+ setActiveKey(activeKeys)
+ history.replace(curKey)
+ }
+
+ const loginOut = async () => {
+ // await outLogin()
+ const { redirect } = getPageQuery()
+
+ if (window.location.pathname !== '/login/login' && !redirect) {
+ history.replace({
+ pathname: '/login',
+ // search: stringify({
+ // redirect: window.location.href,
+ // }),
+ })
+
+ setInitialState({ currentUser: null, menu: null, menuMap: null })
+ window.dynamicRoute = null
+ localStorage.clear()
+ }
+ }
+
+ const handleMenuClick = (e) => {
+ switch (e.key) {
+ case 'logout':
+ loginOut()
+ break
+ default:
+ break
+ }
+ }
+
+ const dropDownMenuItems = [
+ {
+ label: <>退出登录>,
+ key: 'logout'
+ }
+ ]
+
+ const dropDownMenu = () => (
+
+ )
+
+ return (
+
+ {/*
+
+
+
+
+
+
*/}
+
+ {/*
+
+
*/}
+
+
+ )
+}
+
+export default TopNavBar
diff --git a/src/pages/topnavbar/TopNavBar.less b/src/pages/topnavbar/TopNavBar.less
new file mode 100644
index 0000000..cd4277d
--- /dev/null
+++ b/src/pages/topnavbar/TopNavBar.less
@@ -0,0 +1,56 @@
+.layoutContainer {
+ height: 100%;
+ background-color: #f0f2f5;
+
+ .tabBarHeader {
+ background-color: #fff;
+ padding: 0;
+ width: 100%;
+
+ .tabBarRow {
+ padding: 0 12px;
+
+ .tabBarLeft {
+ display: flex;
+ justify-content: space-between;
+ flex-wrap: nowrap;
+ align-items: center;
+
+ .leftLogo {
+ width: 36px;
+ height: 36px;
+ margin: 0 12px;
+ }
+
+ .leftMenu {
+ width: calc(100% - 52px);
+ }
+ }
+
+ .tabBarRight {
+ text-align: right;
+ display: flex;
+ justify-content: flex-end;
+ flex-wrap: nowrap;
+ align-items: center;
+
+ .tabBarRightAvaTor {
+ margin-right: 20px;
+ }
+
+ .tabBarRightName {
+ margin-right: 5px;
+ }
+
+ .tabBarRightBtn {
+ height: 100%;
+ }
+ }
+ }
+ }
+
+ .contentMain {
+ height: calc(100% - 46px);
+ overflow-y: hidden;
+ }
+}
diff --git a/src/services/api_baseinfodata.js b/src/services/api_baseinfodata.js
new file mode 100644
index 0000000..3180282
--- /dev/null
+++ b/src/services/api_baseinfodata.js
@@ -0,0 +1,142 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/get?${stringify(params)}`);
+}
+
+
+export async function insertForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForAa01(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function uploadSingleFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/aa01/uploadSingleFile`, {
+ method: 'POST',
+ data: params
+ });
+}
\ No newline at end of file
diff --git a/src/services/api_globaldata.js b/src/services/api_globaldata.js
new file mode 100644
index 0000000..e14dacc
--- /dev/null
+++ b/src/services/api_globaldata.js
@@ -0,0 +1,292 @@
+import { stringify } from 'qs';
+import {request} from '@umijs/max';
+import webpath from "@/utils/webPath";
+
+export async function queryPageForProUserData(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProDeptData(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function selectByPrimaryKeyForSystemNoticeFileForPDF(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/get?${stringify(params)}`);
+}
+
+export async function queryPageForFormBusinessProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/formbusinessproject/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProUserDataByWorkFlowId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/selectUserByProResourceWorkFlowId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getCascaderAreaTreeByParentid(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/getCascaderAreaTreeByParentid`, {
+ method: 'POST',
+ data:params,
+ });
+}
+
+export async function getProDeptTreeByParentidForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/getProDeptTreeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function updateDropNodeForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/updateDropNode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getProOrgTreeByParentidForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/getProOrgTreeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function updateDropNodeForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/updateDropNode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getAreaTreeByParentidForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/getAreaTreeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function updateDropNodeForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/updateDropNode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getProEbookArticleTypeTreeByParentidForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/getEbookArticleTypeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function updateDropNodeForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/updateDropNode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getB01UnitTreeByParentidForB01Unit(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/getB01UnitTreeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function updateDropNodeForB01Unit(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/updateDropNode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getAllByUserIdForFormBusinessProject(params = {}) {
+ // return request(`/${webpath.portalwebpath}/web/api/service/formbusinessproject/getAllByUserIdForFormBusinessProject`, {
+ return request(`/${webpath.portalwebpath}/web/api/service/formbusinessproject/getAll`, {
+ method: 'POST',
+ timeout: 0,
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getNoticesForSystemNoticeForWeb(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/getNotices`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllByProjNumberForFormFinanceInvoicing(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/formbusinesscontractreview/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForFormBusinessContractReview(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/formbusinesscontractreview/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForClientInformation(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/clientinformation/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForConferenceInformation(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/conferenceinformation/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function showActivitiTask(params = {}) {
+ return request(`/${webpath.workflowwebpath}/web/api/service/activiti/commonprocess/showActivitiTask`, {
+ method: 'POST',
+ data: params,
+ });
+}
+
+export async function searchForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/homepage/search`, {
+ method: 'POST',
+ data: params,
+ });
+}
+
+export async function getDictTreeByDictIds(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/gsdictitem/getDictTreeByDictIds`, {
+ method: 'POST',
+ data: params,
+ });
+}
+
+export async function updateDropNodeForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/updateDropNode`, {
+ method: 'POST',
+ data: params
+ })
+}
+
+export async function getProOrgTreeByLevelCodeForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/getProOrgTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function updateDropNodeForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/updateDropNode`, {
+ method: 'POST',
+ data: params
+ })
+}
+
+export async function getProMenuTreeByLevelCode(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/getProMenuTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getProMenuTreeByParentIdForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/getProMenuTreeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getProEbookArticleTypeTreeByParentid(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/getEbookArticleTypeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
diff --git a/src/services/api_uploadfile.js b/src/services/api_uploadfile.js
new file mode 100644
index 0000000..b018547
--- /dev/null
+++ b/src/services/api_uploadfile.js
@@ -0,0 +1,18 @@
+import { stringify } from 'qs'
+import { request } from '@umijs/max'
+import webpath from '@/utils/webPath'
+
+export async function uploadSingleFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/uploading/uploadSingleFile`, {
+ method: 'POST',
+ data: params,
+ timeout: 120000
+ })
+}
+
+export async function downloadFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/uploading/download?${stringify(params)}`, {
+ responseType: 'blob',
+ getResponse: true
+ })
+}
diff --git a/src/services/auth/api_probaseresauth.js b/src/services/auth/api_probaseresauth.js
new file mode 100644
index 0000000..1218b9c
--- /dev/null
+++ b/src/services/auth/api_probaseresauth.js
@@ -0,0 +1,195 @@
+import { stringify } from 'qs'
+import { request } from '@umijs/max'
+import webpath from '@/utils/webPath'
+
+export async function deleteByPrimaryKeyForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/delete?${stringify(params)}`)
+}
+
+export async function selectByPrimaryKeyForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/get?${stringify(params)}`)
+}
+
+export async function insertForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function updateForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function deleteByMapForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateByMapForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getOneForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getAllForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function queryPageForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function countForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function insertBatchForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function deleteBatchForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateBatchForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getProResourceTreeByLevelCode(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/getProResourceTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getAllProResourceTreeByAuthID(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/getAllProResourceTreeByAuthID`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getPageAuthByProResourceTreeId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/getPageAuthByProResourceTreeId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function queryPageForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function insertForProRes(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function updateForProRes(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function deleteByPrimaryKeyForProRes(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/delete?${stringify(params)}`)
+}
+
+export async function updateChangeTargetNodeWithSourceNodeForProResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/updateChangeTargetNodeWithSourceNodeForProResource`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
diff --git a/src/services/auth/api_progroupauth.js b/src/services/auth/api_progroupauth.js
new file mode 100644
index 0000000..2886821
--- /dev/null
+++ b/src/services/auth/api_progroupauth.js
@@ -0,0 +1,184 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/get?${stringify(params)}`);
+}
+
+
+export async function insertForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProGroupAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function queryPageForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getPageProAuthorityByGroupId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/getPageProAuthorityByGroupId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProAuthChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProAuthChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedProAuthByGroupId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroupauth/getSelectedProAuthorityByGroupId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/auth/api_promenuauth.js b/src/services/auth/api_promenuauth.js
new file mode 100644
index 0000000..f3269b6
--- /dev/null
+++ b/src/services/auth/api_promenuauth.js
@@ -0,0 +1,205 @@
+import { stringify } from 'qs'
+import { request } from '@umijs/max'
+import webpath from '@/utils/webPath'
+
+export async function deleteByPrimaryKeyForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/delete?${stringify(params)}`)
+}
+
+export async function selectByPrimaryKeyForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/get?${stringify(params)}`)
+}
+
+export async function insertForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function updateForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function deleteByMapForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateByMapForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getOneForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getAllForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function queryPageForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function countForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function insertBatchForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function deleteBatchForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateBatchForProMenuAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getAllMenuTreeByAuthID(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/getAllMenuTreeByAuthID`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getProMenuTreeByLevelCode(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/getProMenuTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getPageAuthByMenuTreeId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/getPageAuthByMenuTreeId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function queryPageForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function insertForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function updateForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function deleteByPrimaryKeyForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/delete?${stringify(params)}`)
+}
+
+export async function updateChangeTargetNodeWithSourceNodeForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenuauth/updateChangeTargetNodeWithSourceNodeForProMenu`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getAllForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
diff --git a/src/services/auth/api_proresauth.js b/src/services/auth/api_proresauth.js
new file mode 100644
index 0000000..3114125
--- /dev/null
+++ b/src/services/auth/api_proresauth.js
@@ -0,0 +1,205 @@
+import { stringify } from 'qs'
+import { request } from '@umijs/max'
+import webpath from '@/utils/webPath'
+
+export async function deleteByPrimaryKeyForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/delete?${stringify(params)}`)
+}
+
+export async function selectByPrimaryKeyForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/get?${stringify(params)}`)
+}
+
+export async function insertForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function updateForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function deleteByMapForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateByMapForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getOneForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getAllForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function queryPageForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function countForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function insertBatchForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function deleteBatchForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateBatchForProResAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getProResourceTreeByLevelCode(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/getProResourceTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getAllProResourceTreeByAuthID(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/getAllProResourceTreeByAuthID`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getPageAuthByProResourceTreeId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/getPageAuthByProResourceTreeId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function queryPageForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function insertForProRes(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function updateForProRes(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function deleteByPrimaryKeyForProRes(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/delete?${stringify(params)}`)
+}
+
+export async function updateChangeTargetNodeWithSourceNodeForProResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresauth/updateChangeTargetNodeWithSourceNodeForProResource`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getAllForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
diff --git a/src/services/auth/api_prosystemauth.js b/src/services/auth/api_prosystemauth.js
new file mode 100644
index 0000000..40338b2
--- /dev/null
+++ b/src/services/auth/api_prosystemauth.js
@@ -0,0 +1,185 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/get?${stringify(params)}`);
+}
+
+
+export async function insertForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProSystemAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function queryPageForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getPageProSystemByAuthId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/getPageProSystemByAuthId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProSystemChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProSystemChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedProSystemByAuthId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystemauth/getSelectedProSystemByAuthId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
diff --git a/src/services/auth/api_protabcolumnauth.js b/src/services/auth/api_protabcolumnauth.js
new file mode 100644
index 0000000..7c4b406
--- /dev/null
+++ b/src/services/auth/api_protabcolumnauth.js
@@ -0,0 +1,186 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/get?${stringify(params)}`);
+}
+
+
+export async function insertForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProTabColumnAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getPageProTableColumnsByAuthId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/getPageProTableColumnsByAuthId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProTableColumnChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProTableColumnChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedProTableColumnByAuthId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protabcolumnauth/getSelectedProTableColumnsByAuthId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
diff --git a/src/services/auth/api_protableauth.js b/src/services/auth/api_protableauth.js
new file mode 100644
index 0000000..7d33d62
--- /dev/null
+++ b/src/services/auth/api_protableauth.js
@@ -0,0 +1,184 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/get?${stringify(params)}`);
+}
+
+
+export async function insertForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProTableAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getPageProTablesByAuthId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/getPageProTablesByAuthId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+export async function queryPageForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProTableChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProTableChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedProTableByAuthId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protableauth/getSelectedProTablesByAuthId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/auth/api_prouserauth.js b/src/services/auth/api_prouserauth.js
new file mode 100644
index 0000000..e107801
--- /dev/null
+++ b/src/services/auth/api_prouserauth.js
@@ -0,0 +1,185 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/get?${stringify(params)}`);
+}
+
+
+export async function insertForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProUserAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getPageProUserByAuthId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/getPageProUserByAuthId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+export async function queryPageForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProUserChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProUserChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ timeout: 0
+ });
+}
+
+export async function getSelectedProUserByAuthId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserauth/getSelectedProUserByAuthId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/auth/api_prouserdept.js b/src/services/auth/api_prouserdept.js
new file mode 100644
index 0000000..8aa5695
--- /dev/null
+++ b/src/services/auth/api_prouserdept.js
@@ -0,0 +1,178 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/get?${stringify(params)}`);
+}
+
+
+export async function insertForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+export async function updateForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function deleteByMapForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+export async function updateByMapForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getOneForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function getAllForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function countForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userprodept/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+export async function deleteBatchForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+export async function updateBatchForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserprodept/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getProDeptTreeByLevelCodeForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/getProDeptTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+export async function getPageProUserByDeptCodeForProUserDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/getPageProUserByDeptCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function deleteByPrimaryKeyForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/delete?${stringify(params)}`);
+}
+
+export async function queryPageForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/auth/api_prousergroup.js b/src/services/auth/api_prousergroup.js
new file mode 100644
index 0000000..1c61a58
--- /dev/null
+++ b/src/services/auth/api_prousergroup.js
@@ -0,0 +1,186 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/get?${stringify(params)}`);
+}
+
+
+export async function insertForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProUserGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getPageProUserByGroupId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/getPageProUserByGroupId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProUserChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/queryPage`, {
+ method: 'POST',
+ timeout: 0,
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProUserChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/getAll`, {
+ method: 'POST',
+ timeout: 0,
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedProUserByGroupId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergroup/getSelectedProUserByGroupId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/auth/api_prouserorgan.js b/src/services/auth/api_prouserorgan.js
new file mode 100644
index 0000000..10b1c06
--- /dev/null
+++ b/src/services/auth/api_prouserorgan.js
@@ -0,0 +1,191 @@
+import { stringify } from 'qs';
+import {request} from '@umijs/max';
+
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/delete?${stringify(params)}`);
+}
+
+export async function selectByPrimaryKeyForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/get?${stringify(params)}`);
+}
+
+
+export async function insertForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+export async function updateForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+export async function updateByMapForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function getAllForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function countForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+export async function deleteBatchForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+export async function updateBatchForProUserOrgan(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/userorgan/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getProOrgTreeByLevelCodeForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/getProOrgTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getPageProOrgByOrgCodeForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/getPageProOrgByOrgCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function deleteByPrimaryKeyForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/delete?${stringify(params)}`);
+}
+
+export async function queryPageForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageUserOrgForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/queryPageUserOrg`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/auth/api_prouserproject.js b/src/services/auth/api_prouserproject.js
new file mode 100644
index 0000000..c2be27b
--- /dev/null
+++ b/src/services/auth/api_prouserproject.js
@@ -0,0 +1,184 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/get?${stringify(params)}`);
+}
+
+
+export async function insertForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProUserProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getPageProUserByProjectId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/getPageProUserByProjectId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+export async function queryPageForProFormBusinessProject(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/formbusinessproject/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProUserChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProUserChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedProUserByProjectId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserproject/getSelectedProUserByProjectId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/auth/api_prouserunit.js b/src/services/auth/api_prouserunit.js
new file mode 100644
index 0000000..fde3ee4
--- /dev/null
+++ b/src/services/auth/api_prouserunit.js
@@ -0,0 +1,144 @@
+import { stringify } from 'qs';
+import {request} from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/get?${stringify(params)}`);
+}
+
+
+export async function insertForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForB01TUnitBaseInfo(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01tunitbaseinfo/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function queryPageForB01ProUserAuth(params = {}) {
+ return request(`/${webpath.gabwebpath}/web/api/service/b01prouserauth/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/auth/api_prowkresauth.js b/src/services/auth/api_prowkresauth.js
new file mode 100644
index 0000000..8ff6f57
--- /dev/null
+++ b/src/services/auth/api_prowkresauth.js
@@ -0,0 +1,212 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/get?${stringify(params)}`);
+}
+
+
+export async function insertForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+
+export async function deleteBatchForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getProResourceWorkflowTreeByLevelCode(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/getProResourceWorkflowTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllProResourceWorkflowTreeByAuthID(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/getAllProResourceWorkflowTreeByAuthID`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProWkresAuth(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+export async function getPageAuthByProResourceWorkflowTreeId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/getPageAuthByProResourceWorkflowTreeId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertForProWkRes(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+export async function updateForProWkRes(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function deleteByPrimaryKeyForProWkRes(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/delete?${stringify(params)}`);
+}
+
+
+export async function updateChangeTargetNodeWithSourceNodeForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prowkresauth/updateChangeTargetNodeWithSourceNodeForProResourceWorkflow`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
diff --git a/src/services/business/api_bjlsbj.js b/src/services/business/api_bjlsbj.js
new file mode 100644
index 0000000..7580c2a
--- /dev/null
+++ b/src/services/business/api_bjlsbj.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/get?${stringify(params)}`);
+}
+
+
+export async function insertForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForBjLsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjlsbj/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_bjssbj.js b/src/services/business/api_bjssbj.js
new file mode 100644
index 0000000..520a952
--- /dev/null
+++ b/src/services/business/api_bjssbj.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/get?${stringify(params)}`);
+}
+
+
+export async function insertForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForBjSsbj(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/bjssbj/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_businessoperlog.js b/src/services/business/api_businessoperlog.js
new file mode 100644
index 0000000..ac3a5ec
--- /dev/null
+++ b/src/services/business/api_businessoperlog.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/get?${stringify(params)}`);
+}
+
+
+export async function insertForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProOperlog(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prooperlog/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_cixdc.js b/src/services/business/api_cixdc.js
new file mode 100644
index 0000000..9adda7b
--- /dev/null
+++ b/src/services/business/api_cixdc.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/get?${stringify(params)}`);
+}
+
+
+export async function insertForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForCiXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cixdc/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_cjgfb.js b/src/services/business/api_cjgfb.js
new file mode 100644
index 0000000..478ad3f
--- /dev/null
+++ b/src/services/business/api_cjgfb.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/get?${stringify(params)}`);
+}
+
+
+export async function insertForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForCjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjgfb/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_cjnbq.js b/src/services/business/api_cjnbq.js
new file mode 100644
index 0000000..dfa92dc
--- /dev/null
+++ b/src/services/business/api_cjnbq.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/get?${stringify(params)}`);
+}
+
+
+export async function insertForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForCjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjnbq/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_cjrfkt.js b/src/services/business/api_cjrfkt.js
new file mode 100644
index 0000000..58ed4d9
--- /dev/null
+++ b/src/services/business/api_cjrfkt.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/get?${stringify(params)}`);
+}
+
+
+export async function insertForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForCjRfkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjrfkt/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_cjtblname.js b/src/services/business/api_cjtblname.js
new file mode 100644
index 0000000..587671d
--- /dev/null
+++ b/src/services/business/api_cjtblname.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/get?${stringify(params)}`);
+}
+
+
+export async function insertForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForCjTblName(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtblname/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_cjtime.js b/src/services/business/api_cjtime.js
new file mode 100644
index 0000000..045d0fd
--- /dev/null
+++ b/src/services/business/api_cjtime.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/get?${stringify(params)}`);
+}
+
+
+export async function insertForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForCjTime(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/cjtime/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_gfb.js b/src/services/business/api_gfb.js
new file mode 100644
index 0000000..65166d1
--- /dev/null
+++ b/src/services/business/api_gfb.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/get?${stringify(params)}`);
+}
+
+
+export async function insertForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/gfb/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_nbq.js b/src/services/business/api_nbq.js
new file mode 100644
index 0000000..4ced80a
--- /dev/null
+++ b/src/services/business/api_nbq.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/get?${stringify(params)}`);
+}
+
+
+export async function insertForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/nbq/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_rbkt.js b/src/services/business/api_rbkt.js
new file mode 100644
index 0000000..3561b55
--- /dev/null
+++ b/src/services/business/api_rbkt.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/get?${stringify(params)}`);
+}
+
+
+export async function insertForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/rbkt/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_tjgfb.js b/src/services/business/api_tjgfb.js
new file mode 100644
index 0000000..2aa33f7
--- /dev/null
+++ b/src/services/business/api_tjgfb.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/get?${stringify(params)}`);
+}
+
+
+export async function insertForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForTjGfb(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjgfb/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_tjnbq.js b/src/services/business/api_tjnbq.js
new file mode 100644
index 0000000..7f59182
--- /dev/null
+++ b/src/services/business/api_tjnbq.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/get?${stringify(params)}`);
+}
+
+
+export async function insertForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForTjNbq(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjnbq/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_tjrbkt.js b/src/services/business/api_tjrbkt.js
new file mode 100644
index 0000000..5c5dd99
--- /dev/null
+++ b/src/services/business/api_tjrbkt.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/get?${stringify(params)}`);
+}
+
+
+export async function insertForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForTjRbkt(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjrbkt/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_tjxdc.js b/src/services/business/api_tjxdc.js
new file mode 100644
index 0000000..835d138
--- /dev/null
+++ b/src/services/business/api_tjxdc.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/get?${stringify(params)}`);
+}
+
+
+export async function insertForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForTjXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/tjxdc/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_xdc.js b/src/services/business/api_xdc.js
new file mode 100644
index 0000000..cf25467
--- /dev/null
+++ b/src/services/business/api_xdc.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/get?${stringify(params)}`);
+}
+
+
+export async function insertForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForXdc(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/xdc/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/business/api_yjgz.js b/src/services/business/api_yjgz.js
new file mode 100644
index 0000000..af387e0
--- /dev/null
+++ b/src/services/business/api_yjgz.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/get?${stringify(params)}`);
+}
+
+
+export async function insertForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForYjgz(params = {}) {
+ return request(`/${webpath.zngfserverpath}/web/api/service/yjgz/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
\ No newline at end of file
diff --git a/src/services/system/api_accountcenter.js b/src/services/system/api_accountcenter.js
new file mode 100644
index 0000000..f027ff4
--- /dev/null
+++ b/src/services/system/api_accountcenter.js
@@ -0,0 +1,18 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+export async function queryCurrent(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/auth/currentUser`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'query',
+ },
+ });
+}
+export async function queryFakeList(params) {
+ return request(`/${webpath.portalwebpath}/web/api/service/accountcenter/fake_list`, {
+ params,
+ });
+}
diff --git a/src/services/system/api_accountsettings.js b/src/services/system/api_accountsettings.js
new file mode 100644
index 0000000..6c87894
--- /dev/null
+++ b/src/services/system/api_accountsettings.js
@@ -0,0 +1,64 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+export async function queryCurrent(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/auth/currentUser`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'query',
+ },
+ });
+}
+export async function queryProvince(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/getAreaTreeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+export async function queryCity(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/getAreaTreeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+export async function query() {
+ return request(`/${webpath.portalwebpath}/web/api/service/accountsettings/users`);
+}
+
+export async function updateForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function sendCode(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/sendCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'query',
+ },
+ });
+}
+
+export async function verifyCode(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/verifyCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'query',
+ },
+ });
+}
diff --git a/src/services/system/api_actgroup.js b/src/services/system/api_actgroup.js
new file mode 100644
index 0000000..8c21e3f
--- /dev/null
+++ b/src/services/system/api_actgroup.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/get?${stringify(params)}`);
+}
+
+
+export async function insertForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_actgroupuser.js b/src/services/system/api_actgroupuser.js
new file mode 100644
index 0000000..3e2f15d
--- /dev/null
+++ b/src/services/system/api_actgroupuser.js
@@ -0,0 +1,175 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/get?${stringify(params)}`);
+}
+
+
+export async function insertForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForActGroupUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function queryPageForActGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getPageProUserByGroupId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/getPageProUserByGroupId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProUserChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/getAll`, {
+ method: 'POST',
+ timeout: 0,
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedProUserByGroupId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroupuser/getSelectedProUserByGroupId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/system/api_actresource.js b/src/services/system/api_actresource.js
new file mode 100644
index 0000000..27a5819
--- /dev/null
+++ b/src/services/system/api_actresource.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/get?${stringify(params)}`);
+}
+
+
+export async function insertForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForActResource(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actresource/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_actroles.js b/src/services/system/api_actroles.js
new file mode 100644
index 0000000..35acbc4
--- /dev/null
+++ b/src/services/system/api_actroles.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/get?${stringify(params)}`);
+}
+
+
+export async function insertForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_actrolesgroup.js b/src/services/system/api_actrolesgroup.js
new file mode 100644
index 0000000..2d2a72a
--- /dev/null
+++ b/src/services/system/api_actrolesgroup.js
@@ -0,0 +1,175 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/get?${stringify(params)}`);
+}
+
+
+export async function insertForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForActRolesGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function queryPageForActRoles(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actroles/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getPageGroupByRolesId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/getPageGroupByRolesId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForGroupChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actgroup/getAll`, {
+ method: 'POST',
+ timeout: 0,
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedGroupByRolesId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/actrolesgroup/getSelectedGroupByRolesId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/system/api_area.js b/src/services/system/api_area.js
new file mode 100644
index 0000000..43088cf
--- /dev/null
+++ b/src/services/system/api_area.js
@@ -0,0 +1,149 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/get?${stringify(params)}`);
+}
+
+
+export async function insertForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+
+
+
+export async function getAreaTreeByParentidForArea(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/area/getAreaTreeByParentid`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
diff --git a/src/services/system/api_audiovideo.js b/src/services/system/api_audiovideo.js
new file mode 100644
index 0000000..93e2e30
--- /dev/null
+++ b/src/services/system/api_audiovideo.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/get?${stringify(params)}`);
+}
+
+
+export async function insertForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForAudioVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/audiovideo/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_carouseladv.js b/src/services/system/api_carouseladv.js
new file mode 100644
index 0000000..9ce945e
--- /dev/null
+++ b/src/services/system/api_carouseladv.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/get?${stringify(params)}`);
+}
+
+
+export async function insertForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForCarouselAdv(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/carouseladv/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_crawlersite.js b/src/services/system/api_crawlersite.js
new file mode 100644
index 0000000..d62f6a7
--- /dev/null
+++ b/src/services/system/api_crawlersite.js
@@ -0,0 +1,144 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/get?${stringify(params)}`);
+}
+
+
+export async function insertForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getCrawlWebInfoByIdForCrawlerSite(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/crawlersite/getCrawlWebInfoById`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_ebookarticle.js b/src/services/system/api_ebookarticle.js
new file mode 100644
index 0000000..cdf1785
--- /dev/null
+++ b/src/services/system/api_ebookarticle.js
@@ -0,0 +1,138 @@
+import { stringify } from 'qs'
+import { request } from '@umijs/max'
+import webpath from '@/utils/webPath'
+
+export async function deleteByPrimaryKeyForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/delete?${stringify(params)}`)
+}
+
+export async function selectByPrimaryKeyForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/get?${stringify(params)}`)
+}
+
+export async function insertForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function updateForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function deleteByMapForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateByMapForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getOneForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getAllForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function queryPageForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function countForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function insertBatchForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function deleteBatchForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateBatchForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function uploadSingleForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/uploadSingleForEbookArticle`, {
+ method: 'POST',
+ data: params.formdata
+ })
+}
+
+export async function updateArticleStateById(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/updateArticleStateById`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
diff --git a/src/services/system/api_ebookarticlephotos.js b/src/services/system/api_ebookarticlephotos.js
new file mode 100644
index 0000000..b1330f0
--- /dev/null
+++ b/src/services/system/api_ebookarticlephotos.js
@@ -0,0 +1,131 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/get?${stringify(params)}`);
+}
+
+
+export async function insertForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/deleteBatch`, {
+ method: 'POST',
+ data: params,
+ });
+}
+
+
+export async function updateBatchForEbookArticlePhotos(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticlephotos/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_ebookarticlesearch.js b/src/services/system/api_ebookarticlesearch.js
new file mode 100644
index 0000000..1fb35cf
--- /dev/null
+++ b/src/services/system/api_ebookarticlesearch.js
@@ -0,0 +1,192 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/delete?${stringify(params)}`);
+}
+
+export async function selectByPrimaryKeyForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/get?${stringify(params)}`);
+}
+
+
+export async function insertForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+export async function updateForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+export async function updateByMapForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function getAllForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function countForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+export async function deleteBatchForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+export async function updateBatchForEbookArticleSearch(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getProEbookArticleTypeTreeByLevelCodeForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/getProEbookArticleTypeTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getPageProEbookArticleByEbookArticleTreeCodeForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/getPageProEbookArticleByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function queryPageForEbookArticle(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticle/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertForProEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function deleteByPrimaryKeyForProEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/delete?${stringify(params)}`);
+}
+
+export async function queryPageForProEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
diff --git a/src/services/system/api_ebookarticletxt.js b/src/services/system/api_ebookarticletxt.js
new file mode 100644
index 0000000..b163eb1
--- /dev/null
+++ b/src/services/system/api_ebookarticletxt.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/get?${stringify(params)}`);
+}
+
+
+export async function insertForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForEbookArticleTxt(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletxt/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_ebookarticletype.js b/src/services/system/api_ebookarticletype.js
new file mode 100644
index 0000000..b21e2d6
--- /dev/null
+++ b/src/services/system/api_ebookarticletype.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/get?${stringify(params)}`);
+}
+
+
+export async function insertForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForEbookArticleType(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/ebookarticletype/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_homepage.js b/src/services/system/api_homepage.js
new file mode 100644
index 0000000..69a7034
--- /dev/null
+++ b/src/services/system/api_homepage.js
@@ -0,0 +1,48 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function getNewTopForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/homepage/getNewTop`, {
+ method: 'POST',
+ data:params,
+ });
+}
+
+export async function getNoticeTopForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/homepage/getNoticeTop`, {
+ method: 'POST',
+ data:params,
+ });
+}
+
+export async function getProjectTopForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/formbusinessproject/getProjectTop`, {
+ method: 'POST',
+ data:params,
+ });
+}
+
+export async function getApprovalTopForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/homepage/getApprovalTop`, {
+ method: 'POST',
+ data:params,
+ });
+}
+
+export async function getFinanceMessageForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/formadministrationhead/getFinanceMessage`);
+}
+
+export async function getCheckWorkAttendanceForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/formadministrationhead/getCheckWorkAttendance`);
+}
+
+export async function getPersonFinanceForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/formadministrationhead/getPersonFinance?${stringify(params)}`);
+}
+
+export async function getWeatherForHomePage(params = {}) {
+ return request(`/${webpath.homeWeatherPath}/v3/weather/weatherInfo?${stringify(params)}`);
+}
diff --git a/src/services/system/api_homepageadmin.js b/src/services/system/api_homepageadmin.js
new file mode 100644
index 0000000..522148d
--- /dev/null
+++ b/src/services/system/api_homepageadmin.js
@@ -0,0 +1,36 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function getNewTopForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/homepage/getNewTop`, {
+ method: 'POST',
+ data:params,
+ });
+}
+
+export async function getNoticeTopForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/homepage/getNoticeTop`, {
+ method: 'POST',
+ data:params,
+ });
+}
+
+export async function getProjectTopForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/basicproject/getProjectTop`, {
+ method: 'POST',
+ data:params,
+ });
+}
+
+export async function getApprovalTopForHomePage(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/homepage/getApprovalTop`, {
+ method: 'POST',
+ data:params,
+ });
+}
+
+export async function getWeatherForHomePage(params = {}) {
+ return request(`/${webpath.homeWeatherPath}/v3/weather/weatherInfo?${stringify(params)}`);
+}
diff --git a/src/services/system/api_login.js b/src/services/system/api_login.js
new file mode 100644
index 0000000..f3d3ea1
--- /dev/null
+++ b/src/services/system/api_login.js
@@ -0,0 +1,23 @@
+import { stringify } from 'qs'
+import { request } from '@umijs/max'
+import webpath from '@/utils/webPath'
+
+export async function loginUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/auth/login`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function logOutUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/auth/logout`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
diff --git a/src/services/system/api_proauthority.js b/src/services/system/api_proauthority.js
new file mode 100644
index 0000000..c02b1da
--- /dev/null
+++ b/src/services/system/api_proauthority.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/get?${stringify(params)}`);
+}
+
+
+export async function insertForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProAuthority(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proauthority/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_prodept.js b/src/services/system/api_prodept.js
new file mode 100644
index 0000000..8a9df26
--- /dev/null
+++ b/src/services/system/api_prodept.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/get?${stringify(params)}`);
+}
+
+
+export async function insertForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProDept(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodept/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_prodictionarys.js b/src/services/system/api_prodictionarys.js
new file mode 100644
index 0000000..0fab0da
--- /dev/null
+++ b/src/services/system/api_prodictionarys.js
@@ -0,0 +1,152 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/get?${stringify(params)}`);
+}
+
+
+export async function insertForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function selectByDicTypeForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/queryDicBytype`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function selectByIdListForProDictionarys(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prodictionarys/selectByIdList`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/system/api_progroup.js b/src/services/system/api_progroup.js
new file mode 100644
index 0000000..f08823c
--- /dev/null
+++ b/src/services/system/api_progroup.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/get?${stringify(params)}`);
+}
+
+
+export async function insertForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProGroup(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/progroup/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_promenu.js b/src/services/system/api_promenu.js
new file mode 100644
index 0000000..f7c5e4f
--- /dev/null
+++ b/src/services/system/api_promenu.js
@@ -0,0 +1,146 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/get?${stringify(params)}`);
+}
+
+
+export async function insertForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getAllForProMenuByUserId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/promenu/getAllForProMenuByUserId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'query',
+ },
+ timeout: 0
+ });
+}
diff --git a/src/services/system/api_proonline.js b/src/services/system/api_proonline.js
new file mode 100644
index 0000000..3426183
--- /dev/null
+++ b/src/services/system/api_proonline.js
@@ -0,0 +1,18 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+export async function deleteByPrimaryKeyForProOnline(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proonline/delete?${stringify(params)}`);
+}
+
+export async function queryPageForProOnline(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proonline/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
diff --git a/src/services/system/api_proorg.js b/src/services/system/api_proorg.js
new file mode 100644
index 0000000..4f423a9
--- /dev/null
+++ b/src/services/system/api_proorg.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/get?${stringify(params)}`);
+}
+
+
+export async function insertForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_proresourceaction.js b/src/services/system/api_proresourceaction.js
new file mode 100644
index 0000000..c5fbf4e
--- /dev/null
+++ b/src/services/system/api_proresourceaction.js
@@ -0,0 +1,145 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/get?${stringify(params)}`);
+}
+
+
+export async function insertForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProResourceAction(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getAllForProResourceActionByUserId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceaction/getAllForProResourceActionByUserId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'query',
+ },
+ timeout: 0
+ });
+}
diff --git a/src/services/system/api_proresourcemonitor.js b/src/services/system/api_proresourcemonitor.js
new file mode 100644
index 0000000..9c19835
--- /dev/null
+++ b/src/services/system/api_proresourcemonitor.js
@@ -0,0 +1,9 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+export async function getAllForProResourceMonitor(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/os/server`, {
+ method: 'POST',
+ });
+}
diff --git a/src/services/system/api_proresourceworkflow.js b/src/services/system/api_proresourceworkflow.js
new file mode 100644
index 0000000..49647c3
--- /dev/null
+++ b/src/services/system/api_proresourceworkflow.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/get?${stringify(params)}`);
+}
+
+
+export async function insertForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProResourceWorkflow(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proresourceworkflow/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_prosystem.js b/src/services/system/api_prosystem.js
new file mode 100644
index 0000000..b778663
--- /dev/null
+++ b/src/services/system/api_prosystem.js
@@ -0,0 +1,121 @@
+import { stringify } from 'qs'
+import { request } from '@umijs/max'
+import webpath from '@/utils/webPath'
+
+export async function deleteByPrimaryKeyForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/delete?${stringify(params)}`)
+}
+
+export async function selectByPrimaryKeyForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/get?${stringify(params)}`)
+}
+
+export async function insertForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function updateForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function deleteByMapForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateByMapForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
+
+export async function getOneForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function getAllForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function queryPageForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function countForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch'
+ }
+ })
+}
+
+export async function insertBatchForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert'
+ }
+ })
+}
+
+export async function deleteBatchForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete'
+ }
+ })
+}
+
+export async function updateBatchForProSystem(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prosystem/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update'
+ }
+ })
+}
diff --git a/src/services/system/api_protablecolumns.js b/src/services/system/api_protablecolumns.js
new file mode 100644
index 0000000..d83a863
--- /dev/null
+++ b/src/services/system/api_protablecolumns.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/get?${stringify(params)}`);
+}
+
+
+export async function insertForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProTableColumns(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protablecolumns/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_protables.js b/src/services/system/api_protables.js
new file mode 100644
index 0000000..887094b
--- /dev/null
+++ b/src/services/system/api_protables.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/get?${stringify(params)}`);
+}
+
+
+export async function insertForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProTables(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protables/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_protenant.js b/src/services/system/api_protenant.js
new file mode 100644
index 0000000..c1234f7
--- /dev/null
+++ b/src/services/system/api_protenant.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from 'umi';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/get?${stringify(params)}`);
+}
+
+
+export async function insertForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProTenant(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/protenant/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_prouser.js b/src/services/system/api_prouser.js
new file mode 100644
index 0000000..ea2e854
--- /dev/null
+++ b/src/services/system/api_prouser.js
@@ -0,0 +1,144 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/get?${stringify(params)}`);
+}
+
+
+export async function insertForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function resetPwdForProUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/resetPwd`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_prousergeographic.js b/src/services/system/api_prousergeographic.js
new file mode 100644
index 0000000..e2a46c6
--- /dev/null
+++ b/src/services/system/api_prousergeographic.js
@@ -0,0 +1,156 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/get?${stringify(params)}`);
+}
+
+
+export async function insertForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProUserGeographic(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+
+
+export async function getProvincesCitiesCountie(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/getProvincesCitiesCountie`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+//export async function getProvincesCitiesCountie(params = {}) {
+// return request(`/${webpath.portalwebpath}/web/api/service/prousergeographic/getProvincesCitiesCountie`, {
+// method: 'POST',
+// data: {
+// ...params,
+// method: 'fetch',
+// },
+// });
+//}
diff --git a/src/services/system/api_prouserorg.js b/src/services/system/api_prouserorg.js
new file mode 100644
index 0000000..66b505d
--- /dev/null
+++ b/src/services/system/api_prouserorg.js
@@ -0,0 +1,210 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/get?${stringify(params)}`);
+}
+
+
+export async function insertForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProUserOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getProOrgTreeByLevelCodeForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/getProOrgTreeByLevelCode`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getAllForProUserChild(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouser/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedProUserByAuthId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/getSelectedProUserByOrgId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getPageProUserByOrgId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/getPageProUserByOrgId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getSelectedProOrgByUserId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prouserorg/getSelectedProOrgByUserId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+export async function updateForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function deleteByPrimaryKeyForProOrg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/proorg/delete?${stringify(params)}`);
+}
+
+
diff --git a/src/services/system/api_prousertags.js b/src/services/system/api_prousertags.js
new file mode 100644
index 0000000..e0a3fe9
--- /dev/null
+++ b/src/services/system/api_prousertags.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/get?${stringify(params)}`);
+}
+
+
+export async function insertForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForProUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/prousertags/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_systemnotice.js b/src/services/system/api_systemnotice.js
new file mode 100644
index 0000000..71f2d1f
--- /dev/null
+++ b/src/services/system/api_systemnotice.js
@@ -0,0 +1,131 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/get?${stringify(params)}`);
+}
+
+
+export async function insertForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/deleteBatch`, {
+ method: 'POST',
+ data: params,
+ });
+}
+
+
+export async function updateBatchForSystemNotice(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnotice/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_systemnoticefile.js b/src/services/system/api_systemnoticefile.js
new file mode 100644
index 0000000..9615db4
--- /dev/null
+++ b/src/services/system/api_systemnoticefile.js
@@ -0,0 +1,131 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/get?${stringify(params)}`);
+}
+
+
+export async function insertForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/deleteBatch`, {
+ method: 'POST',
+ data: params,
+ });
+}
+
+
+export async function updateBatchForSystemNoticeFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/systemnoticefile/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_testuser.js b/src/services/system/api_testuser.js
new file mode 100644
index 0000000..439693d
--- /dev/null
+++ b/src/services/system/api_testuser.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/get?${stringify(params)}`);
+}
+
+
+export async function insertForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForTestUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/testuser/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_wordfile.js b/src/services/system/api_wordfile.js
new file mode 100644
index 0000000..5f01ae1
--- /dev/null
+++ b/src/services/system/api_wordfile.js
@@ -0,0 +1,189 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/get?${stringify(params)}`);
+}
+
+
+export async function insertForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForWordFile(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+// 获取新建文件模版地址
+export async function getCreateFilePathForWps(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/createTemplateFile`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+// 获取新建文件模版地址
+export async function getViewUrlDbPathForWps(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/getViewUrlDbPath`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+// 获取web预览文件地址
+export async function getViewUrlWebPathForWps(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/getViewUrlWebPath`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+// 获取转换文件
+export async function convertForWps(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/convert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+// 获取转换文件
+export async function getConvertForWps(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfile/getConvert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/system/api_wordfileuser.js b/src/services/system/api_wordfileuser.js
new file mode 100644
index 0000000..dcbfbec
--- /dev/null
+++ b/src/services/system/api_wordfileuser.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/get?${stringify(params)}`);
+}
+
+
+export async function insertForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForWordFileUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileuser/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_wordfileversion.js b/src/services/system/api_wordfileversion.js
new file mode 100644
index 0000000..6e4c7dc
--- /dev/null
+++ b/src/services/system/api_wordfileversion.js
@@ -0,0 +1,131 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/get?${stringify(params)}`);
+}
+
+
+export async function insertForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/deleteBatch`, {
+ method: 'POST',
+ data: params,
+ });
+}
+
+
+export async function updateBatchForWordFileVersion(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfileversion/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_wordfilewatermark.js b/src/services/system/api_wordfilewatermark.js
new file mode 100644
index 0000000..31ffa6d
--- /dev/null
+++ b/src/services/system/api_wordfilewatermark.js
@@ -0,0 +1,131 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/get?${stringify(params)}`);
+}
+
+
+export async function insertForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/deleteBatch`, {
+ method: 'POST',
+ data: params,
+ });
+}
+
+
+export async function updateBatchForWordFileWatermark(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wordfilewatermark/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_wxautoreply.js b/src/services/system/api_wxautoreply.js
new file mode 100644
index 0000000..b1952ec
--- /dev/null
+++ b/src/services/system/api_wxautoreply.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/get?${stringify(params)}`);
+}
+
+
+export async function insertForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForWxAutoReply(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxautoreply/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_wxmaterial.js b/src/services/system/api_wxmaterial.js
new file mode 100644
index 0000000..e75d583
--- /dev/null
+++ b/src/services/system/api_wxmaterial.js
@@ -0,0 +1,160 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/get?${stringify(params)}`);
+}
+
+
+export async function insertForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function materialFileUploadForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/materialFileUpload`, {
+ method: 'POST',
+ data: params.formdata,
+ timeout: 120000
+ });
+}
+
+export async function getMaterialVideo(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/materialVideo?${stringify(params)}`)
+}
+
+
+export async function downloadMaterialOtherForWxMaterial(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmaterial/materialOther`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ timeout: 120000,
+ responseType: 'blob',
+ // headers: { 'Content-Type': 'application/octet-stream' },
+ });
+}
diff --git a/src/services/system/api_wxmenu.js b/src/services/system/api_wxmenu.js
new file mode 100644
index 0000000..d031337
--- /dev/null
+++ b/src/services/system/api_wxmenu.js
@@ -0,0 +1,144 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/get?${stringify(params)}`);
+}
+
+
+export async function insertForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForWxMenu(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function customizemenuQuery(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmenu/customizemenuQuery`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'query',
+ },
+ });
+}
diff --git a/src/services/system/api_wxminiuser.js b/src/services/system/api_wxminiuser.js
new file mode 100644
index 0000000..9d116f9
--- /dev/null
+++ b/src/services/system/api_wxminiuser.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/get?${stringify(params)}`);
+}
+
+
+export async function insertForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForWxMiniUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxminiuser/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_wxmsg.js b/src/services/system/api_wxmsg.js
new file mode 100644
index 0000000..320131f
--- /dev/null
+++ b/src/services/system/api_wxmsg.js
@@ -0,0 +1,134 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/get?${stringify(params)}`);
+}
+
+
+export async function insertForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForWxMsg(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_wxsummary.js b/src/services/system/api_wxsummary.js
new file mode 100644
index 0000000..3347ca3
--- /dev/null
+++ b/src/services/system/api_wxsummary.js
@@ -0,0 +1,34 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function getUserSummary(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxsummary/usersummary`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getUserCumulate(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxsummary/usercumulate`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function getInterfaceSummary(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxsummary/interfacesummary`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/system/api_wxuser.js b/src/services/system/api_wxuser.js
new file mode 100644
index 0000000..8037f6c
--- /dev/null
+++ b/src/services/system/api_wxuser.js
@@ -0,0 +1,184 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/get?${stringify(params)}`);
+}
+
+
+export async function insertForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function synchroWxUserForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/synchron`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getAllForWxuserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/list`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function getTagsAndSelectedWxUserByTagsId(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/getTagsAndSelectedWxUserByTagsId`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function insertTagsForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/tagidList`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function updateRemarkForWxUser(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxuser/remark`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
diff --git a/src/services/system/api_wxusertags.js b/src/services/system/api_wxusertags.js
new file mode 100644
index 0000000..56706de
--- /dev/null
+++ b/src/services/system/api_wxusertags.js
@@ -0,0 +1,144 @@
+import { stringify } from 'qs';
+import { request } from '@umijs/max';
+import webpath from '@/utils/webPath';
+
+
+export async function deleteByPrimaryKeyForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/delete?${stringify(params)}`);
+}
+
+
+export async function selectByPrimaryKeyForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/get?${stringify(params)}`);
+}
+
+
+export async function insertForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/insert`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function updateForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/update`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function deleteByMapForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/deleteByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateByMapForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/updateByMap`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+
+export async function getOneForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxmsg/getOne`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+
+export async function getAllForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/getAll`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function queryPageForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/queryPage`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+
+export async function countForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/count`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
+
+export async function insertBatchForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/insertBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'insert',
+ },
+ });
+}
+
+
+export async function deleteBatchForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/deleteBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'delete',
+ },
+ });
+}
+
+
+export async function updateBatchForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/updateBatch`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'update',
+ },
+ });
+}
+
+export async function queryListForWxUserTags(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/wxusertags/list`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'fetch',
+ },
+ });
+}
diff --git a/src/services/user.js b/src/services/user.js
new file mode 100644
index 0000000..5c3a3ae
--- /dev/null
+++ b/src/services/user.js
@@ -0,0 +1,23 @@
+import { request } from '@umijs/max'
+import webpath from '@/utils/webPath'
+
+export async function query() {
+ return request('/api/users')
+}
+
+export async function queryCurrent(params = {}) {
+ return request(`/${webpath.portalwebpath}/web/api/service/auth/currentUser`, {
+ method: 'POST',
+ data: {
+ ...params,
+ method: 'query',
+ headers: {
+ Authorization: localStorage.getItem('antd-token-authority')
+ }
+ }
+ })
+}
+
+export async function queryNotices() {
+ return request(`/${webpath.portalwebpath}/web/api/service/api/notices`)
+}
diff --git a/src/utils/dataDictionary.js b/src/utils/dataDictionary.js
new file mode 100644
index 0000000..91c5668
--- /dev/null
+++ b/src/utils/dataDictionary.js
@@ -0,0 +1,19 @@
+const dataDictionary = {
+ sys_yes_no: {'1':'是','0':'否'}, // 是否
+ sys_no_yes: {'0':'否','1':'是'}, // 是否
+ is_enable: {'0':'禁止','1':'启用'}, // 启用禁用
+ sex:{'0':'未知','1':'男','2':'女'},//性别
+ area_levels: {'1':'一级','2':'二级','3':'三级','4':'四级'},//地区级别
+ is_hide: {'true':'是','false':'否'},//是否隐藏
+ user_status: {'0':'删除','1':'正常','2':'停用','3':'冻结'}, // 用户状态
+ sys_mgr_type: {'0':'非管理员','1':'系统管理员'}, // 管理员状态
+ sys_job_status: {'0':'离职','1':'在职'}, // 在职状态
+ sys_user_sex: {'0':'未知','1':'男','2':'女'}, // 用户性别
+ sys_user_type: {'employee':'员工'}, // 用户类型
+ sys_user_post: {'1':'总经理','2':'副总经理','3':'经理','4':'副经理','5':'主管','6':'负责人'}, // 用户职位
+ sys_user_idtype: {'1':'居民身份证','2':'军官证','3':'士兵证','4':'文职干部证','5':'部队离退休证','6':'香港特区护照/身份证明','7':'澳门特区护照/身份证明','8':'台湾居民来往大陆通行证','9':'境外永久居住证','Z':'其他'}, // 证件类型
+ sys_res_type: { 'M': '目录', 'F': '按钮', 'A': '接口' }, // 资源类型
+ sys_tenant_status: { '1': '正常', '9': '冻结' }, // 租户状态
+}
+
+export default dataDictionary
diff --git a/src/utils/errorCode.js b/src/utils/errorCode.js
new file mode 100644
index 0000000..fad8081
--- /dev/null
+++ b/src/utils/errorCode.js
@@ -0,0 +1,19 @@
+export default {
+ 200: '服务器成功返回请求的数据。',
+ 201: '新建或修改数据成功。',
+ 202: '一个请求已经进入后台排队(异步任务)。',
+ 204: '删除数据成功。',
+ 400: '发出的请求有错误,服务器没有进行新建或修改数据的操作。',
+ 401: '用户没有权限(令牌、用户名、密码错误)。',
+ 403: '用户得到授权,但是访问是被禁止的。',
+ 404: '发出的请求针对的是不存在的记录,服务器没有进行操作。',
+ 405: '请求方法不被允许。',
+ 406: '请求的格式不可得。',
+ 410: '请求的资源被永久删除,且不会再得到的。',
+ 422: '当创建一个对象时,发生一个验证错误。',
+ 500: '服务器发生错误,请检查服务器。',
+ 502: '网关错误。',
+ 503: '服务不可用,服务器暂时过载或维护。',
+ 504: '网关超时。',
+ default: '系统未知错误,请反馈给管理员'
+}
diff --git a/src/utils/formatUtils.js b/src/utils/formatUtils.js
new file mode 100644
index 0000000..0e87337
--- /dev/null
+++ b/src/utils/formatUtils.js
@@ -0,0 +1,21 @@
+import dayjs from 'dayjs'
+
+export function formatDate (date, format) {
+ let newDate = null
+
+ if (date && dayjs(date).isValid()) {
+ newDate = dayjs(date).format(format)
+ }
+
+ return newDate
+}
+
+export function formatDateObject (date, format) {
+ let newDate = null
+
+ if (date && dayjs(date).isValid()) {
+ newDate = dayjs(date, format)
+ }
+
+ return newDate
+}
diff --git a/src/utils/globalCommon.js b/src/utils/globalCommon.js
new file mode 100644
index 0000000..f0bf5ed
--- /dev/null
+++ b/src/utils/globalCommon.js
@@ -0,0 +1,625 @@
+import {message, Select, Tooltip} from 'antd';
+import { history } from "@umijs/max";
+import { stringify } from "querystring";
+import React, { useEffect, useRef } from 'react'
+import style from '@/global.less';
+import datadictionary from "@/utils/dataDictionary";
+
+const { Option } = Select;
+/**
+ *
+ * @param obj
+ * @returns {string}
+ */
+export const getValue = obj =>
+ Object.keys(obj)
+ .map(key => obj[key])
+ .join(",");
+
+/**
+ * 获取用户信息
+ * @type {*}
+ */
+export let userInfo = getUserInfo();
+
+export function setUserInfo() {
+ userInfo = getUserInfo();
+}
+
+/**
+ * 获取用户信息
+ * @returns {any}
+ */
+export function getUserInfo() {
+ if (isJSON(localStorage.getItem("antd-token-user"))) {
+ return JSON.parse(localStorage.getItem("antd-token-user"));
+ } else {
+ replaceGoto();
+ }
+}
+
+/**
+ * 获取用户权限信息
+ * @returns {any}
+ */
+export function getUserAuthority() {
+ if (isJSON(localStorage.getItem("antd-pro-authority"))) {
+ return JSON.parse(localStorage.getItem("antd-pro-authority"));
+ } else {
+ replaceGoto();
+ }
+}
+
+/**
+ * 获取用户Token信息
+ * @returns {string|string}
+ */
+export function getTokenAuthority() {
+ return localStorage.getItem("antd-token-authority");
+}
+
+/**
+ * 获取用户所有按钮权限信息
+ * @returns {string|string}
+ */
+export function getButtonAuthorityAll() {
+ let buttonAuth = localStorage.getItem('antd-pro-button')
+ return '' !== buttonAuth && buttonAuth ? JSON.parse(buttonAuth) : {}
+}
+
+/**
+ * 验证用户按钮权限信息
+ * @returns {boolean}
+ */
+export function checkButtonAuthority(key) {
+ if(!key) return true
+
+ try {
+ let buttonObject = {}
+ let pathName = window.location.pathname
+ const buttonAuth = localStorage.getItem('antd-pro-button')
+ if ('' !== buttonAuth && buttonAuth) {
+ const button = JSON.parse(buttonAuth) ?? {}
+ buttonObject = button[pathName] ?? {}
+ }
+
+ return buttonObject[key] !== undefined ? buttonObject[key] : true
+ } catch {
+ return true
+ }
+}
+
+/**
+ * 跳到登录页面
+ */
+function replaceGoto() {
+ if (window.location.pathname !== "/login") {
+ const redirect = window.location.pathname === "/" || window.location.pathname === "/welcome" ? {} : { redirect: window.location.href };
+ if (localStorage.getItem("antd-token-authority")) {
+ message.config({ maxCount: 1 })
+ message.error("用户信息获取失败,请重新登陆")
+
+ history.replace({
+ pathname: "/login",
+ search: stringify(redirect)
+ })
+
+ localStorage.clear()
+ }
+ }
+}
+
+/**
+ * 货币格式化
+ * @param value
+ * @returns {string}
+ */
+export const formatNumber = (value) => {
+ let oldNumber;
+ let newNumber;
+ let intNumber;
+ let decimalNumber;
+ if (value !== undefined) {
+ value += "";
+ if (value.indexOf(".") !== -1) {
+ oldNumber = value.split(".");
+ intNumber = (parseInt(oldNumber[0]).toLocaleString()).toString();
+ decimalNumber = oldNumber[1].toString();
+ newNumber = "¥" + intNumber + "." + decimalNumber;
+ return newNumber;
+ } else {
+ oldNumber = value;
+ intNumber = (parseInt(oldNumber).toLocaleString()).toString();
+ newNumber = "¥" + intNumber;
+ return newNumber;
+ }
+ }
+};
+
+/**
+ * 去掉数组对象中的重复对象
+ * @param obj
+ * @returns {[]}
+ */
+export function deleteObject(obj) {
+ let uniques = [];
+ let stringify = {};
+ for (let i = 0; i < obj.length; i++) {
+ const keys = Object.keys(obj[i]);
+ keys.sort(function(a, b) {
+ return (Number(a) - Number(b));
+ });
+ let str = "";
+ for (let j = 0; j < keys.length; j++) {
+ str += JSON.stringify(keys[j]);
+ str += JSON.stringify(obj[i][keys[j]]);
+ }
+ if (!stringify.hasOwnProperty(str)) {
+ uniques.push(obj[i]);
+ stringify[str] = true;
+ }
+ }
+ return uniques;
+}
+
+
+/**
+ * 金额小写转大写
+ * @param amount
+ * @returns {string}
+ */
+export function amountLtoU(amount) {
+ if (isNaN(amount) || amount >= 1000000000000) return "无效金额!"; //数值最大不超过1万亿
+ let sPrefix = amount < 0 ? "(负)" : ""; //将负号‘-’显示成汉字‘(负)’
+ let sAmount = Math.abs(amount).toFixed(2); //格式化成两位小数格式(两位小数对应“'角”和“分”)
+ let sUnit = "仟佰拾亿仟佰拾万仟佰拾元角分"; //14个权位单位
+ let sCapital = "零壹贰叁肆伍陆柒捌玖"; //10个大写数字
+ sAmount = sAmount.replace(".", ""); //去除小数点(使数字与权位对应)
+ sUnit = sUnit.substr(sUnit.length - sAmount.length); //截取权位
+ let sOutput = "";
+ for (let i = 0, len = sAmount.length; i < len; i++) { //拼接数字与权位单位
+ sOutput += sCapital.substr(sAmount.substr(i, 1), 1) + sUnit.substr(i, 1);
+ }
+ return sPrefix + sOutput.replace(/零角零分$/, "整").replace(/零[仟佰拾]/g, "零").replace(/零{2,}/g, "零")
+ .replace(/零([亿|万])/g, "$1").replace(/零+元/, "元").replace(/亿零{0,3}万/, "亿").replace(/^元/, "零元");
+}
+
+/**
+ * 验证字符串是否能转为json格式
+ * @param str
+ * @returns {boolean}
+ */
+export function isJSON(str) {
+ if (typeof str == "string" && str != "{}") {
+ try {
+ const obj = JSON.parse(str);
+ if (typeof obj == "object" && obj) {
+ return true;
+ } else {
+ return false;
+ }
+ } catch (e) {
+ // console.log('error:' + str + '!!!' + e);
+ return false;
+ }
+ }
+ // console.log('It is not a string!')
+ return false;
+}
+
+/**
+ * 银行卡号Luhn校验算法
+ *
+ * luhn校验规则:16位银行卡号(19位通用):
+ * 1.将未带校验位的 15(或18)位卡号从右依次编号 1 到 15(18),位于奇数位号上的数字乘以 2。
+ * 2.将奇位乘积的个十位全部相加,再加上所有偶数位上的数字。
+ * 3.将加法和加上校验位能被 10 整除。
+ *
+ * @param bankno 为银行卡号
+ * @returns {boolean}
+ */
+function luhnCheck(bankno) {
+ let lastNum = bankno.substr(bankno.length - 1, 1);//取出最后一位(与luhn进行比较)
+
+ let first15Num = bankno.substr(0, bankno.length - 1);//前15或18位
+ let newArr = new Array();
+ for (let i = first15Num.length - 1; i > -1; i--) { //前15或18位倒序存进数组
+ newArr.push(first15Num.substr(i, 1));
+ }
+ let arrJiShu = new Array(); //奇数位*2的积 <9
+ let arrJiShu2 = new Array(); //奇数位*2的积 >9
+
+ let arrOuShu = new Array(); //偶数位数组
+ for (let j = 0; j < newArr.length; j++) {
+ if ((j + 1) % 2 == 1) {//奇数位
+ if (parseInt(newArr[j]) * 2 < 9)
+ arrJiShu.push(parseInt(newArr[j]) * 2);
+ else
+ arrJiShu2.push(parseInt(newArr[j]) * 2);
+ } else //偶数位
+ arrOuShu.push(newArr[j]);
+ }
+
+ let jishu_child1 = new Array();//奇数位*2 >9 的分割之后的数组个位数
+ let jishu_child2 = new Array();//奇数位*2 >9 的分割之后的数组十位数
+ for (let h = 0; h < arrJiShu2.length; h++) {
+ jishu_child1.push(parseInt(arrJiShu2[h]) % 10);
+ jishu_child2.push(parseInt(arrJiShu2[h]) / 10);
+ }
+
+ let sumJiShu = 0; //奇数位*2 < 9 的数组之和
+ let sumOuShu = 0; //偶数位数组之和
+ let sumJiShuChild1 = 0; //奇数位*2 >9 的分割之后的数组个位数之和
+ let sumJiShuChild2 = 0; //奇数位*2 >9 的分割之后的数组十位数之和
+ let sumTotal = 0;
+ for (let m = 0; m < arrJiShu.length; m++) {
+ sumJiShu = sumJiShu + parseInt(arrJiShu[m]);
+ }
+
+ for (let n = 0; n < arrOuShu.length; n++) {
+ sumOuShu = sumOuShu + parseInt(arrOuShu[n]);
+ }
+
+ for (let p = 0; p < jishu_child1.length; p++) {
+ sumJiShuChild1 = sumJiShuChild1 + parseInt(jishu_child1[p]);
+ sumJiShuChild2 = sumJiShuChild2 + parseInt(jishu_child2[p]);
+ }
+ //计算总和
+ sumTotal = parseInt(sumJiShu) + parseInt(sumOuShu) + parseInt(sumJiShuChild1) + parseInt(sumJiShuChild2);
+
+ //计算luhn值
+ let k = parseInt(sumTotal) % 10 == 0 ? 10 : parseInt(sumTotal) % 10;
+ let luhn = 10 - k;
+
+ if (lastNum == luhn) {
+ // console.log("验证通过");
+ return true;
+ } else {
+ // message.error('银行卡号必须符合luhn校验')
+ return false;
+ }
+}
+
+/**
+ * 非表单检查银行卡号
+ * @param bankno
+ * @returns {boolean}
+ * @constructor
+ */
+export function CheckBankNo(bankno) {
+ if (bankno == "" || bankno == undefined) {
+ // message.error('请填写银行卡号')
+ return false;
+ }
+ bankno = bankno.replace(/\s/g, "");
+ if (bankno.length < 16 || bankno.length > 19) {
+ // message.error('银行卡号长度必须在16到19之间')
+ return false;
+ }
+ let num = /^\d*$/;//全数字
+ if (!num.exec(bankno)) {
+ // message.error('银行卡号必须全为数字')
+ return false;
+ }
+ //开头6位
+ let strBin = "10,18,30,35,37,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,60,62,65,68,69,84,87,88,94,95,98,99";
+ if (strBin.indexOf(bankno.substring(0, 2)) == -1) {
+ message.error("银行卡号开头6位不符合规范");
+ return false;
+ }
+ //Luhn校验
+ if (!luhnCheck(bankno)) {
+ return false;
+ }
+ return true;
+}
+
+/**
+ * 表单检查银行卡号
+ * @param bankno
+ * @returns {Promise}
+ * @constructor
+ */
+export function verifyBankNo(_, bankno) {
+ if (bankno == "" || bankno == undefined) {
+ return Promise.resolve();
+ }
+ bankno = bankno.replace(/\s/g, "");
+ if (bankno.length < 16 || bankno.length > 19) {
+ return Promise.reject("长度须在16到19之间");
+ }
+ let num = /^\d*$/;//全数字
+ if (!num.exec(bankno)) {
+ return Promise.reject("卡号须为数字");
+ }
+ //开头6位
+ let strBin = "10,18,30,35,37,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,58,60,62,65,68,69,84,87,88,94,95,98,99";
+ if (strBin.indexOf(bankno.substring(0, 2)) == -1) {
+ return Promise.reject("开头6位不符合规范");
+ }
+ //Luhn校验
+ if (!luhnCheck(bankno)) {
+ return Promise.reject("不合法");
+ }
+ return Promise.resolve();
+}
+
+/**
+ * 表单正则表达式校验手机号
+ * @param rule
+ * @param value
+ * @param callback
+ */
+export function verifyPhone(_, value) {
+ //校验手机号,号段主要有(不包括上网卡):130~139、150~153,155~159,180~189、166~168, 170~173、176~178。14号段为上网卡专属号段
+ let regs = /^((13[0-9])|(16[6-8])|(17[0-3,6-8])|(15[^4,\\D])|(18[0-9])|(19[0-9]))\d{8}$/;
+ if (value == undefined || value.length == 0) {
+ return Promise.resolve();
+ } else {
+ let phone = value?.replace(/\s/g, "");//去除空格
+ if (!regs.test(phone)) {
+ return Promise.reject("不合法");
+ //原提示信息过长不适合展示
+ } else {
+ return Promise.resolve();
+ }
+ }
+}
+
+/**
+ * 非表单正则表达式校验手机号
+ * @param value
+ * @returns {boolean}
+ */
+export function validatePhone(value) {
+ //校验手机号,号段主要有(不包括上网卡):130~139、150~153,155~159,180~189、170~171、176~178。14号段为上网卡专属号段
+ let regs = /^((13[0-9])|(17[0-1,6-8])|(15[^4,\\D])|(18[0-9]))\d{8}$/;
+ if (value == undefined || value.length == 0) {
+ return true;
+ } else {
+ let phone = value.replace(/\s/g, "");//去除空格
+ if (!regs.test(phone)) {
+ return false;
+ } else {
+ return true;
+ }
+ }
+}
+
+/**
+ * 表单正则表达式校验URL
+ * @param rule
+ * @param value
+ */
+export function verifyUrl(_, value) {
+ let strRegex = "^((https|http|ftp|rtsp|mms)?://)"
+ + "?(([0-9a-z_!~*'().&=+$%-]+: )?[0-9a-z_!~*'().&=+$%-]+@)?" //ftp的user@
+ + "(([0-9]{1,3}.){3}[0-9]{1,3}" // IP形式的URL- 199.194.52.184
+ + "|" // 允许IP和DOMAIN(域名)
+ + "([0-9a-z_!~*'()-]+.)*" // 域名- www.
+ + "([0-9a-z][0-9a-z-]{0,61})?[0-9a-z]." // 二级域名
+ + "[a-z]{2,6})" // first level domain- .com or .museum
+ + "(:[0-9]{1,4})?" // 端口- :80
+ + "((/?)|" // a slash isn't required if there is no file name
+ + "(/[0-9a-z_!~*'().;?:@&=+$,%#-]+)+/?)$";
+ let re = new RegExp(strRegex);
+
+ if (value == undefined || value.length == 0) {
+ return Promise.resolve();
+ } else {
+ let url = value?.replace(/\s/g, "");//去除空格
+ if (!re.test(url)) {
+ return Promise.reject("不合法");
+ } else {
+ return Promise.resolve();
+ }
+ }
+}
+
+export function printHtml(idvalue) {
+ window.document.body.innerHTML = window.document.getElementById(idvalue).innerHTML;
+ window.print();
+ window.location.reload();
+}
+
+/**
+ * 表单校验上传文件列表
+ * @param value
+ * @returns {boolean}
+ */
+export function verifyUploadList(_, value) {
+ if (value?.list?.length > 0) {
+ return Promise.resolve();
+ }
+ if (_.required === false) {
+ return Promise.resolve();
+ }
+
+ return Promise.reject("请上传附件");
+}
+
+// 去掉数组对象中的重复对象
+export function deteleObject(obj) {
+ let uniques = [];
+ let stringify = {};
+ for (let i = 0; i < obj.length; i++) {
+ const keys = Object.keys(obj[i]);
+ keys.sort(function(a, b) {
+ return (Number(a) - Number(b));
+ });
+ let str = "";
+ for (let j = 0; j < keys.length; j++) {
+ str += JSON.stringify(keys[j]);
+ str += JSON.stringify(obj[i][keys[j]]);
+ }
+ if (!stringify.hasOwnProperty(str)) {
+ uniques.push(obj[i]);
+ stringify[str] = true;
+ }
+ }
+ uniques = uniques;
+ return uniques;
+}
+
+/**
+ * 通过value 取 key
+ */
+export function findKey (data, value, compare = (a, b) => a === b) {
+ return Object.keys(data).find(k => compare(data[k], value.trim()))
+}
+
+// 数据合并
+export function mergeRecursive(source, target) {
+ for (var p in target) {
+ try {
+ if (target[p].constructor == Object) {
+ source[p] = mergeRecursive(source[p], target[p]);
+ } else {
+ source[p] = target[p];
+ }
+ } catch (e) {
+ source[p] = target[p];
+ }
+ }
+ return source;
+};
+
+/**
+ * 初始化下拉框选项
+ * @param value
+ */
+export function handleSelect(value) {
+ const children = [];
+ Object.keys(value).forEach(function (key) {
+ children.push();
+ });
+
+ return children
+}
+
+/**
+ * 初始化树下拉框选项
+ * @param arr
+ * @param val
+ */
+export function initTreeSelect(arr, val) {
+ let title = ''
+ if (arr?.length > 0) {
+ function queryDictName(item, value) {
+ for (let i = 0; i < item.length; i++) {
+ if (item[i].value == value) {
+ title = item[i].title;
+ break
+ } else if (item[i].children?.length > 0) {
+ queryDictName(item[i].children, value);
+ }
+ }
+ }
+
+ queryDictName(arr, val);
+ return title
+ }
+
+ return val
+}
+
+/**
+ * 格式化字典数据
+ * @param val 字典值
+ * @param label 文本对应key
+ * @param value 值对应key
+ * @returns {Array}
+ */
+export function formatDictOptions (val, label, value) {
+ const type = Object.prototype.toString.call(val)
+ let newArr = []
+
+ if (type === '[object Object]') {
+ Object.keys(val).map((item, index) => {
+ newArr.push({
+ label: val[item],
+ value: item,
+ key: index
+ })
+ })
+ }
+
+ if (type === '[object Array]') {
+ val.map((item, index) => {
+ newArr.push({
+ label: item[label],
+ value: item[value],
+ key: index
+ })
+ })
+ }
+
+ return newArr
+}
+
+/**
+ * 格式化字典数据
+ * @param val 字典值
+ * @param label 文本对应key
+ * @param value 值对应key
+ * @returns {Array}
+ */
+export function formatDictText (val, text, label, value) {
+ const type = Object.prototype.toString.call(val)
+ let newArr = ''
+
+ if (type === '[object Object]') {
+ Object.keys(val).map((item, index) => {
+ if(item === text) {
+ newArr = val[item]
+ return;
+ }
+ })
+ }
+
+ if (type === '[object Array]') {
+ val.map((item, index) => {
+ if(item[value] === text) {
+ newArr = item[label]
+ return;
+ }
+ })
+ }
+
+ return newArr
+}
+
+/**
+ * hooks组件挂载状态校验
+ * @returns {Object}
+ */
+export function useUnmounted() {
+ const mountedRef = useRef(false)
+
+ useEffect(() => {
+ mountedRef.current = true
+ return () => {
+ mountedRef.current = false
+ }
+ })
+
+ return mountedRef
+}
+
+/**
+ * 格式化文本ToolTip
+ * @param text 文本值
+ * @param width 文本宽度
+ * @returns {JSX.Element}
+ */
+export function formatTooltipContent(text, width) {
+ return '' !== text && ![null, undefined].includes(text) ? (
+
+
+ {text}
+
+
+ ) : (
+ <>>
+ );
+}
diff --git a/src/utils/md5.js b/src/utils/md5.js
new file mode 100644
index 0000000..7cf8d7f
--- /dev/null
+++ b/src/utils/md5.js
@@ -0,0 +1,257 @@
+/*
+ * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
+ * Digest Algorithm, as defined in RFC 1321.
+ * Version 2.1 Copyright (C) Paul Johnston 1999 - 2002.
+ * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
+ * Distributed under the BSD License
+ * See http://pajhome.org.uk/crypt/md5 for more info.
+ */
+
+/*
+ * Configurable variables. You may need to tweak these to be compatible with
+ * the server-side, but the defaults work in most cases.
+ */
+var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */
+var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */
+var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */
+
+/*
+ * These are the functions you'll usually want to call
+ * They take string arguments and return either hex or base-64 encoded strings
+ */
+// function hex_md5(s){ return binl2hex(core_md5(str2binl(s), s.length * chrsz));}
+export function hex_md5(s){ return binl2hex(core_md5(str2binl(s), s.length * chrsz));}
+function b64_md5(s){ return binl2b64(core_md5(str2binl(s), s.length * chrsz));}
+function str_md5(s){ return binl2str(core_md5(str2binl(s), s.length * chrsz));}
+function hex_hmac_md5(key, data) { return binl2hex(core_hmac_md5(key, data)); }
+function b64_hmac_md5(key, data) { return binl2b64(core_hmac_md5(key, data)); }
+function str_hmac_md5(key, data) { return binl2str(core_hmac_md5(key, data)); }
+
+/*
+ * Perform a simple self-test to see if the VM is working
+ */
+function md5_vm_test()
+{
+ return hex_md5("abc") == "900150983cd24fb0d6963f7d28e17f72";
+}
+
+/*
+ * Calculate the MD5 of an array of little-endian words, and a bit length
+ */
+function core_md5(x, len)
+{
+ /* append padding */
+ x[len >> 5] |= 0x80 << ((len) % 32);
+ x[(((len + 64) >>> 9) << 4) + 14] = len;
+
+ var a = 1732584193;
+ var b = -271733879;
+ var c = -1732584194;
+ var d = 271733878;
+
+ for(var i = 0; i < x.length; i += 16)
+ {
+ var olda = a;
+ var oldb = b;
+ var oldc = c;
+ var oldd = d;
+
+ a = md5_ff(a, b, c, d, x[i+ 0], 7 , -680876936);
+ d = md5_ff(d, a, b, c, x[i+ 1], 12, -389564586);
+ c = md5_ff(c, d, a, b, x[i+ 2], 17, 606105819);
+ b = md5_ff(b, c, d, a, x[i+ 3], 22, -1044525330);
+ a = md5_ff(a, b, c, d, x[i+ 4], 7 , -176418897);
+ d = md5_ff(d, a, b, c, x[i+ 5], 12, 1200080426);
+ c = md5_ff(c, d, a, b, x[i+ 6], 17, -1473231341);
+ b = md5_ff(b, c, d, a, x[i+ 7], 22, -45705983);
+ a = md5_ff(a, b, c, d, x[i+ 8], 7 , 1770035416);
+ d = md5_ff(d, a, b, c, x[i+ 9], 12, -1958414417);
+ c = md5_ff(c, d, a, b, x[i+10], 17, -42063);
+ b = md5_ff(b, c, d, a, x[i+11], 22, -1990404162);
+ a = md5_ff(a, b, c, d, x[i+12], 7 , 1804603682);
+ d = md5_ff(d, a, b, c, x[i+13], 12, -40341101);
+ c = md5_ff(c, d, a, b, x[i+14], 17, -1502002290);
+ b = md5_ff(b, c, d, a, x[i+15], 22, 1236535329);
+
+ a = md5_gg(a, b, c, d, x[i+ 1], 5 , -165796510);
+ d = md5_gg(d, a, b, c, x[i+ 6], 9 , -1069501632);
+ c = md5_gg(c, d, a, b, x[i+11], 14, 643717713);
+ b = md5_gg(b, c, d, a, x[i+ 0], 20, -373897302);
+ a = md5_gg(a, b, c, d, x[i+ 5], 5 , -701558691);
+ d = md5_gg(d, a, b, c, x[i+10], 9 , 38016083);
+ c = md5_gg(c, d, a, b, x[i+15], 14, -660478335);
+ b = md5_gg(b, c, d, a, x[i+ 4], 20, -405537848);
+ a = md5_gg(a, b, c, d, x[i+ 9], 5 , 568446438);
+ d = md5_gg(d, a, b, c, x[i+14], 9 , -1019803690);
+ c = md5_gg(c, d, a, b, x[i+ 3], 14, -187363961);
+ b = md5_gg(b, c, d, a, x[i+ 8], 20, 1163531501);
+ a = md5_gg(a, b, c, d, x[i+13], 5 , -1444681467);
+ d = md5_gg(d, a, b, c, x[i+ 2], 9 , -51403784);
+ c = md5_gg(c, d, a, b, x[i+ 7], 14, 1735328473);
+ b = md5_gg(b, c, d, a, x[i+12], 20, -1926607734);
+
+ a = md5_hh(a, b, c, d, x[i+ 5], 4 , -378558);
+ d = md5_hh(d, a, b, c, x[i+ 8], 11, -2022574463);
+ c = md5_hh(c, d, a, b, x[i+11], 16, 1839030562);
+ b = md5_hh(b, c, d, a, x[i+14], 23, -35309556);
+ a = md5_hh(a, b, c, d, x[i+ 1], 4 , -1530992060);
+ d = md5_hh(d, a, b, c, x[i+ 4], 11, 1272893353);
+ c = md5_hh(c, d, a, b, x[i+ 7], 16, -155497632);
+ b = md5_hh(b, c, d, a, x[i+10], 23, -1094730640);
+ a = md5_hh(a, b, c, d, x[i+13], 4 , 681279174);
+ d = md5_hh(d, a, b, c, x[i+ 0], 11, -358537222);
+ c = md5_hh(c, d, a, b, x[i+ 3], 16, -722521979);
+ b = md5_hh(b, c, d, a, x[i+ 6], 23, 76029189);
+ a = md5_hh(a, b, c, d, x[i+ 9], 4 , -640364487);
+ d = md5_hh(d, a, b, c, x[i+12], 11, -421815835);
+ c = md5_hh(c, d, a, b, x[i+15], 16, 530742520);
+ b = md5_hh(b, c, d, a, x[i+ 2], 23, -995338651);
+
+ a = md5_ii(a, b, c, d, x[i+ 0], 6 , -198630844);
+ d = md5_ii(d, a, b, c, x[i+ 7], 10, 1126891415);
+ c = md5_ii(c, d, a, b, x[i+14], 15, -1416354905);
+ b = md5_ii(b, c, d, a, x[i+ 5], 21, -57434055);
+ a = md5_ii(a, b, c, d, x[i+12], 6 , 1700485571);
+ d = md5_ii(d, a, b, c, x[i+ 3], 10, -1894986606);
+ c = md5_ii(c, d, a, b, x[i+10], 15, -1051523);
+ b = md5_ii(b, c, d, a, x[i+ 1], 21, -2054922799);
+ a = md5_ii(a, b, c, d, x[i+ 8], 6 , 1873313359);
+ d = md5_ii(d, a, b, c, x[i+15], 10, -30611744);
+ c = md5_ii(c, d, a, b, x[i+ 6], 15, -1560198380);
+ b = md5_ii(b, c, d, a, x[i+13], 21, 1309151649);
+ a = md5_ii(a, b, c, d, x[i+ 4], 6 , -145523070);
+ d = md5_ii(d, a, b, c, x[i+11], 10, -1120210379);
+ c = md5_ii(c, d, a, b, x[i+ 2], 15, 718787259);
+ b = md5_ii(b, c, d, a, x[i+ 9], 21, -343485551);
+
+ a = safe_add(a, olda);
+ b = safe_add(b, oldb);
+ c = safe_add(c, oldc);
+ d = safe_add(d, oldd);
+ }
+ return Array(a, b, c, d);
+
+}
+
+/*
+ * These functions implement the four basic operations the algorithm uses.
+ */
+function md5_cmn(q, a, b, x, s, t)
+{
+ return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s),b);
+}
+function md5_ff(a, b, c, d, x, s, t)
+{
+ return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t);
+}
+function md5_gg(a, b, c, d, x, s, t)
+{
+ return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t);
+}
+function md5_hh(a, b, c, d, x, s, t)
+{
+ return md5_cmn(b ^ c ^ d, a, b, x, s, t);
+}
+function md5_ii(a, b, c, d, x, s, t)
+{
+ return md5_cmn(c ^ (b | (~d)), a, b, x, s, t);
+}
+
+/*
+ * Calculate the HMAC-MD5, of a key and some data
+ */
+function core_hmac_md5(key, data)
+{
+ var bkey = str2binl(key);
+ if(bkey.length > 16) bkey = core_md5(bkey, key.length * chrsz);
+
+ var ipad = Array(16), opad = Array(16);
+ for(var i = 0; i < 16; i++)
+ {
+ ipad[i] = bkey[i] ^ 0x36363636;
+ opad[i] = bkey[i] ^ 0x5C5C5C5C;
+ }
+
+ var hash = core_md5(ipad.concat(str2binl(data)), 512 + data.length * chrsz);
+ return core_md5(opad.concat(hash), 512 + 128);
+}
+
+/*
+ * Add integers, wrapping at 2^32. This uses 16-bit operations internally
+ * to work around bugs in some JS interpreters.
+ */
+function safe_add(x, y)
+{
+ var lsw = (x & 0xFFFF) + (y & 0xFFFF);
+ var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
+ return (msw << 16) | (lsw & 0xFFFF);
+}
+
+/*
+ * Bitwise rotate a 32-bit number to the left.
+ */
+function bit_rol(num, cnt)
+{
+ return (num << cnt) | (num >>> (32 - cnt));
+}
+
+/*
+ * Convert a string to an array of little-endian words
+ * If chrsz is ASCII, characters >255 have their hi-byte silently ignored.
+ */
+function str2binl(str)
+{
+ var bin = Array();
+ var mask = (1 << chrsz) - 1;
+ for(var i = 0; i < str.length * chrsz; i += chrsz)
+ bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (i%32);
+ return bin;
+}
+
+/*
+ * Convert an array of little-endian words to a string
+ */
+function binl2str(bin)
+{
+ var str = "";
+ var mask = (1 << chrsz) - 1;
+ for(var i = 0; i < bin.length * 32; i += chrsz)
+ str += String.fromCharCode((bin[i>>5] >>> (i % 32)) & mask);
+ return str;
+}
+
+/*
+ * Convert an array of little-endian words to a hex string.
+ */
+function binl2hex(binarray)
+{
+ var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef";
+ var str = "";
+ for(var i = 0; i < binarray.length * 4; i++)
+ {
+ str += hex_tab.charAt((binarray[i>>2] >> ((i%4)*8+4)) & 0xF) +
+ hex_tab.charAt((binarray[i>>2] >> ((i%4)*8 )) & 0xF);
+ }
+ return str;
+}
+
+/*
+ * Convert an array of little-endian words to a base-64 string
+ */
+function binl2b64(binarray)
+{
+ var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
+ var str = "";
+ for(var i = 0; i < binarray.length * 4; i += 3)
+ {
+ var triplet = (((binarray[i >> 2] >> 8 * ( i %4)) & 0xFF) << 16)
+ | (((binarray[i+1 >> 2] >> 8 * ((i+1)%4)) & 0xFF) << 8 )
+ | ((binarray[i+2 >> 2] >> 8 * ((i+2)%4)) & 0xFF);
+ for(var j = 0; j < 4; j++)
+ {
+ if(i * 8 + j * 6 > binarray.length * 32) str += b64pad;
+ else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F);
+ }
+ }
+ return str;
+}
diff --git a/src/utils/pr_new_datadictionary.js b/src/utils/pr_new_datadictionary.js
new file mode 100644
index 0000000..0281b1d
--- /dev/null
+++ b/src/utils/pr_new_datadictionary.js
@@ -0,0 +1,300 @@
+
+
+ export const PP = [{"children":[],"title":"企业自筹","value":"3","key":"3"},{"children":[],"title":"主管部门解决","value":"2","key":"2"},{"children":[],"title":"财政补发","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"财政、部门、企业共同解决","value":"4","key":"4"}];//补助资金来源(RS-BZZJLY-2004)
+ export const Q1 = [{"children":[],"title":"政府机关","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"企业","value":"1","key":"1"},{"children":[],"title":"军队系统","value":"4","key":"4"},{"children":[],"title":"高校/科研院所","value":"3","key":"3"},{"children":[],"title":"事业单位","value":"5","key":"5"}]; //出站工作单位类型(RS-CZGZDWLX-2004)
+ export const Q2 = [{"children":[],"title":"幼儿园","value":"1","key":"1"},{"children":[],"title":"高中","value":"4","key":"4"},{"children":[],"title":"大学","value":"5","key":"5"},{"children":[],"title":"小学","value":"2","key":"2"},{"children":[],"title":"初中","value":"3","key":"3"}]; //子女上学情况(RS-SXQK-2004)
+ export const PQ = [{"children":[],"title":"财政补发","value":"1","key":"1"},{"children":[],"title":"企业自筹","value":"3","key":"3"},{"children":[],"title":"财政、部门、企业共同解决","value":"4","key":"4"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"主管部门解决","value":"2","key":"2"}]; //补发资金来源(RS-BFZJLY-2004)
+ export const PR = [{"children":[],"title":"只参加基本医疗保险","value":"12","key":"12"},{"children":[],"title":"三项保险都参加","value":"33","key":"33"},{"children":[],"title":"三项保险都未参加","value":"99","key":"99"},{"children":[],"title":"参加基本养老、失业保险","value":"22","key":"22"},{"children":[],"title":"只参加基本养老保险","value":"11","key":"11"},{"children":[],"title":"参加基本养老、医疗保险","value":"21","key":"21"},{"children":[],"title":"参加基本医疗、失业保险","value":"23","key":"23"},{"children":[],"title":"只参加失业保险","value":"13","key":"13"}]; //参保情况(RS-CBQK-2004)
+ export const _02 = [{"children":[],"title":"回溯","value":"5","key":"5"},{"children":[],"title":"未办","value":"1","key":"1"},{"children":[],"title":"已办","value":"2","key":"2"},{"children":[],"title":"待办","value":"3","key":"3"},{"children":[],"title":"中止","value":"4","key":"4"}]; //流程状态
+ export const Q3 = [{"children":[{"children":[],"title":"100平米以上","value":"13","key":"13"},{"children":[],"title":"50—100平米","value":"12","key":"12"},{"children":[],"title":"50平米以下","value":"11","key":"11"}],"title":"有房","value":"1","key":"1"},{"children":[],"title":"无房","value":"0","key":"0"}]; //住房情况(RS-ZFQK-2005)
+ export const Q4 = [{"children":[],"title":"基础理论研究","value":"1","key":"1"},{"children":[],"title":"应用基础研究","value":"2","key":"2"}]; //基金项目研究类型(RS-YJLX-2004)
+ export const PS = [{"children":[],"title":"三项保险费都拖欠","value":"33","key":"33"},{"children":[],"title":"拖欠基本医疗、失业保险费","value":"23","key":"23"},{"children":[],"title":"只拖欠失业保险费","value":"13","key":"13"},{"children":[],"title":"拖欠基本养老、失业保险费","value":"22","key":"22"},{"children":[],"title":"拖欠基本养老、医疗保险费","value":"21","key":"21"},{"children":[],"title":"只拖欠基本医疗保险费","value":"12","key":"12"},{"children":[],"title":"三项保险费都不拖欠","value":"99","key":"99"},{"children":[],"title":"只拖欠基本养老保险费","value":"11","key":"11"}]; //企业拖欠三险费情况(RS-TQSXF-2004)
+ export const _03 = [{"children":[],"title":"送审批","value":"3","key":"3"},{"children":[],"title":"正在处理","value":"1","key":"1"},{"children":[],"title":"审批不通过","value":"4","key":"4"},{"children":[],"title":"已完成","value":"2","key":"2"}]; //业务状态
+ export const PT = [{"children":[],"title":"信函审核","value":"3","key":"3"},{"children":[],"title":"本人签到","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"电话签到","value":"2","key":"2"},{"children":[],"title":"他人代审","value":"4","key":"4"}]; //退役金审核方式(RS-TYJSH-2004)
+ export const Q5 = [{"children":[{"children":[],"title":"大地/海洋测量","value":"2653","key":"2653"},{"children":[],"title":"其他测绘技术","value":"2699","key":"2699"},{"children":[],"title":"其他地质冶金","value":"2650","key":"2650"},{"children":[],"title":"采矿/选矿","value":"2603","key":"2603"},{"children":[],"title":"地图制图与印刷","value":"2655","key":"2655"},{"children":[],"title":"工程测量","value":"2651","key":"2651"},{"children":[],"title":"勘查","value":"2601","key":"2601"}],"title":"地矿冶金/测绘技术","value":"26","key":"26"},{"children":[{"children":[],"title":"其他物流","value":"1499","key":"1499"},{"children":[],"title":"船务人员","value":"1451","key":"1451"},{"children":[],"title":"报关员/单证员","value":"1453","key":"1453"},{"children":[],"title":"快递员","value":"1465","key":"1465"},{"children":[],"title":"对外贸易","value":"1401","key":"1401"},{"children":[],"title":"其他贸易","value":"1450","key":"1450"},{"children":[],"title":"仓储管理","value":"1461","key":"1461"},{"children":[],"title":"物流管理","value":"1457","key":"1457"},{"children":[],"title":"国内贸易","value":"1403","key":"1403"},{"children":[],"title":"物流操作员","value":"1459","key":"1459"},{"children":[],"title":"店面管理","value":"1463","key":"1463"}],"title":"贸易/物流","value":"14","key":"14"},{"children":[{"children":[],"title":"市场经理/主管","value":"0101","key":"0101"},{"children":[],"title":"售前/售后支持","value":"0173","key":"0173"},{"children":[],"title":"其他销售","value":"0170","key":"0170"},{"children":[],"title":"其他市场营销","value":"0140","key":"0140"},{"children":[],"title":"市场/行销策划","value":"0105","key":"0105"},{"children":[],"title":"医药销售/医疗器械销售","value":"0145","key":"0145"},{"children":[],"title":"商务代表","value":"0171","key":"0171"},{"children":[],"title":"销售代表/促销员/业务员","value":"0143","key":"0143"},{"children":[],"title":"保险销售","value":"0147","key":"0147"},{"children":[],"title":"销售经理/主管/工程师","value":"0141","key":"0141"},{"children":[],"title":"市场调研/业务分析","value":"0103","key":"0103"},{"children":[],"title":"公关经理/主管/专员","value":"0175","key":"0175"},{"children":[],"title":"其他公关","value":"0199","key":"0199"}],"title":"市场营销/销售/公关","value":"01","key":"01"},{"children":[{"children":[],"title":"麻醉","value":"2315","key":"2315"},{"children":[],"title":"护士/护理","value":"2319","key":"2319"},{"children":[],"title":"其他美容保健","value":"2399","key":"2399"},{"children":[],"title":"化妆/美容师","value":"2353","key":"2353"},{"children":[],"title":"针灸推拿","value":"2317","key":"2317"},{"children":[],"title":"医疗技术","value":"2307","key":"2307"},{"children":[],"title":"整容","value":"2351","key":"2351"},{"children":[],"title":"医药检验","value":"2303","key":"2303"},{"children":[],"title":"药库/药剂","value":"2311","key":"2311"},{"children":[],"title":"妇幼保健","value":"2323","key":"2323"},{"children":[],"title":"医学管理","value":"2309","key":"2309"},{"children":[],"title":"临床医学","value":"2313","key":"2313"},{"children":[],"title":"心理医生","value":"2321","key":"2321"},{"children":[],"title":"卫生防疫","value":"2325","key":"2325"},{"children":[],"title":"宠物医生","value":"2355","key":"2355"},{"children":[],"title":"医生(中西医)","value":"2301","key":"2301"},{"children":[],"title":"其他医药","value":"2350","key":"2350"}],"title":"医药/美容保健","value":"23","key":"23"},{"children":[{"children":[],"title":"其他行政","value":"0499","key":"0499"},{"children":[],"title":"招聘经理/主管","value":"0403","key":"0403"},{"children":[],"title":"绩效考核经理/主管","value":"0409","key":"0409"},{"children":[],"title":"培训经理/主管","value":"0407","key":"0407"},{"children":[],"title":"行政主管/专员/助理","value":"0453","key":"0453"},{"children":[],"title":"其他人事/人力资源","value":"0450","key":"0450"},{"children":[],"title":"人事/人力资源经理/主管","value":"0401","key":"0401"},{"children":[],"title":"薪酬福利经理/主管","value":"0405","key":"0405"},{"children":[],"title":"行政经理/办公室主任","value":"0451","key":"0451"}],"title":"人事/人力资源/行政","value":"04","key":"04"},{"children":[{"children":[],"title":"置业顾问","value":"0711","key":"0711"},{"children":[],"title":"房地产项目策划/销售","value":"0701","key":"0701"},{"children":[],"title":"房地产评估","value":"0705","key":"0705"},{"children":[],"title":"物业管理","value":"0709","key":"0709"},{"children":[],"title":"其他房地产","value":"0799","key":"0799"},{"children":[],"title":"楼盘销售","value":"0703","key":"0703"}],"title":"房地产","value":"07","key":"07"},{"children":[{"children":[],"title":"形象设计","value":"0855","key":"0855"},{"children":[],"title":"文案策划/媒体策划","value":"0807","key":"0807"},{"children":[],"title":"广告业务","value":"0805","key":"0805"},{"children":[],"title":"动画设计","value":"0853","key":"0853"},{"children":[],"title":"广告设计/制作","value":"0803","key":"0803"},{"children":[],"title":"产品包装设计","value":"0859","key":"0859"},{"children":[],"title":"工艺品设计","value":"0867","key":"0867"},{"children":[],"title":"家具设计","value":"0863","key":"0863"},{"children":[],"title":"工业/产品设计","value":"0857","key":"0857"},{"children":[],"title":"服装设计","value":"0861","key":"0861"},{"children":[],"title":"其他设计","value":"0899","key":"0899"},{"children":[],"title":"玩具设计","value":"0865","key":"0865"},{"children":[],"title":"其他广告","value":"0850","key":"0850"},{"children":[],"title":"广告策划","value":"0801","key":"0801"},{"children":[],"title":"平面设计","value":"0851","key":"0851"}],"title":"广告/设计","value":"08","key":"08"},{"children":[{"children":[],"title":"其他外语翻译","value":"2299","key":"2299"},{"children":[],"title":"法语翻译","value":"2205","key":"2205"},{"children":[],"title":"俄语翻译","value":"2209","key":"2209"},{"children":[],"title":"英语翻译","value":"2201","key":"2201"},{"children":[],"title":"日语翻译","value":"2203","key":"2203"},{"children":[],"title":"德语翻译","value":"2207","key":"2207"},{"children":[],"title":"朝鲜语翻译","value":"2213","key":"2213"},{"children":[],"title":"西班牙语翻译","value":"2211","key":"2211"}],"title":"翻译","value":"22","key":"22"},{"children":[{"children":[],"title":"其他核工业","value":"2899","key":"2899"},{"children":[],"title":"航天","value":"2803","key":"2803"},{"children":[],"title":"种植业","value":"2901","key":"2901"},{"children":[],"title":"农业推广","value":"2911","key":"2911"},{"children":[],"title":"航空","value":"2801","key":"2801"},{"children":[],"title":"其他航空航天","value":"2850","key":"2850"},{"children":[],"title":"饲料","value":"2913","key":"2913"},{"children":[],"title":"水利","value":"2909","key":"2909"},{"children":[],"title":"其他农林牧渔","value":"2999","key":"2999"},{"children":[],"title":"核工业","value":"2851","key":"2851"},{"children":[],"title":"林业","value":"2903","key":"2903"},{"children":[],"title":"畜牧/兽医","value":"2905","key":"2905"},{"children":[],"title":"渔业","value":"2907","key":"2907"}],"title":"航空航天/核工业","value":"29","key":"29"},{"children":[{"children":[],"title":"电镀化工","value":"1611","key":"1611"},{"children":[],"title":"玻璃工艺/化工工艺","value":"1653","key":"1653"},{"children":[],"title":"废品处理","value":"1659","key":"1659"},{"children":[],"title":"化学药剂/农药化肥","value":"1615","key":"1615"},{"children":[],"title":"无机化工","value":"1601","key":"1601"},{"children":[],"title":"高分子化工","value":"1605","key":"1605"},{"children":[],"title":"有机化工","value":"1603","key":"1603"},{"children":[],"title":"精细/日用化工","value":"1607","key":"1607"},{"children":[],"title":"生物化工/制药工程","value":"1613","key":"1613"},{"children":[],"title":"分析化工","value":"1609","key":"1609"},{"children":[],"title":"其他塑胶","value":"1699","key":"1699"},{"children":[],"title":"其他化工","value":"1650","key":"1650"},{"children":[],"title":"塑胶/注塑","value":"1651","key":"1651"}],"title":"化工/塑胶","value":"16","key":"16"},{"children":[{"children":[],"title":"技术总监/CTO","value":"0373","key":"0373"},{"children":[],"title":"企业策划管理","value":"0341","key":"0341"},{"children":[],"title":"其他经营","value":"0340","key":"0340"},{"children":[],"title":"部门经理","value":"0371","key":"0371"},{"children":[],"title":"总裁/总经理/首席执行官","value":"0301","key":"0301"},{"children":[],"title":"其他策划","value":"0399","key":"0399"},{"children":[],"title":"厂长/副厂长","value":"0305","key":"0305"},{"children":[],"title":"副总经理/总监","value":"0303","key":"0303"},{"children":[],"title":"人力资源总监","value":"0377","key":"0377"},{"children":[],"title":"行政总监","value":"0379","key":"0379"},{"children":[],"title":"市场总监","value":"0375","key":"0375"},{"children":[],"title":"其他管理","value":"0370","key":"0370"},{"children":[],"title":"管理顾问","value":"0345","key":"0345"}],"title":"经营/管理/策划","value":"03","key":"03"},{"children":[{"children":[],"title":"塑性加工/铸造/焊接/切割","value":"1151","key":"1151"},{"children":[],"title":"模具设计","value":"1107","key":"1107"},{"children":[],"title":"设备安装","value":"1169","key":"1169"},{"children":[],"title":"石化通用/矿山机械","value":"1163","key":"1163"},{"children":[],"title":"机床","value":"1161","key":"1161"},{"children":[],"title":"机械制图","value":"1103","key":"1103"},{"children":[],"title":"机械自动化/工业自动化","value":"1159","key":"1159"},{"children":[],"title":"机械设备维修","value":"1105","key":"1105"},{"children":[],"title":"内燃机","value":"1165","key":"1165"},{"children":[],"title":"农用机械","value":"1167","key":"1167"},{"children":[],"title":"汽车/摩托维修","value":"1157","key":"1157"},{"children":[],"title":"汽车/摩托车制造","value":"1155","key":"1155"},{"children":[],"title":"机械设计/制造工艺","value":"1101","key":"1101"},{"children":[],"title":"精密机械/仪器仪表","value":"1153","key":"1153"},{"children":[],"title":"检测技术与仪器/计量测试","value":"1171","key":"1171"},{"children":[],"title":"其他设备维修","value":"1199","key":"1199"}],"title":"机械/设备维修","value":"11","key":"11"},{"children":[{"children":[],"title":"律师助理","value":"2005","key":"2005"},{"children":[],"title":"书记员","value":"2007","key":"2007"},{"children":[],"title":"法律顾问","value":"2003","key":"2003"},{"children":[],"title":"律师","value":"2001","key":"2001"},{"children":[],"title":"其他法律","value":"2099","key":"2099"}],"title":"法律","value":"20","key":"20"},{"children":[{"children":[],"title":"经纪人","value":"1907","key":"1907"},{"children":[],"title":"决策/管理咨询","value":"1951","key":"1951"},{"children":[],"title":"工程咨询","value":"1955","key":"1955"},{"children":[],"title":"婚姻服务","value":"1905","key":"1905"},{"children":[],"title":"其他咨询","value":"1999","key":"1999"},{"children":[],"title":"信息/技术咨询","value":"1953","key":"1953"},{"children":[],"title":"人才中介/职业介绍","value":"1903","key":"1903"},{"children":[],"title":"其他中介","value":"1950","key":"1950"},{"children":[],"title":"市场调查","value":"1957","key":"1957"},{"children":[],"title":"房屋中介","value":"1901","key":"1901"}],"title":"中介/咨询","value":"19","key":"19"},{"children":[{"children":[],"title":"暖通/空调","value":"0613","key":"0613"},{"children":[],"title":"给排水技术","value":"0609","key":"0609"},{"children":[],"title":"港口与航运工程","value":"0631","key":"0631"},{"children":[],"title":"工业与民用建筑","value":"0603","key":"0603"},{"children":[],"title":"其他建筑","value":"0699","key":"0699"},{"children":[],"title":"基础地下工程/岩土工程","value":"0629","key":"0629"},{"children":[],"title":"城市规划/市政工程","value":"0601","key":"0601"},{"children":[],"title":"绘图/建筑制图","value":"0625","key":"0625"},{"children":[],"title":"工程测量测绘","value":"0627","key":"0627"},{"children":[],"title":"水电技术","value":"0611","key":"0611"},{"children":[],"title":"建筑施工管理","value":"0617","key":"0617"},{"children":[],"title":"室内装潢/设计","value":"0623","key":"0623"},{"children":[],"title":"工程预决算","value":"0607","key":"0607"},{"children":[],"title":"建筑设计/结构设计","value":"0605","key":"0605"},{"children":[],"title":"建筑材料/制品","value":"0621","key":"0621"},{"children":[],"title":"路桥工程","value":"0619","key":"0619"},{"children":[],"title":"工程监理","value":"0615","key":"0615"}],"title":"建筑","value":"06","key":"06"},{"children":[{"children":[],"title":"寻呼/声讯服务","value":"3105","key":"3105"},{"children":[],"title":"清洁工/后勤","value":"3109","key":"3109"},{"children":[],"title":"普工/杂工","value":"3111","key":"3111"},{"children":[],"title":"社区服务","value":"3107","key":"3107"},{"children":[],"title":"其他后勤保障","value":"3199","key":"3199"},{"children":[],"title":"保安","value":"3101","key":"3101"},{"children":[],"title":"司机","value":"3103","key":"3103"}],"title":"后勤保障","value":"31","key":"31"},{"children":[{"children":[],"title":"电力生产","value":"2501","key":"2501"},{"children":[],"title":"电气/工业电气化","value":"2573","key":"2573"},{"children":[],"title":"水力发电","value":"2505","key":"2505"},{"children":[],"title":"核力发电","value":"2507","key":"2507"},{"children":[],"title":"光源与照明工程","value":"2549","key":"2549"},{"children":[],"title":"内燃机及热能动力","value":"2547","key":"2547"},{"children":[],"title":"石油/天然气","value":"2541","key":"2541"},{"children":[],"title":"电力供应","value":"2509","key":"2509"},{"children":[],"title":"电力维修/电力拖动","value":"2543","key":"2543"},{"children":[],"title":"制冷/制冷设备","value":"2571","key":"2571"},{"children":[],"title":"火力发电","value":"2503","key":"2503"},{"children":[],"title":"其他电力","value":"2540","key":"2540"},{"children":[],"title":"发配电工程/电力管理","value":"2545","key":"2545"},{"children":[],"title":"其他电气","value":"2599","key":"2599"},{"children":[],"title":"其他能源","value":"2570","key":"2570"}],"title":"电力/能源/电气","value":"25","key":"25"},{"children":[{"children":[],"title":"计划员/调度","value":"1211","key":"1211"},{"children":[],"title":"其他产品/生产","value":"1299","key":"1299"},{"children":[],"title":"采购员","value":"1215","key":"1215"},{"children":[],"title":"ISO专员","value":"1213","key":"1213"},{"children":[],"title":"生产管理","value":"1201","key":"1201"},{"children":[],"title":"物料管理","value":"1205","key":"1205"},{"children":[],"title":"质量管理","value":"1203","key":"1203"},{"children":[],"title":"设备管理","value":"1207","key":"1207"},{"children":[],"title":"安全管理","value":"1209","key":"1209"}],"title":"产品/生产","value":"12","key":"12"},{"children":[{"children":[],"title":"医学研究","value":"2707","key":"2707"},{"children":[],"title":"其他科学研究","value":"2799","key":"2799"},{"children":[],"title":"社会人文科学研究","value":"2709","key":"2709"},{"children":[],"title":"农业科学研究","value":"2705","key":"2705"},{"children":[],"title":"工程和技术研究","value":"2703","key":"2703"},{"children":[],"title":"自然科学研究","value":"2701","key":"2701"}],"title":"科学研究","value":"27","key":"27"},{"children":[{"children":[],"title":"环境保护","value":"1301","key":"1301"},{"children":[],"title":"其他环境保护","value":"1350","key":"1350"},{"children":[],"title":"园林工程/园艺技术","value":"1351","key":"1351"},{"children":[],"title":"绿化工程","value":"1353","key":"1353"},{"children":[],"title":"其他园林","value":"1399","key":"1399"}],"title":"环境保护/园林","value":"13","key":"13"},{"children":[{"children":[],"title":"文秘","value":"0503","key":"0503"},{"children":[],"title":"前台接待/话务员","value":"0509","key":"0509"},{"children":[],"title":"文员/文档管理","value":"0505","key":"0505"},{"children":[],"title":"高级秘书/助理","value":"0501","key":"0501"},{"children":[],"title":"其他文职人员","value":"0599","key":"0599"},{"children":[],"title":"电脑操作员/打字员","value":"0507","key":"0507"}],"title":"文职人员","value":"05","key":"05"},{"children":[{"children":[],"title":"酒店市场拓展","value":"2403","key":"2403"},{"children":[],"title":"大堂经理/主管","value":"2405","key":"2405"},{"children":[],"title":"其他餐饮","value":"2470","key":"2470"},{"children":[],"title":"餐饮/娱乐管理","value":"2441","key":"2441"},{"children":[],"title":"服务员","value":"2445","key":"2445"},{"children":[],"title":"其他旅游","value":"2499","key":"2499"},{"children":[],"title":"厨师/厨师长","value":"2443","key":"2443"},{"children":[],"title":"其他酒店","value":"2440","key":"2440"},{"children":[],"title":"酒店管理","value":"2401","key":"2401"},{"children":[],"title":"导游","value":"2471","key":"2471"}],"title":"酒店/餐饮/旅游","value":"24","key":"24"},{"children":[{"children":[],"title":"染整技术","value":"1703","key":"1703"},{"children":[],"title":"制鞋/制衣/制革","value":"1705","key":"1705"},{"children":[],"title":"纺织/化纤","value":"1701","key":"1701"},{"children":[],"title":"金银首饰加工","value":"1749","key":"1749"},{"children":[],"title":"印刷","value":"1709","key":"1709"},{"children":[],"title":"包装工程","value":"1747","key":"1747"},{"children":[],"title":"陶瓷制品","value":"1748","key":"1748"},{"children":[],"title":"其他轻工","value":"1740","key":"1740"},{"children":[],"title":"制浆/造纸工艺","value":"1707","key":"1707"},{"children":[],"title":"食品工程/糖酒/制糖","value":"1741","key":"1741"}],"title":"轻工/食品/纺织","value":"17","key":"17"},{"children":[{"children":[],"title":"公路运输","value":"1501","key":"1501"},{"children":[],"title":"船舶运输","value":"1507","key":"1507"},{"children":[],"title":"压运员","value":"1511","key":"1511"},{"children":[],"title":"民航运输","value":"1505","key":"1505"},{"children":[],"title":"其他交通运输","value":"1599","key":"1599"},{"children":[],"title":"调度员","value":"1509","key":"1509"},{"children":[],"title":"铁道运输","value":"1503","key":"1503"}],"title":"交通运输","value":"15","key":"15"},{"children":[{"children":[],"title":"初等教育","value":"2107","key":"2107"},{"children":[],"title":"其他教育","value":"2140","key":"2140"},{"children":[],"title":"学前教育","value":"2109","key":"2109"},{"children":[],"title":"高等教育","value":"2101","key":"2101"},{"children":[],"title":"数学/物理/化学教师","value":"2175","key":"2175"},{"children":[],"title":"其他培训","value":"2170","key":"2170"},{"children":[],"title":"英语/计算机教师","value":"2179","key":"2179"},{"children":[],"title":"音乐/舞蹈/美术教师","value":"2177","key":"2177"},{"children":[],"title":"中等教育","value":"2103","key":"2103"},{"children":[],"title":"语文/历史/地理教师","value":"2173","key":"2173"},{"children":[],"title":"家教","value":"2171","key":"2171"},{"children":[],"title":"其他家教","value":"2199","key":"2199"},{"children":[],"title":"职业教育/职业培训","value":"2141","key":"2141"}],"title":"教育/培训/家教","value":"21","key":"21"},{"children":[{"children":[],"title":"出纳/收银","value":"0905","key":"0905"},{"children":[],"title":"其他财务","value":"0940","key":"0940"},{"children":[],"title":"期货","value":"0947","key":"0947"},{"children":[],"title":"证券","value":"0943","key":"0943"},{"children":[],"title":"资产评估/评估师","value":"0953","key":"0953"},{"children":[],"title":"金融/投资分析","value":"0941","key":"0941"},{"children":[],"title":"外汇","value":"0945","key":"0945"},{"children":[],"title":"财务经理/主管","value":"0901","key":"0901"},{"children":[],"title":"其他金融","value":"0970","key":"0970"},{"children":[],"title":"审计/审计师","value":"0971","key":"0971"},{"children":[],"title":"其他审计/统计","value":"0999","key":"0999"},{"children":[],"title":"会计/会计师","value":"0903","key":"0903"},{"children":[],"title":"税务师/税务专员","value":"0955","key":"0955"},{"children":[],"title":"融资经理/主管","value":"0949","key":"0949"},{"children":[],"title":"银行信贷","value":"0951","key":"0951"},{"children":[],"title":"统计","value":"0981","key":"0981"}],"title":"财务/金融/审计","value":"09","key":"09"},{"children":[{"children":[],"title":"技术经理/主管","value":"0201","key":"0201"},{"children":[],"title":"电子商务","value":"0225","key":"0225"},{"children":[],"title":"多媒体设计与开发","value":"0219","key":"0219"},{"children":[],"title":"数据库开发与管理","value":"0205","key":"0205"},{"children":[],"title":"信息系统分析员","value":"0217","key":"0217"},{"children":[],"title":"技术支持工程师","value":"0223","key":"0223"},{"children":[],"title":"系统维护/网络管理/硬件管理","value":"0211","key":"0211"},{"children":[],"title":"其他计算机/网络","value":"0299","key":"0299"},{"children":[],"title":"系统安全管理","value":"0215","key":"0215"},{"children":[],"title":"网页设计制作/网页美工","value":"0209","key":"0209"},{"children":[],"title":"系统集成/技术支持","value":"0213","key":"0213"},{"children":[],"title":"网站信息管理/内容编辑","value":"0207","key":"0207"},{"children":[],"title":"软件开发与测试","value":"0203","key":"0203"},{"children":[],"title":"计算机辅助设计与绘图","value":"0221","key":"0221"}],"title":"计算机/网络","value":"02","key":"02"},{"children":[{"children":[],"title":"影视策划/制作人员","value":"1843","key":"1843"},{"children":[],"title":"编辑","value":"1803","key":"1803"},{"children":[],"title":"发行","value":"1805","key":"1805"},{"children":[],"title":"教练员","value":"1871","key":"1871"},{"children":[],"title":"演艺人员/模特","value":"1845","key":"1845"},{"children":[],"title":"其他文艺","value":"1870","key":"1870"},{"children":[],"title":"体操/健美教练","value":"1875","key":"1875"},{"children":[],"title":"其他文化","value":"1840","key":"1840"},{"children":[],"title":"戏剧舞蹈","value":"1853","key":"1853"},{"children":[],"title":"主持人/播音员/DJ","value":"1841","key":"1841"},{"children":[],"title":"摄影/美术","value":"1851","key":"1851"},{"children":[],"title":"其他体育","value":"1899","key":"1899"},{"children":[],"title":"运动员","value":"1873","key":"1873"},{"children":[],"title":"广播电影电视艺术","value":"1847","key":"1847"},{"children":[],"title":"美术/图形设计","value":"1849","key":"1849"},{"children":[],"title":"新闻采编/记者","value":"1801","key":"1801"}],"title":"文化/艺术/体育","value":"18","key":"18"},{"children":[{"children":[],"title":"钳工/机修工/钣金工","value":"3001","key":"3001"},{"children":[],"title":"裁剪车缝熨烫","value":"3017","key":"3017"},{"children":[],"title":"电焊工/铆焊工","value":"3003","key":"3003"},{"children":[],"title":"电工","value":"3011","key":"3011"},{"children":[],"title":"模具工","value":"3007","key":"3007"},{"children":[],"title":"水工/木工/油漆工","value":"3009","key":"3009"},{"children":[],"title":"空调工/电梯工/锅炉工","value":"3013","key":"3013"},{"children":[],"title":"叉车工","value":"3015","key":"3015"},{"children":[],"title":"其他技师/技工","value":"3099","key":"3099"},{"children":[],"title":"车工/磨床/铣工/冲床/镗床/刨床","value":"3005","key":"3005"}],"title":"技师/技工","value":"30","key":"30"},{"children":[{"children":[],"title":"电子/电器维修","value":"1007","key":"1007"},{"children":[],"title":"电子元器件","value":"1003","key":"1003"},{"children":[],"title":"电子工程","value":"1001","key":"1001"},{"children":[],"title":"无线通信","value":"1075","key":"1075"},{"children":[],"title":"电路设计/电子测试/半导体技术","value":"1043","key":"1043"},{"children":[],"title":"其他电器","value":"1070","key":"1070"},{"children":[],"title":"通讯工程","value":"1071","key":"1071"},{"children":[],"title":"自动控制","value":"1051","key":"1051"},{"children":[],"title":"家用电器","value":"1041","key":"1041"},{"children":[],"title":"弱电工程技术","value":"1047","key":"1047"},{"children":[],"title":"广播电视工程","value":"1077","key":"1077"},{"children":[],"title":"其他通讯","value":"1099","key":"1099"},{"children":[],"title":"有线通信","value":"1073","key":"1073"},{"children":[],"title":"智能大厦/综合布线","value":"1049","key":"1049"},{"children":[],"title":"其他电子","value":"1040","key":"1040"},{"children":[],"title":"单片机/DSP/底层软件开发","value":"1045","key":"1045"}],"title":"电子/电器/通讯","value":"10","key":"10"}]; //应聘职位意向(RS-YPZWYX-2004)
+ export const Q6 = [{"children":[],"title":"工作5年以上","value":"5","key":"5"},{"children":[],"title":"工作3年以上","value":"4","key":"4"},{"children":[],"title":"在读","value":"1","key":"1"},{"children":[],"title":"归国","value":"6","key":"6"},{"children":[],"title":"应届","value":"2","key":"2"},{"children":[],"title":"工作1年以上","value":"3","key":"3"}]; //人员类型(RS-RYLX-2005)
+ export const PV = [{"children":[],"title":"其他原因","value":"9","key":"9"},{"children":[],"title":"因所在机关调整、撤消、合并或者缩减编制员额需要调整工作,本人拒绝合理安排的","value":"3","key":"3"},{"children":[],"title":"矿工或者因公外出、请假期满无正当理由不归连续超过十五天,或者一年内累计超过三十天的","value":"5","key":"5"},{"children":[],"title":"不履行公务员义务,不遵守公务员纪律,经教育仍无转变,不适合继续在机关工作,又不宜给予开除处分的","value":"4","key":"4"},{"children":[],"title":"在年度考核中,连续两年被确定为不称职的","value":"1","key":"1"},{"children":[],"title":"不胜现职工作,又不接受其他安排的","value":"2","key":"2"}]; //辞退原因(RS-CTYY-2005)
+ export const _06 = [{"children":[],"title":"标准表","value":"001","key":"001"},{"children":[],"title":"花名册","value":"004","key":"004"},{"children":[],"title":"后置计算","value":"008","key":"008"},{"children":[],"title":"分析表","value":"003","key":"003"},{"children":[],"title":"统计表","value":"005","key":"005"},{"children":[],"title":"登记表","value":"006","key":"006"},{"children":[],"title":"前置计算","value":"007","key":"007"},{"children":[],"title":"计算公式","value":"002","key":"002"},{"children":[],"title":"清空数据","value":"009","key":"009"}]; //工资变动关联类型
+ export const Q7 = [{"children":[],"title":"不公开","value":"3","key":"3"},{"children":[],"title":"对公众公开","value":"1","key":"1"},{"children":[],"title":"对网站公开","value":"2","key":"2"}]; //信息公开程度(RS-XXGJCD-2005)
+ export const PW = [{"children":[],"title":"工作年限满三十年的","value":"1","key":"1"},{"children":[],"title":"距国家规定的退休年龄不足五年,且工作年限满二十年的","value":"2","key":"2"},{"children":[],"title":"符合国家规定的可以提前退休的其他情形的","value":"9","key":"9"}]; //提前退休原因(RS-TQTXYY-2005)
+ export const _07 = [{"children":[],"title":"平均值","value":"3","key":"3"},{"children":[],"title":"最小值","value":"2","key":"2"},{"children":[],"title":"求和","value":"5","key":"5"},{"children":[],"title":"最大值","value":"1","key":"1"},{"children":[],"title":"运算","value":"6","key":"6"},{"children":[],"title":"中位值","value":"4","key":"4"}]; //表达式类型
+ export const Q8 = [{"children":[],"title":"聘用","value":"3","key":"3"},{"children":[],"title":"调入","value":"1","key":"1"},{"children":[],"title":"不限","value":"0","key":"0"},{"children":[],"title":"兼职","value":"5","key":"5"},{"children":[],"title":"临时","value":"4","key":"4"},{"children":[],"title":"合同","value":"2","key":"2"}]; //工作方式(RS-GZFS-2005)
+ export const _08 = [{"children":[],"title":"空值型","value":"0","key":"0"},{"children":[],"title":"日期型","value":"1","key":"1"},{"children":[],"title":"未知型","value":"4","key":"4"},{"children":[],"title":"字符型","value":"2","key":"2"},{"children":[],"title":"数值型","value":"3","key":"3"}]; //数据类型
+ export const Q9 = [{"children":[],"title":"其他考试","value":"9","key":"9"},{"children":[],"title":"专业技术人员资格考试","value":"1","key":"1"},{"children":[],"title":"公务员考试","value":"2","key":"2"}]; //考试类型(RS-KSLX-2004)
+ export const PX = [{"children":[],"title":"地、市级专家","value":"4","key":"4"},{"children":[{"children":[],"title":"国家级实验室负责人","value":"54","key":"54"},{"children":[],"title":"国家重点项目带头人","value":"53","key":"53"},{"children":[],"title":"国家重点学科带头人","value":"52","key":"52"},{"children":[],"title":"博士生导师","value":"51","key":"51"}],"title":"学术带头人","value":"5","key":"5"},{"children":[],"title":"省、部级专家","value":"3","key":"3"},{"children":[{"children":[],"title":"百千万人才工程国家级人选","value":"23","key":"23"},{"children":[],"title":"全国宣传文化系统“四个一批”人才","value":"26","key":"26"},{"children":[],"title":"有突出贡献的中青年科学、技术、管理专家","value":"22","key":"22"},{"children":[],"title":"国家科技奖项负责人","value":"25","key":"25"},{"children":[],"title":"享受国务院政府特殊津贴专家","value":"24","key":"24"},{"children":[],"title":"全国杰出专业技术人才","value":"21","key":"21"},{"children":[],"title":"国家主管部门批准的其他专家","value":"29","key":"29"}],"title":"国家级专家","value":"2","key":"2"},{"children":[{"children":[],"title":"中国科学院院士","value":"11","key":"11"},{"children":[],"title":"中国工程院院士","value":"12","key":"12"},{"children":[],"title":"外国科学院院士","value":"13","key":"13"}],"title":"院士","value":"1","key":"1"},{"children":[{"children":[],"title":"海外专家","value":"93","key":"93"},{"children":[],"title":"留学回国专家","value":"92","key":"92"},{"children":[],"title":"其他专家","value":"99","key":"99"},{"children":[],"title":"回国(来华)定居专家","value":"91","key":"91"}],"title":"其他高级专家","value":"9","key":"9"},{"children":[{"children":[],"title":"全军有突出贡献专家","value":"61","key":"61"},{"children":[],"title":"大军区级有突出贡献专家","value":"62","key":"62"},{"children":[],"title":"军级有突出贡献专家","value":"63","key":"63"}],"title":"解放军专家","value":"6","key":"6"}]; //专家类别(RS-ZJLB-2004)
+ export const PY = [{"children":[],"title":"重点类","value":"3","key":"3"},{"children":[],"title":"优秀类","value":"1","key":"1"},{"children":[],"title":"启动类","value":"2","key":"2"}]; //资助类别(RS-ZZLB-2005)
+ export const _09 = [{"children":[],"title":"否","value":"2","key":"2"},{"children":[],"title":"是","value":"1","key":"1"}]; //是否
+ export const PZ = [{"children":[],"title":"社科一档和突贡","value":"08","key":"08"},{"children":[],"title":"自科申报特贴一档","value":"01","key":"01"},{"children":[],"title":"社科一档","value":"07","key":"07"},{"children":[],"title":"社科突贡","value":"14","key":"14"},{"children":[],"title":"集团级专家","value":"20","key":"20"},{"children":[],"title":"自科突贡","value":"13","key":"13"},{"children":[],"title":"自科申报特贴一档和突贡","value":"02","key":"02"}]; //专家标识(RS-ZJBS-2005)
+ export const A0 = [{"children":[],"title":"其他","value":"999","key":"999"},{"children":[],"title":"中央、国家级(正)","value":"101","key":"101"},{"children":[],"title":"正营级","value":"271","key":"271"},{"children":[],"title":"正团(副旅)级","value":"261","key":"261"},{"children":[],"title":"副县、副处级","value":"108","key":"108"},{"children":[],"title":"副团级","value":"263","key":"263"},{"children":[],"title":"地、厅、司、局级","value":"105","key":"105"},{"children":[],"title":"正兵团级","value":"231","key":"231"},{"children":[],"title":"股级","value":"111","key":"111"},{"children":[],"title":"正师级","value":"251","key":"251"},{"children":[],"title":"解放军总部级","value":"210","key":"210"},{"children":[],"title":"副兵团级","value":"233","key":"233"},{"children":[],"title":"大行政区(军政委员会)","value":"180","key":"180"},{"children":[],"title":"正军级","value":"241","key":"241"},{"children":[],"title":"大军区副级","value":"223","key":"223"},{"children":[],"title":"大军区正级","value":"221","key":"221"},{"children":[],"title":"副师(正旅)级","value":"253","key":"253"},{"children":[],"title":"乡、科级","value":"109","key":"109"},{"children":[],"title":"中央、国家级(副)","value":"102","key":"102"},{"children":[],"title":"副乡、副科级","value":"110","key":"110"},{"children":[],"title":"排级","value":"290","key":"290"},{"children":[],"title":"外国组织、机构","value":"700","key":"700"},{"children":[],"title":"副营级","value":"273","key":"273"},{"children":[],"title":"副地、副厅、副司、副局级","value":"106","key":"106"},{"children":[],"title":"省、部级","value":"103","key":"103"},{"children":[],"title":"国际组织、机构","value":"600","key":"600"},{"children":[],"title":"副省、副部级","value":"104","key":"104"},{"children":[],"title":"正连级","value":"281","key":"281"},{"children":[],"title":"县、处级","value":"107","key":"107"},{"children":[],"title":"无级别","value":"800","key":"800"},{"children":[],"title":"中央军委级","value":"200","key":"200"},{"children":[],"title":"班级","value":"2A0","key":"2A0"},{"children":[],"title":"副军级","value":"243","key":"243"},{"children":[],"title":"副连级","value":"283","key":"283"}]; //单位级别(ZRB03-1994/DWJB)
+ export const A1 = [{"children":[],"title":"军转安置","value":"A","key":"A"},{"children":[],"title":"考试录用任职","value":"5","key":"5"},{"children":[],"title":"行政命令任职","value":"2","key":"2"},{"children":[],"title":"会议选举任职","value":"3","key":"3"},{"children":[],"title":"转任","value":"C","key":"C"},{"children":[],"title":"聘用任职","value":"4","key":"4"},{"children":[],"title":"当选","value":"B","key":"B"},{"children":[],"title":"调任","value":"D","key":"D"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"党委(党组)决定任职","value":"1","key":"1"}]; //任职方式代码(ZRB11-1994/RZFS)
+ export const QA = [{"children":[],"title":"创办企业","value":"21","key":"21"},{"children":[],"title":"国有企业","value":"18","key":"18"},{"children":[],"title":"高科技企业","value":"17","key":"17"},{"children":[],"title":"航空","value":"13","key":"13"},{"children":[],"title":"金融","value":"06","key":"06"},{"children":[],"title":"保险","value":"07","key":"07"},{"children":[],"title":"税务系统","value":"08","key":"08"},{"children":[],"title":"冶金系统","value":"16","key":"16"},{"children":[],"title":"安全部门","value":"05","key":"05"},{"children":[],"title":"铁路","value":"12","key":"12"},{"children":[],"title":"检查系统","value":"02","key":"02"},{"children":[],"title":"外资企业","value":"19","key":"19"},{"children":[],"title":"能源系统","value":"15","key":"15"},{"children":[],"title":"法院系统","value":"03","key":"03"},{"children":[],"title":"公安部门","value":"01","key":"01"},{"children":[],"title":"司法系统","value":"04","key":"04"},{"children":[],"title":"电信","value":"10","key":"10"},{"children":[],"title":"私营企业","value":"20","key":"20"},{"children":[],"title":"公路交通","value":"14","key":"14"},{"children":[],"title":"工商系统","value":"09","key":"09"},{"children":[],"title":"其他企业","value":"29","key":"29"},{"children":[],"title":"石化","value":"11","key":"11"}]; //自主择业就业行业(RS-ZZZY-2004)
+ export const QB = [{"children":[],"title":"病退","value":"5","key":"5"},{"children":[],"title":"在职","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"离休","value":"2","key":"2"},{"children":[],"title":"内退","value":"4","key":"4"},{"children":[],"title":"下岗","value":"6","key":"6"},{"children":[],"title":"退休","value":"3","key":"3"},{"children":[],"title":"失业","value":"7","key":"7"}]; //军转干部岗位状态(RS-JZGBGW-2004)
+ export const A2 = [{"children":[{"children":[],"title":"社会力量所设科学技术奖励","value":"28","key":"28"},{"children":[],"title":"国家级科学技术奖","value":"21","key":"21"},{"children":[],"title":"省部级科学技术奖励","value":"22","key":"22"},{"children":[],"title":"省(自治区、直辖市、特别行政区)科学技术奖","value":"24","key":"24"},{"children":[],"title":"省(部)级以下的各种奖励","value":"23","key":"23"}],"title":"科学技术奖励","value":"2","key":"2"},{"children":[{"children":[],"title":"其他教学成果奖励","value":"49","key":"49"},{"children":[],"title":"国家教学成果奖","value":"41","key":"41"}],"title":"教学成果奖励","value":"4","key":"4"},{"children":[],"title":"其他奖励","value":"9","key":"9"},{"children":[{"children":[],"title":"全国性文艺奖励","value":"32","key":"32"},{"children":[],"title":"全国性新闻奖励","value":"33","key":"33"},{"children":[],"title":"全国性出版奖励","value":"34","key":"34"},{"children":[],"title":"精神文明建设奖励","value":"31","key":"31"}],"title":"全国性文艺新闻出版奖励","value":"3","key":"3"},{"children":[{"children":[],"title":"模范公务员","value":"050","key":"050"},{"children":[],"title":"十佳少先队辅导员","value":"020","key":"020"},{"children":[],"title":"十大农民女状元","value":"040","key":"040"},{"children":[],"title":"杰出(优秀)青年卫士","value":"022","key":"022"},{"children":[],"title":"杰出专业技术人才","value":"064","key":"064"},{"children":[],"title":"农村青年创业致富带头人","value":"025","key":"025"},{"children":[],"title":"三八红旗手","value":"014","key":"014"},{"children":[],"title":"优秀学生干部","value":"019","key":"019"},{"children":[],"title":"优秀工会积极分子","value":"010","key":"010"},{"children":[],"title":"“不让毒品进我家”先进个人","value":"044","key":"044"},{"children":[],"title":"劳动模范","value":"004","key":"004"},{"children":[],"title":"未成年人保护杰出(优秀)公民","value":"030","key":"030"},{"children":[],"title":"优秀党务工作者","value":"008","key":"008"},{"children":[],"title":"杰出青年农民","value":"024","key":"024"},{"children":[],"title":"优秀毕业生","value":"017","key":"017"},{"children":[],"title":"优秀毕业生奖章","value":"0920","key":"0920"},{"children":[],"title":"“巾帼建功”标兵","value":"043","key":"043"},{"children":[],"title":"优秀知识分子","value":"015","key":"015"},{"children":[],"title":"英雄航天员","value":"003","key":"003"},{"children":[],"title":"航天英雄","value":"002","key":"002"},{"children":[],"title":"青年科学家奖","value":"060","key":"060"},{"children":[],"title":"航天功勋奖章","value":"0902","key":"0902"},{"children":[],"title":"十大绿化女状元","value":"042","key":"042"},{"children":[],"title":"二等功奖章","value":"0915","key":"0915"},{"children":[],"title":"一级英雄模范奖章","value":"0912","key":"0912"},{"children":[],"title":"优秀工会工作者","value":"009","key":"009"},{"children":[],"title":"技术能手","value":"071","key":"071"},{"children":[],"title":"优秀共青团员","value":"018","key":"018"},{"children":[],"title":"一等功奖章","value":"0914","key":"0914"},{"children":[],"title":"中国青年五四奖章","value":"0921","key":"0921"},{"children":[],"title":"全国宣传文化系统“四个一批”人才","value":"063","key":"063"},{"children":[],"title":"青年科技创新奖","value":"061","key":"061"},{"children":[],"title":"技术协作能手","value":"011","key":"011"},{"children":[],"title":"劳动英雄","value":"005","key":"005"},{"children":[],"title":"新长征突击手","value":"012","key":"012"},{"children":[],"title":"“双学双比”先进女能手","value":"041","key":"041"},{"children":[],"title":"“两弹一星”功勋奖章","value":"0901","key":"0901"},{"children":[],"title":"青年岗位能手","value":"021","key":"021"},{"children":[],"title":"二级英雄模范奖章","value":"0913","key":"0913"},{"children":[],"title":"十大杰出青年","value":"023","key":"023"},{"children":[],"title":"杰出(优秀)进城务工青年","value":"026","key":"026"},{"children":[],"title":"五四新闻奖","value":"029","key":"029"},{"children":[],"title":"各族青年团结进步杰出(优秀)奖","value":"028","key":"028"},{"children":[],"title":"杰出(优秀)青年外事工作者","value":"027","key":"027"},{"children":[],"title":"三好学生","value":"016","key":"016"},{"children":[],"title":"五一劳动奖章","value":"0911","key":"0911"},{"children":[],"title":"先进生产者","value":"006","key":"006"},{"children":[],"title":"人民满意的公务员","value":"051","key":"051"},{"children":[],"title":"中国青年科技奖","value":"062","key":"062"},{"children":[],"title":"中华技能大奖","value":"070","key":"070"},{"children":[],"title":"维护妇女儿童权益先进个人","value":"045","key":"045"},{"children":[],"title":"优秀共青团干部","value":"013","key":"013"},{"children":[],"title":"特级劳动模范","value":"001","key":"001"},{"children":[],"title":"优秀共产党员","value":"007","key":"007"},{"children":[],"title":"三等功奖章","value":"0916","key":"0916"},{"children":[],"title":"雏鹰奖章","value":"0922","key":"0922"}],"title":"荣誉称号/奖章","value":"0","key":"0"},{"children":[],"title":"国外奖励","value":"8","key":"8"},{"children":[{"children":[],"title":"中国人民解放军军人工作成绩奖励","value":"13","key":"13"},{"children":[],"title":"共青团内奖励","value":"14","key":"14"},{"children":[],"title":"公务员工作成绩奖励","value":"11","key":"11"},{"children":[],"title":"企(事)业职工工作成绩奖励","value":"12","key":"12"}],"title":"工作成绩奖励","value":"1","key":"1"}]; //奖励代码(ZRB65-2006/JLDM)
+ export const QC = [{"children":[],"title":"企业倒闭","value":"1","key":"1"},{"children":[],"title":"企业分流人员","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"人个原因解聘","value":"3","key":"3"},{"children":[],"title":"协议解除劳动关系","value":"4","key":"4"}]; //下岗失业原因(RS-XGSYYY-2004)
+ export const A3 = [{"children":[],"title":"驻外国使节","value":"777","key":"777"},{"children":[],"title":"科技日报社","value":"379","key":"379"},{"children":[],"title":"最高人民法院","value":"281","key":"281"},{"children":[],"title":"吉林省人民检察院","value":"B27","key":"B27"},{"children":[],"title":"福建省委组织部","value":"C5B","key":"C5B"},{"children":[],"title":"国家信访局","value":"611","key":"611"},{"children":[],"title":"山西省人大常委会","value":"A43","key":"A43"},{"children":[],"title":"中国人民解放军总参谋部","value":"J13","key":"J13"},{"children":[],"title":"财政部","value":"437","key":"437"},{"children":[],"title":"水利部","value":"453","key":"453"},{"children":[],"title":"全国人大教育科学文化卫生委员会","value":"229","key":"229"},{"children":[],"title":"青海省人民政府","value":"F31","key":"F31"},{"children":[],"title":"国务院港澳事务办公室","value":"557","key":"557"},{"children":[],"title":"国家开发投资公司","value":"GA9","key":"GA9"},{"children":[],"title":"内蒙古自治区高级人民法院","value":"A56","key":"A56"},{"children":[],"title":"中国建设银行股份有限公司","value":"717","key":"717"},{"children":[],"title":"安徽省人民政府","value":"C41","key":"C41"},{"children":[],"title":"中共新疆维吾尔自治区委员会","value":"F50","key":"F50"},{"children":[],"title":"中国科学技术协会","value":"821","key":"821"},{"children":[],"title":"甘肃省","value":"F29","key":"F29"},{"children":[],"title":"经济日报社","value":"375","key":"375"},{"children":[],"title":"中国人民解放军军事科学院","value":"J21","key":"J21"},{"children":[],"title":"辽宁省委组织部","value":"B1B","key":"B1B"},{"children":[],"title":"政协河南省委员会","value":"D14","key":"D14"},{"children":[],"title":"国有重点大型企业监事会","value":"641","key":"641"},{"children":[],"title":"2010年上海世界博览会组织委员会","value":"767","key":"767"},{"children":[],"title":"中国航空工业第二集团公司","value":"G21","key":"G21"},{"children":[],"title":"中共贵州省委员会","value":"E20","key":"E20"},{"children":[],"title":"人民日报社","value":"369","key":"369"},{"children":[],"title":"中国民用航空总局","value":"521","key":"521"},{"children":[],"title":"中国石油化工集团公司","value":"G51","key":"G51"},{"children":[],"title":"中央宣传思想工作领导小组","value":"131","key":"131"},{"children":[],"title":"宋庆龄基金会","value":"831","key":"831"},{"children":[],"title":"浙江省高级人民法院","value":"C36","key":"C36"},{"children":[],"title":"江苏省南京市","value":"C2D","key":"C2D"},{"children":[],"title":"中国人民解放军空军","value":"J33","key":"J33"},{"children":[],"title":"中共海南省委员会","value":"D60","key":"D60"},{"children":[],"title":"中共吉林省纪律检查委员会","value":"B22","key":"B22"},{"children":[],"title":"国家自然科学基金委员会","value":"597","key":"597"},{"children":[],"title":"内蒙古自治区人民政府","value":"A51","key":"A51"},{"children":[],"title":"青海省人大常委会","value":"F33","key":"F33"},{"children":[],"title":"中国核工业集团公司","value":"G11","key":"G11"},{"children":[],"title":"中共江苏省纪律检查委员会","value":"C22","key":"C22"},{"children":[],"title":"中国红十字会","value":"841","key":"841"},{"children":[],"title":"中共山西省委员会","value":"A40","key":"A40"},{"children":[],"title":"中国华能集团公司","value":"G37","key":"G37"},{"children":[],"title":"中国农业大学","value":"H27","key":"H27"},{"children":[],"title":"宁夏回族自治区人民检察院","value":"F47","key":"F47"},{"children":[],"title":"吉林省委组织部","value":"B2B","key":"B2B"},{"children":[],"title":"中国证券监督管理委员会","value":"589","key":"589"},{"children":[],"title":"重庆市委组织部","value":"E0B","key":"E0B"},{"children":[],"title":"广东省委组织部","value":"D4B","key":"D4B"},{"children":[],"title":"中共中央党史研究室","value":"361","key":"361"},{"children":[],"title":"中国国民党革命委员会中央委员会机关","value":"M11","key":"M11"},{"children":[],"title":"武汉大学","value":"H47","key":"H47"},{"children":[],"title":"中共中央宣传部","value":"317","key":"317"},{"children":[],"title":"天津大学","value":"H45","key":"H45"},{"children":[],"title":"国务院信息化工作办公室","value":"755","key":"755"},{"children":[],"title":"中国人民解放军国防大学","value":"J23","key":"J23"},{"children":[],"title":"湖南省","value":"D39","key":"D39"},{"children":[],"title":"复旦大学","value":"H19","key":"H19"},{"children":[],"title":"国家宗教事务局","value":"541","key":"541"},{"children":[],"title":"南开大学","value":"H43","key":"H43"},{"children":[],"title":"中共上海市纪律检查委员会","value":"C12","key":"C12"},{"children":[],"title":"中国五矿集团公司","value":"GA1","key":"GA1"},{"children":[],"title":"四川省","value":"E19","key":"E19"},{"children":[],"title":"北京理工大学","value":"H29","key":"H29"},{"children":[],"title":"江西省委组织部","value":"C6B","key":"C6B"},{"children":[],"title":"中国致公党中央委员会机关","value":"M21","key":"M21"},{"children":[],"title":"中共浙江省纪律检查委员会","value":"C32","key":"C32"},{"children":[],"title":"山东省青岛市","value":"C7E","key":"C7E"},{"children":[],"title":"黄河水利委员会","value":"791","key":"791"},{"children":[],"title":"中国人民政治协商会议全国委员会","value":"041","key":"041"},{"children":[],"title":"宁夏回族自治区人大常委会","value":"F43","key":"F43"},{"children":[],"title":"中国移动通信集团公司","value":"G63","key":"G63"},{"children":[],"title":"全国社会保障基金理事会","value":"595","key":"595"},{"children":[],"title":"辽宁省大连市","value":"B1E","key":"B1E"},{"children":[],"title":"中共河南省委员会","value":"D10","key":"D10"},{"children":[],"title":"政协四川省委员会","value":"E14","key":"E14"},{"children":[],"title":"浙江省人民政府","value":"C31","key":"C31"},{"children":[],"title":"中共青海省纪律检查委员会","value":"F32","key":"F32"},{"children":[],"title":"广西壮族自治区人民检察院","value":"D57","key":"D57"},{"children":[],"title":"重庆市人大常委会","value":"E03","key":"E03"},{"children":[],"title":"中国船舶工业集团公司","value":"G23","key":"G23"},{"children":[],"title":"海南省","value":"D69","key":"D69"},{"children":[],"title":"中共重庆市委员会","value":"E00","key":"E00"},{"children":[],"title":"中国人民武装警察部队","value":"911","key":"911"},{"children":[],"title":"四川省高级人民法院","value":"E16","key":"E16"},{"children":[],"title":"中共中央马克思恩格斯列宁斯大林著作编译局","value":"363","key":"363"},{"children":[],"title":"清华大学","value":"H13","key":"H13"},{"children":[],"title":"贵州省人大常委会","value":"E23","key":"E23"},{"children":[],"title":"西藏自治区党委组织部","value":"E4B","key":"E4B"},{"children":[],"title":"安徽省","value":"C49","key":"C49"},{"children":[],"title":"国务院发展研究中心","value":"579","key":"579"},{"children":[],"title":"中国人民解放军广州军区","value":"J51","key":"J51"},{"children":[],"title":"中共北京市纪律检查委员会","value":"A12","key":"A12"},{"children":[],"title":"青海省委组织部","value":"F3B","key":"F3B"},{"children":[],"title":"中共宁夏回族自治区纪律检查委员会","value":"F42","key":"F42"},{"children":[],"title":"中国铝业公司","value":"G85","key":"G85"},{"children":[],"title":"山东省委组织部","value":"C7B","key":"C7B"},{"children":[],"title":"国家发展和改革委员会","value":"417","key":"417"},{"children":[],"title":"中央人才工作协调小组","value":"147","key":"147"},{"children":[],"title":"国务院扶贫开发领导小组办公室","value":"761","key":"761"},{"children":[],"title":"中国人民解放军第二炮兵","value":"J35","key":"J35"},{"children":[],"title":"山西省委组织部","value":"A4B","key":"A4B"},{"children":[],"title":"国家电力监管委员会","value":"593","key":"593"},{"children":[],"title":"中央港澳工作协调小组","value":"125","key":"125"},{"children":[],"title":"国家文物局","value":"625","key":"625"},{"children":[],"title":"国务院办公厅","value":"411","key":"411"},{"children":[],"title":"中共中央办公厅","value":"313","key":"313"},{"children":[],"title":"中共广西壮族自治区委员会","value":"D50","key":"D50"},{"children":[],"title":"中国工程物理研究院","value":"771","key":"771"},{"children":[],"title":"政协山西省委员会","value":"A44","key":"A44"},{"children":[],"title":"中共湖南省委员会","value":"D30","key":"D30"},{"children":[],"title":"中共河北省纪律检查委员会","value":"A32","key":"A32"},{"children":[],"title":"中国银行股份有限公司","value":"711","key":"711"},{"children":[],"title":"中国华电集团公司","value":"G41","key":"G41"},{"children":[],"title":"常驻联合国代表、副代表及其他国际组织代表","value":"779","key":"779"},{"children":[],"title":"中国人民解放军北京军区","value":"J43","key":"J43"},{"children":[],"title":"中共辽宁省纪律检查委员会","value":"B12","key":"B12"},{"children":[],"title":"陕西省人大常委会","value":"F13","key":"F13"},{"children":[],"title":"全国人大农业与农村委员会","value":"237","key":"237"},{"children":[],"title":"国务院机关事务管理局","value":"545","key":"545"},{"children":[],"title":"四川大学","value":"H41","key":"H41"},{"children":[],"title":"中国农业科学院","value":"793","key":"793"},{"children":[],"title":"中国民主促进会中央委员会机关","value":"M17","key":"M17"},{"children":[],"title":"辽宁省人民政府","value":"B11","key":"B11"},{"children":[],"title":"中央澳门工作委员会","value":"355","key":"355"},{"children":[],"title":"中国农工民主党中央委员会机关","value":"M19","key":"M19"},{"children":[],"title":"西北工业大学","value":"H33","key":"H33"},{"children":[],"title":"上海证券交易所","value":"785","key":"785"},{"children":[],"title":"湖南省人大常委会","value":"D33","key":"D33"},{"children":[],"title":"安徽省委组织部","value":"C4B","key":"C4B"},{"children":[],"title":"全国人大环境与资源保护委员会","value":"235","key":"235"},{"children":[],"title":"湖北省","value":"D29","key":"D29"},{"children":[],"title":"重庆市人民政府","value":"E01","key":"E01"},{"children":[],"title":"华中科技大学","value":"H55","key":"H55"},{"children":[],"title":"中国储备粮管理总公司","value":"GA7","key":"GA7"},{"children":[],"title":"南京大学","value":"H39","key":"H39"},{"children":[],"title":"新疆维吾尔自治区人民检察院","value":"F57","key":"F57"},{"children":[],"title":"中共福建省纪律检查委员会","value":"C52","key":"C52"},{"children":[],"title":"国家电网公司","value":"G33","key":"G33"},{"children":[],"title":"北京市人大常委会","value":"A13","key":"A13"},{"children":[],"title":"中央密码工作领导小组","value":"151","key":"151"},{"children":[],"title":"中共甘肃省纪律检查委员会","value":"F22","key":"F22"},{"children":[],"title":"青海省高级人民法院","value":"F36","key":"F36"},{"children":[],"title":"江西省人民检查院","value":"C67","key":"C67"},{"children":[],"title":"中华人民共和国国务院","value":"021","key":"021"},{"children":[],"title":"中国科学技术大学","value":"H25","key":"H25"},{"children":[],"title":"广东省人民政府","value":"D41","key":"D41"},{"children":[],"title":"中华全国总工会","value":"811","key":"811"},{"children":[],"title":"中共云南省纪律检查委员会","value":"E32","key":"E32"},{"children":[],"title":"政协江苏省委员会","value":"C24","key":"C24"},{"children":[],"title":"政协河北省委员会","value":"A34","key":"A34"},{"children":[],"title":"中国地质调查局","value":"773","key":"773"},{"children":[],"title":"政协内蒙古自治区委员会","value":"A54","key":"A54"},{"children":[],"title":"光明日报社","value":"373","key":"373"},{"children":[],"title":"浙江省人民检察院","value":"C37","key":"C37"},{"children":[],"title":"黑龙江省人民检察院","value":"B37","key":"B37"},{"children":[],"title":"中共广西壮族自治区纪律检查委员会","value":"D52","key":"D52"},{"children":[],"title":"湖北省人民政府","value":"D21","key":"D21"},{"children":[],"title":"政协贵州省委员会","value":"E24","key":"E24"},{"children":[],"title":"河南省人民政府","value":"D11","key":"D11"},{"children":[],"title":"中共海南省纪律检查委员会","value":"D62","key":"D62"},{"children":[],"title":"中国银行业监督管理委员会","value":"587","key":"587"},{"children":[],"title":"中国科学院","value":"573","key":"573"},{"children":[],"title":"中共天津市委员会","value":"A20","key":"A20"},{"children":[],"title":"中国人民解放军海军","value":"J31","key":"J31"},{"children":[],"title":"中国航天科技集团公司","value":"G15","key":"G15"},{"children":[],"title":"新疆生产建设兵团","value":"F5Y","key":"F5Y"},{"children":[],"title":"中国工程院","value":"577","key":"577"},{"children":[],"title":"河北省高级人民法院","value":"A36","key":"A36"},{"children":[],"title":"山东省人民政府","value":"C71","key":"C71"},{"children":[],"title":"福建省人大常委会","value":"C53","key":"C53"},{"children":[],"title":"中华人民共和国","value":"020","key":"020"},{"children":[],"title":"中央财经领导小组","value":"111","key":"111"},{"children":[],"title":"中国海洋石油总公司","value":"G53","key":"G53"},{"children":[],"title":"中央档案馆(国家档案局)","value":"367","key":"367"},{"children":[],"title":"香港中旅(集团)有限公司","value":"GB5","key":"GB5"},{"children":[],"title":"中央外事工作领导小组办公室","value":"335","key":"335"},{"children":[],"title":"中央反腐败协调小组","value":"129","key":"129"},{"children":[],"title":"中国人民解放军济南军区","value":"J47","key":"J47"},{"children":[],"title":"国家环境保护总局","value":"519","key":"519"},{"children":[],"title":"广西壮族自治区人大常委会","value":"D53","key":"D53"},{"children":[],"title":"湖北省武汉市","value":"D2D","key":"D2D"},{"children":[],"title":"江苏省人民政府","value":"C21","key":"C21"},{"children":[],"title":"国家统计局","value":"531","key":"531"},{"children":[],"title":"中国人民解放军沈阳军区","value":"J41","key":"J41"},{"children":[],"title":"宁夏回族自治区党委组织部","value":"F4B","key":"F4B"},{"children":[],"title":"中国第一重型机械集团公司","value":"G71","key":"G71"},{"children":[],"title":"云南省","value":"E39","key":"E39"},{"children":[],"title":"中国共产党中央书记处","value":"014","key":"014"},{"children":[],"title":"陕西省","value":"F19","key":"F19"},{"children":[],"title":"中共中央纪律检察委员会机关","value":"311","key":"311"},{"children":[],"title":"甘肃省委组织部","value":"F2B","key":"F2B"},{"children":[],"title":"内蒙古自治区党委组织部","value":"A5B","key":"A5B"},{"children":[],"title":"国家工商行政管理总局","value":"515","key":"515"},{"children":[],"title":"中央对外宣传工作领导小组","value":"143","key":"143"},{"children":[],"title":"政协广西壮族自治区委员会","value":"D54","key":"D54"},{"children":[],"title":"全国人大法律委员会","value":"223","key":"223"},{"children":[],"title":"中央人民政府驻香港特别行政区联络办公室","value":"781","key":"781"},{"children":[],"title":"国家税务总局","value":"513","key":"513"},{"children":[],"title":"中国第二重型机械集团公司","value":"G73","key":"G73"},{"children":[],"title":"中央国家安全工作领导小组办公室","value":"337","key":"337"},{"children":[],"title":"国家林业局","value":"533","key":"533"},{"children":[],"title":"江苏省委组织部","value":"C2B","key":"C2B"},{"children":[],"title":"中央国家安全工作领导小组","value":"113","key":"113"},{"children":[],"title":"国家知识产权局","value":"537","key":"537"},{"children":[],"title":"福建省","value":"C59","key":"C59"},{"children":[],"title":"西藏自治区人民政府","value":"E41","key":"E41"},{"children":[],"title":"中共山东省纪律检查委员会","value":"C72","key":"C72"},{"children":[],"title":"政协广东省委员会","value":"D44","key":"D44"},{"children":[],"title":"重庆市人民检察院","value":"E07","key":"E07"},{"children":[],"title":"中央保健委员会","value":"153","key":"153"},{"children":[],"title":"上海市委组织部","value":"C1B","key":"C1B"},{"children":[],"title":"中国电力投资集团公司","value":"G45","key":"G45"},{"children":[],"title":"公安部","value":"427","key":"427"},{"children":[],"title":"审计署","value":"467","key":"467"},{"children":[],"title":"中共陕西省委员会","value":"F10","key":"F10"},{"children":[],"title":"中共中央政法委员会机关","value":"329","key":"329"},{"children":[],"title":"海南省人大常委会","value":"D63","key":"D63"},{"children":[],"title":"中国航空工业第一集团公司","value":"G19","key":"G19"},{"children":[],"title":"河南省委组织部","value":"D1B","key":"D1B"},{"children":[],"title":"宁夏回族自治区人民政府","value":"F41","key":"F41"},{"children":[],"title":"浙江省杭州市","value":"C3D","key":"C3D"},{"children":[],"title":"政协宁夏回族自治区委员会","value":"F44","key":"F44"},{"children":[],"title":"中共中央政法委员会","value":"127","key":"127"},{"children":[],"title":"黑龙江省哈尔滨市","value":"B3D","key":"B3D"},{"children":[],"title":"中华全国工商业联合会","value":"839","key":"839"},{"children":[],"title":"国务院振兴东北地区等老工业基地领导小组办公室","value":"759","key":"759"},{"children":[],"title":"国务院三峡工程建设委员会","value":"161","key":"161"},{"children":[],"title":"福建省厦门市","value":"C5E","key":"C5E"},{"children":[],"title":"中国人民解放军总政治部","value":"J15","key":"J15"},{"children":[],"title":"广西壮族自治区","value":"D59","key":"D59"},{"children":[],"title":"四川省人民检察院","value":"E17","key":"E17"},{"children":[],"title":"全国人大常委会法治工作委员会","value":"215","key":"215"},{"children":[],"title":"中共贵州省纪律检查委员会","value":"E22","key":"E22"},{"children":[],"title":"河南省高级人民法院","value":"D16","key":"D16"},{"children":[],"title":"吉林省人民政府","value":"B21","key":"B21"},{"children":[],"title":"福建省人民政府","value":"C51","key":"C51"},{"children":[],"title":"国家食品药品监督管理局","value":"535","key":"535"},{"children":[],"title":"青海省","value":"F39","key":"F39"},{"children":[],"title":"海关总署","value":"511","key":"511"},{"children":[],"title":"上海交通大学","value":"H21","key":"H21"},{"children":[],"title":"贵州省高级人民法院","value":"E26","key":"E26"},{"children":[],"title":"中国长江三峡工程开发总公司","value":"G47","key":"G47"},{"children":[],"title":"宝钢集团有限公司","value":"G81","key":"G81"},{"children":[],"title":"山东省人民检察院","value":"C77","key":"C77"},{"children":[],"title":"政协陕西省委员会","value":"F14","key":"F14"},{"children":[],"title":"东风汽车公司","value":"G69","key":"G69"},{"children":[],"title":"广西壮族自治区高级人民法院","value":"D56","key":"D56"},{"children":[],"title":"四川省人大常委会","value":"E13","key":"E13"},{"children":[],"title":"中共内蒙古自治区委员会","value":"A50","key":"A50"},{"children":[],"title":"江西省人大常委会","value":"C63","key":"C63"},{"children":[],"title":"政协海南省委员会","value":"D64","key":"D64"},{"children":[],"title":"政协湖北省委员会","value":"D24","key":"D24"},{"children":[],"title":"政协甘肃省委员会","value":"F24","key":"F24"},{"children":[],"title":"全国人民代表大会常务委员会","value":"031","key":"031"},{"children":[],"title":"国务院三峡工程建设委员会办公室(国务院三峡工程建设委员会三峡工程稽察办公室)","value":"751","key":"751"},{"children":[],"title":"陕西省西安市","value":"F1D","key":"F1D"},{"children":[],"title":"中共广东省委员会","value":"D40","key":"D40"},{"children":[],"title":"国务院法制办公室","value":"553","key":"553"},{"children":[],"title":"中国远洋运输(集团)总公司","value":"G87","key":"G87"},{"children":[],"title":"武汉钢铁(集团)公司","value":"G83","key":"G83"},{"children":[],"title":"中国共产党中央政治局常务委员会","value":"013","key":"013"},{"children":[],"title":"中国石油天然气集团公司","value":"G49","key":"G49"},{"children":[],"title":"最高人民检察院","value":"291","key":"291"},{"children":[],"title":"中共湖北省委员会","value":"D20","key":"D20"},{"children":[],"title":"河北省","value":"A39","key":"A39"},{"children":[],"title":"政协上海市委员会","value":"C14","key":"C14"},{"children":[],"title":"贵州省","value":"E29","key":"E29"},{"children":[],"title":"中共辽宁省委员会","value":"B10","key":"B10"},{"children":[],"title":"山东省","value":"C79","key":"C79"},{"children":[],"title":"全国人大常委会预算工作委员会","value":"217","key":"217"},{"children":[],"title":"中国延安干部学院","value":"385","key":"385"},{"children":[],"title":"科学技术部","value":"421","key":"421"},{"children":[],"title":"黑龙江省高级人民法院","value":"B36","key":"B36"},{"children":[],"title":"天津市","value":"A29","key":"A29"},{"children":[],"title":"中南大学","value":"H65","key":"H65"},{"children":[],"title":"中国电子科技集团公司","value":"G31","key":"G31"},{"children":[],"title":"全国人民代表大会","value":"030","key":"030"},{"children":[],"title":"中央党的建设工作领导小组","value":"123","key":"123"},{"children":[],"title":"上海市人民政府","value":"C11","key":"C11"},{"children":[],"title":"中央防范和处理邪教问题领导小组办公室","value":"343","key":"343"},{"children":[],"title":"国家外汇管理局","value":"627","key":"627"},{"children":[],"title":"甘肃省人大常委会","value":"F23","key":"F23"},{"children":[],"title":"中国航空集团公司","value":"G91","key":"G91"},{"children":[],"title":"中国航天科工集团公司","value":"G17","key":"G17"},{"children":[],"title":"中共青海省委员会","value":"F30","key":"F30"},{"children":[],"title":"国家海洋局","value":"619","key":"619"},{"children":[],"title":"辽宁省人大常委会","value":"B13","key":"B13"},{"children":[],"title":"卫生部","value":"461","key":"461"},{"children":[],"title":"九三学社中央委员会机关","value":"M23","key":"M23"},{"children":[],"title":"山西省","value":"A49","key":"A49"},{"children":[],"title":"中共新疆维吾尔自治区纪律检查委员会","value":"F52","key":"F52"},{"children":[],"title":"中国浦东干部学院","value":"381","key":"381"},{"children":[],"title":"中共江西省委员会","value":"C60","key":"C60"},{"children":[],"title":"海南省高级人民法院","value":"D66","key":"D66"},{"children":[],"title":"中央防范和处理邪教问题领导小组","value":"139","key":"139"},{"children":[],"title":"国家安全部","value":"429","key":"429"},{"children":[],"title":"中共中央国家机关工作委员会","value":"349","key":"349"},{"children":[],"title":"国家能源领导小组办公室","value":"763","key":"763"},{"children":[],"title":"哈尔滨工业大学","value":"H35","key":"H35"},{"children":[],"title":"中共浙江省委员会","value":"C30","key":"C30"},{"children":[],"title":"陕西省高级人民法院","value":"F16","key":"F16"},{"children":[],"title":"中央机构编制委员会办公室","value":"331","key":"331"},{"children":[],"title":"福建省人民检察院","value":"C57","key":"C57"},{"children":[],"title":"政协福建省委员会","value":"C54","key":"C54"},{"children":[],"title":"河北省人民政府","value":"A31","key":"A31"},{"children":[],"title":"青海省人民检察院","value":"F37","key":"F37"},{"children":[],"title":"中央精神文明建设指导委员会办公室","value":"339","key":"339"},{"children":[],"title":"云南省高级人民法院","value":"E36","key":"E36"},{"children":[],"title":"中国中信集团公司","value":"729","key":"729"},{"children":[],"title":"西北农林科技大学","value":"H51","key":"H51"},{"children":[],"title":"政协新疆维吾尔自治区委员会","value":"F54","key":"F54"},{"children":[],"title":"中国井冈山干部学院","value":"383","key":"383"},{"children":[],"title":"国务院南水北调工程建设委员会","value":"171","key":"171"},{"children":[],"title":"中共宁夏回族自治区委员会","value":"F40","key":"F40"},{"children":[],"title":"中国地震局","value":"583","key":"583"},{"children":[],"title":"国家旅游局","value":"539","key":"539"},{"children":[],"title":"上海市人民检察院","value":"C17","key":"C17"},{"children":[],"title":"山西省高级人民法院","value":"A46","key":"A46"},{"children":[],"title":"中共吉林省委员会","value":"B20","key":"B20"},{"children":[],"title":"中国人民银行","value":"465","key":"465"},{"children":[],"title":"山东省济南市","value":"C7D","key":"C7D"},{"children":[],"title":"政协北京市委员会","value":"A14","key":"A14"},{"children":[],"title":"招商局集团有限公司","value":"GB1","key":"GB1"},{"children":[],"title":"同济大学","value":"H63","key":"H63"},{"children":[],"title":"广东省高级人民法院","value":"D46","key":"D46"},{"children":[],"title":"贵州省委组织部","value":"E2B","key":"E2B"},{"children":[],"title":"中国人民对外友好协会","value":"829","key":"829"},{"children":[],"title":"中国网络通信集团公司","value":"G59","key":"G59"},{"children":[],"title":"中国人民解放军兰州军区","value":"J45","key":"J45"},{"children":[],"title":"湖南省委组织部","value":"D3B","key":"D3B"},{"children":[],"title":"浙江省委组织部","value":"C3B","key":"C3B"},{"children":[],"title":"中央农村工作领导小组","value":"145","key":"145"},{"children":[],"title":"云南省人民检察院","value":"E37","key":"E37"},{"children":[],"title":"中央军委办公厅","value":"J11","key":"J11"},{"children":[],"title":"中共中央对外联络部","value":"321","key":"321"},{"children":[],"title":"中国工商银行股份有限公司","value":"715","key":"715"},{"children":[],"title":"西藏自治区高级人民法院","value":"E46","key":"E46"},{"children":[],"title":"农业部","value":"455","key":"455"},{"children":[],"title":"国家国防动员委员会","value":"157","key":"157"},{"children":[],"title":"全国人大财政经济委员会","value":"227","key":"227"},{"children":[],"title":"中共中央直属机关工作委员会","value":"347","key":"347"},{"children":[],"title":"中央财经领导小组办公室","value":"333","key":"333"},{"children":[],"title":"中共山东委员会","value":"C70","key":"C70"},{"children":[],"title":"政协吉林省委员会","value":"B24","key":"B24"},{"children":[],"title":"山西省人民检察院","value":"A47","key":"A47"},{"children":[],"title":"中国大唐集团公司","value":"G39","key":"G39"},{"children":[],"title":"中国通用技术(集团)控股有限责任公司","value":"GA3","key":"GA3"},{"children":[],"title":"交通银行股份有限公司","value":"719","key":"719"},{"children":[],"title":"新疆维吾尔自治区","value":"F59","key":"F59"},{"children":[],"title":"国务院、中央军委专门委员会","value":"159","key":"159"},{"children":[],"title":"中国气象局","value":"585","key":"585"},{"children":[],"title":"当代中国研究所","value":"775","key":"775"},{"children":[],"title":"山西省人民政府","value":"A41","key":"A41"},{"children":[],"title":"山东省高级人民法院","value":"C76","key":"C76"},{"children":[],"title":"国家粮食局","value":"613","key":"613"},{"children":[],"title":"北京市委组织部","value":"A1B","key":"A1B"},{"children":[],"title":"全国人大内务司法委员会","value":"225","key":"225"},{"children":[],"title":"台湾民主自治同盟中央委员会机关","value":"M25","key":"M25"},{"children":[],"title":"国家测绘局","value":"621","key":"621"},{"children":[],"title":"山东大学","value":"H57","key":"H57"},{"children":[],"title":"没有编码的单位","value":"999","key":"999"},{"children":[],"title":"政协云南省委员会","value":"E34","key":"E34"},{"children":[],"title":"云南省人民政府","value":"E31","key":"E31"},{"children":[],"title":"政协黑龙江省委员会","value":"B34","key":"B34"},{"children":[],"title":"中国共产党全国代表大会","value":"010","key":"010"},{"children":[],"title":"国务院振兴东北地区等老工业基地领导小组","value":"173","key":"173"},{"children":[],"title":"外交部","value":"413","key":"413"},{"children":[],"title":"国家开发银行","value":"721","key":"721"},{"children":[],"title":"中共福建省委员会","value":"C50","key":"C50"},{"children":[],"title":"政协天津市委员会","value":"A24","key":"A24"},{"children":[],"title":"中共黑龙江省委员会","value":"B30","key":"B30"},{"children":[],"title":"中国船舶重工集团公司","value":"G25","key":"G25"},{"children":[],"title":"中国国际贸易促进委员会(中国国际商会)","value":"827","key":"827"},{"children":[],"title":"国家体育总局","value":"527","key":"527"},{"children":[],"title":"吉林大学","value":"H53","key":"H53"},{"children":[],"title":"江西省高级人民法院","value":"C66","key":"C66"},{"children":[],"title":"西藏自治区人民检察院","value":"E47","key":"E47"},{"children":[],"title":"陕西省人民政府","value":"F11","key":"F11"},{"children":[],"title":"吉林省人大常委会","value":"B23","key":"B23"},{"children":[],"title":"海南省人民检察院","value":"D67","key":"D67"},{"children":[],"title":"安徽省人大常委会","value":"C43","key":"C43"},{"children":[],"title":"国务院研究室","value":"555","key":"555"},{"children":[],"title":"黑龙江省委组织部","value":"B3B","key":"B3B"},{"children":[],"title":"全国政协办公厅","value":"251","key":"251"},{"children":[],"title":"北京大学","value":"H11","key":"H11"},{"children":[],"title":"中国文学艺术界联合会","value":"817","key":"817"},{"children":[],"title":"陕西省委组织部","value":"F1B","key":"F1B"},{"children":[],"title":"中央保密委员会","value":"149","key":"149"},{"children":[],"title":"国土资源部","value":"443","key":"443"},{"children":[],"title":"宁夏回族自治区高级人民法院","value":"F46","key":"F46"},{"children":[],"title":"国务院新闻办公室","value":"563","key":"563"},{"children":[],"title":"中央社会治安综合治理委员会","value":"137","key":"137"},{"children":[],"title":"安徽省人民检察院","value":"C47","key":"C47"},{"children":[],"title":"中国残疾人联合会","value":"835","key":"835"},{"children":[],"title":"文化部","value":"459","key":"459"},{"children":[],"title":"中国保险监督管理委员会","value":"591","key":"591"},{"children":[],"title":"陕西省人民检察院","value":"F17","key":"F17"},{"children":[],"title":"安徽省高级人民法院","value":"C46","key":"C46"},{"children":[],"title":"中共重庆市纪律检查委员会","value":"E02","key":"E02"},{"children":[],"title":"云南省人大常委会","value":"E33","key":"E33"},{"children":[],"title":"中国光大(集团)总公司","value":"727","key":"727"},{"children":[],"title":"中国东方航空集团公司","value":"G93","key":"G93"},{"children":[],"title":"中央外事工作领导小组","value":"115","key":"115"},{"children":[],"title":"河北省人民检察院","value":"A37","key":"A37"},{"children":[],"title":"东南大学","value":"H59","key":"H59"},{"children":[],"title":"中央维护稳定工作领导小组","value":"135","key":"135"},{"children":[],"title":"中国海运(集团)总公司","value":"G89","key":"G89"},{"children":[],"title":"重庆大学","value":"H69","key":"H69"},{"children":[],"title":"上海市高级人民法院","value":"C16","key":"C16"},{"children":[],"title":"中国兵器装备集团公司","value":"G29","key":"G29"},{"children":[],"title":"中央西藏工作协调小组(中央对达赖集团斗争协调小组)","value":"121","key":"121"},{"children":[],"title":"教育部","value":"419","key":"419"},{"children":[],"title":"中国民主建国会中央委员会机关","value":"M15","key":"M15"},{"children":[],"title":"中共中央党校","value":"357","key":"357"},{"children":[],"title":"上海市","value":"C19","key":"C19"},{"children":[],"title":"中华全国归国华侨联合会","value":"823","key":"823"},{"children":[],"title":"民政部","value":"433","key":"433"},{"children":[],"title":"大连理工大学","value":"H67","key":"H67"},{"children":[],"title":"四川省人民政府","value":"E11","key":"E11"},{"children":[],"title":"海南省人民政府","value":"D61","key":"D61"},{"children":[],"title":"国家中医药管理局","value":"629","key":"629"},{"children":[],"title":"河北省人大常委会","value":"A33","key":"A33"},{"children":[],"title":"中国共产主义青年团中央委员会","value":"813","key":"813"},{"children":[],"title":"天津市委组织部","value":"A2B","key":"A2B"},{"children":[],"title":"河南省","value":"D19","key":"D19"},{"children":[],"title":"中华全国台湾同胞联谊会","value":"843","key":"843"},{"children":[],"title":"中共湖南省纪律检查委员会","value":"D32","key":"D32"},{"children":[],"title":"国家人口和计划生育委员会","value":"463","key":"463"},{"children":[],"title":"国有重点金融机构监事会","value":"643","key":"643"},{"children":[],"title":"中国人民解放军成都军区","value":"J53","key":"J53"},{"children":[],"title":"中共四川省委员会","value":"E10","key":"E10"},{"children":[],"title":"新疆维吾尔自治区高级人民法院","value":"F56","key":"F56"},{"children":[],"title":"神华集团有限责任公司","value":"G55","key":"G55"},{"children":[],"title":"江西省","value":"C69","key":"C69"},{"children":[],"title":"中共云南省委员会","value":"E30","key":"E30"},{"children":[],"title":"中央机构编制委员会","value":"119","key":"119"},{"children":[],"title":"政协重庆市委员会","value":"E04","key":"E04"},{"children":[],"title":"全国人大常委会办公厅研究室","value":"213","key":"213"},{"children":[],"title":"中国核工业建设集团公司","value":"G13","key":"G13"},{"children":[],"title":"交通部","value":"449","key":"449"},{"children":[],"title":"劳动和社会保障部","value":"441","key":"441"},{"children":[],"title":"政协西藏自治区委员会","value":"E44","key":"E44"},{"children":[],"title":"政协浙江省委员会","value":"C34","key":"C34"},{"children":[],"title":"政协江西省委员会","value":"C64","key":"C64"},{"children":[],"title":"中国人民政治协商会议","value":"040","key":"040"},{"children":[],"title":"辽宁省","value":"B19","key":"B19"},{"children":[],"title":"湖北省人大常委会","value":"D23","key":"D23"},{"children":[],"title":"江苏省高级人民法院","value":"C26","key":"C26"},{"children":[],"title":"国家广播电影电视总局","value":"523","key":"523"},{"children":[],"title":"新华通讯社","value":"571","key":"571"},{"children":[],"title":"湖南省人民检察院","value":"D37","key":"D37"},{"children":[],"title":"中国外文出版发行事业局","value":"365","key":"365"},{"children":[],"title":"司法部","value":"435","key":"435"},{"children":[],"title":"湖南省人民政府","value":"D31","key":"D31"},{"children":[],"title":"湖北省人民检察院","value":"D27","key":"D27"},{"children":[],"title":"甘肃省人民政府","value":"F21","key":"F21"},{"children":[],"title":"国家能源领导小组","value":"175","key":"175"},{"children":[],"title":"北京航空航天大学","value":"H31","key":"H31"},{"children":[],"title":"西安交通大学","value":"H23","key":"H23"},{"children":[],"title":"广西壮族自治区党委组织部","value":"D5B","key":"D5B"},{"children":[],"title":"西藏自治区人大常委会","value":"E43","key":"E43"},{"children":[],"title":"广东省深圳市","value":"D4E","key":"D4E"},{"children":[],"title":"国防部","value":"415","key":"415"},{"children":[],"title":"国务院防范和处理邪教问题办公室","value":"559","key":"559"},{"children":[],"title":"中国社会科学院","value":"575","key":"575"},{"children":[],"title":"内蒙古自治区人民检察院","value":"A57","key":"A57"},{"children":[],"title":"宁夏回族自治区","value":"F49","key":"F49"},{"children":[],"title":"信息产业部","value":"451","key":"451"},{"children":[],"title":"中共中央组织部","value":"315","key":"315"},{"children":[],"title":"中共江苏省委员会","value":"C20","key":"C20"},{"children":[],"title":"北京市人民检察院","value":"A17","key":"A17"},{"children":[],"title":"浙江省人大常委会","value":"C33","key":"C33"},{"children":[],"title":"甘肃省高级人民法院","value":"F26","key":"F26"},{"children":[],"title":"新疆维吾尔自治区人民政府","value":"F51","key":"F51"},{"children":[],"title":"国务院西部地区开发领导小组","value":"167","key":"167"},{"children":[],"title":"中共江西省纪律检查委员会","value":"C62","key":"C62"},{"children":[],"title":"广东省广州市","value":"D4D","key":"D4D"},{"children":[],"title":"国家新闻出版总署(国家版权局)","value":"525","key":"525"},{"children":[],"title":"中共中央企业工作委员会","value":"351","key":"351"},{"children":[],"title":"中共内蒙古自治区纪律检查委员会","value":"A52","key":"A52"},{"children":[],"title":"中共西藏自治区委员会","value":"E40","key":"E40"},{"children":[],"title":"黑龙江省人民政府","value":"B31","key":"B31"},{"children":[],"title":"中央人民政府驻澳门特别行政区联络办公室","value":"783","key":"783"},{"children":[],"title":"中共四川省纪律检查委员会","value":"E12","key":"E12"},{"children":[],"title":"政协山东省委员会","value":"C74","key":"C74"},{"children":[],"title":"全国政协办公厅研究室","value":"253","key":"253"},{"children":[],"title":"中国作家协会","value":"819","key":"819"},{"children":[],"title":"国务院国有资产监督管理委员会","value":"741","key":"741"},{"children":[],"title":"中央精神文明建设指导委员会","value":"133","key":"133"},{"children":[],"title":"商务部","value":"457","key":"457"},{"children":[],"title":"兰州大学","value":"H71","key":"H71"},{"children":[],"title":"中国共产党中央军事委员会","value":"015","key":"015"},{"children":[],"title":"河南省人大常委会","value":"D13","key":"D13"},{"children":[],"title":"中共中央文献研究室","value":"359","key":"359"},{"children":[],"title":"河南省人民检察院","value":"D17","key":"D17"},{"children":[],"title":"深圳证券交易所","value":"787","key":"787"},{"children":[],"title":"中国进出口银行","value":"723","key":"723"},{"children":[],"title":"中国南方航空集团公司","value":"G95","key":"G95"},{"children":[],"title":"政协湖南省委员会","value":"D34","key":"D34"},{"children":[],"title":"辽宁省沈阳市","value":"B1D","key":"B1D"},{"children":[],"title":"中央党史领导小组","value":"155","key":"155"},{"children":[],"title":"全国人大常委会办公厅","value":"211","key":"211"},{"children":[],"title":"北京市高级人民法院","value":"A16","key":"A16"},{"children":[],"title":"中国共产党中央政治局","value":"012","key":"012"},{"children":[],"title":"辽宁省高级人民法院","value":"B16","key":"B16"},{"children":[],"title":"中共西藏自治区纪律检查委员会","value":"E42","key":"E42"},{"children":[],"title":"中央新疆工作协调小组","value":"141","key":"141"},{"children":[],"title":"中共安徽省纪律检查委员会","value":"C42","key":"C42"},{"children":[],"title":"中国共产党中央委员会","value":"011","key":"011"},{"children":[],"title":"江西省人民政府","value":"C61","key":"C61"},{"children":[],"title":"重庆市","value":"E09","key":"E09"},{"children":[],"title":"中国人民解放军总装备部","value":"J19","key":"J19"},{"children":[],"title":"江苏省人民检察院","value":"C27","key":"C27"},{"children":[],"title":"四川省委组织部","value":"E1B","key":"E1B"},{"children":[],"title":"中共北京市委员会","value":"A10","key":"A10"},{"children":[],"title":"北京师范大学","value":"H17","key":"H17"},{"children":[],"title":"2010年上海世界博览会执行委员会","value":"769","key":"769"},{"children":[],"title":"中共甘肃省委员会","value":"F20","key":"F20"},{"children":[],"title":"国家民族事务委员会","value":"425","key":"425"},{"children":[],"title":"中国民主同盟中央委员会机关","value":"M13","key":"M13"},{"children":[],"title":"中国电子信息产业集团公司","value":"G65","key":"G65"},{"children":[],"title":"中国南方电网有限责任公司","value":"G35","key":"G35"},{"children":[],"title":"国务院台湾事务办公室","value":"561","key":"561"},{"children":[],"title":"西藏自治区","value":"E49","key":"E49"},{"children":[],"title":"中共陕西省纪律检查委员会","value":"F12","key":"F12"},{"children":[],"title":"中央香港工作委员会","value":"353","key":"353"},{"children":[],"title":"国家行政学院","value":"581","key":"581"},{"children":[],"title":"鞍山钢铁集团公司","value":"G79","key":"G79"},{"children":[],"title":"北京奥运会组委会","value":"765","key":"765"},{"children":[],"title":"政协青海省委员会","value":"F34","key":"F34"},{"children":[],"title":"中共河南省纪律检查委员会","value":"D12","key":"D12"},{"children":[],"title":"海南省委组织部","value":"D6B","key":"D6B"},{"children":[],"title":"广西壮族自治区人民政府","value":"D51","key":"D51"},{"children":[],"title":"中央对台工作领导小组","value":"117","key":"117"},{"children":[],"title":"黑龙江省","value":"B39","key":"B39"},{"children":[],"title":"哈尔滨电站设备集团公司","value":"G75","key":"G75"},{"children":[],"title":"中央港澳工作协调小组办公室","value":"345","key":"345"},{"children":[],"title":"浙江省宁波市","value":"C3E","key":"C3E"},{"children":[],"title":"国家煤矿安全监察局","value":"631","key":"631"},{"children":[],"title":"长江水利委员会","value":"789","key":"789"},{"children":[],"title":"中国电信集团公司","value":"G57","key":"G57"},{"children":[],"title":"国家质量监督检验检疫总局","value":"517","key":"517"},{"children":[],"title":"广东省人大常委会","value":"D43","key":"D43"},{"children":[],"title":"贵州省人民检察院","value":"E27","key":"E27"},{"children":[],"title":"国务院西部地区开发领导小组办公室","value":"753","key":"753"},{"children":[],"title":"中共中央台湾工作办公室","value":"325","key":"325"},{"children":[],"title":"中共安徽省委员会","value":"C40","key":"C40"},{"children":[],"title":"国家外国专家局","value":"617","key":"617"},{"children":[],"title":"中华全国妇女联合会","value":"815","key":"815"},{"children":[],"title":"中华人民共和国中央军事委员会","value":"022","key":"022"},{"children":[],"title":"中共中央政策研究室","value":"323","key":"323"},{"children":[],"title":"国家邮政局","value":"623","key":"623"},{"children":[],"title":"甘肃省人民检察院","value":"F27","key":"F27"},{"children":[],"title":"中国日报社","value":"377","key":"377"},{"children":[],"title":"国务院南水北调工程建设委员会办公室","value":"757","key":"757"},{"children":[],"title":"黑龙江省人大常委会","value":"B33","key":"B33"},{"children":[],"title":"中共山西省纪律检查委员会","value":"A42","key":"A42"},{"children":[],"title":"中国农业银行","value":"713","key":"713"},{"children":[],"title":"天津市高级人民法院","value":"A26","key":"A26"},{"children":[],"title":"中共广东省纪律检查委员会","value":"D42","key":"D42"},{"children":[],"title":"上海市人大常委会","value":"C13","key":"C13"},{"children":[],"title":"中国人民大学","value":"H15","key":"H15"},{"children":[],"title":"浙江省","value":"C39","key":"C39"},{"children":[],"title":"中共天津市纪律检查委员会","value":"A22","key":"A22"},{"children":[],"title":"全国人大华侨委员会","value":"233","key":"233"},{"children":[],"title":"政协辽宁省委员会","value":"B14","key":"B14"},{"children":[],"title":"中共湖北省纪律检查委员会","value":"D22","key":"D22"},{"children":[],"title":"国防科学技术工业委员会","value":"423","key":"423"},{"children":[],"title":"新疆维吾尔自治区党委组织部","value":"F5B","key":"F5B"},{"children":[],"title":"中国人民解放军南京军区","value":"J49","key":"J49"},{"children":[],"title":"新疆维吾尔自治区人大常委会","value":"F53","key":"F53"},{"children":[],"title":"吉林省","value":"B29","key":"B29"},{"children":[],"title":"全国人大民族委员会","value":"221","key":"221"},{"children":[],"title":"厦门大学","value":"H61","key":"H61"},{"children":[],"title":"铁道部","value":"447","key":"447"},{"children":[],"title":"人事部","value":"439","key":"439"},{"children":[],"title":"中央维护稳定工作领导小组办公室","value":"341","key":"341"},{"children":[],"title":"政协安徽省委员会","value":"C44","key":"C44"},{"children":[],"title":"江苏省人大常委会","value":"C23","key":"C23"},{"children":[],"title":"中国老龄协会","value":"837","key":"837"},{"children":[],"title":"内蒙古自治区人大常委会","value":"A53","key":"A53"},{"children":[],"title":"中华全国新闻工作者协会","value":"833","key":"833"},{"children":[],"title":"中国人民解放军国防科技大学","value":"J25","key":"J25"},{"children":[],"title":"河北省委组织部","value":"A3B","key":"A3B"},{"children":[],"title":"中共河北省委员会","value":"A30","key":"A30"},{"children":[],"title":"中共中央对外宣传办公室","value":"327","key":"327"},{"children":[],"title":"中国新建集团公司","value":"F5Z","key":"F5Z"},{"children":[],"title":"中国国电集团公司","value":"G43","key":"G43"},{"children":[],"title":"国家烟草专卖局","value":"615","key":"615"},{"children":[],"title":"湖南省高级人民法院","value":"D36","key":"D36"},{"children":[],"title":"中国农业发展银行","value":"725","key":"725"},{"children":[],"title":"中山大学","value":"H49","key":"H49"},{"children":[],"title":"华润(集团)有限公司","value":"GB3","key":"GB3"},{"children":[],"title":"中国东方电气集团公司","value":"G77","key":"G77"},{"children":[],"title":"广东省人民检察院","value":"D47","key":"D47"},{"children":[],"title":"中国共产党中央纪律检查委员会","value":"016","key":"016"},{"children":[],"title":"山东省人大常委会","value":"C73","key":"C73"},{"children":[],"title":"天津市人大常委会","value":"A23","key":"A23"},{"children":[],"title":"国务院参事室","value":"543","key":"543"},{"children":[],"title":"中共上海市委员会","value":"C10","key":"C10"},{"children":[],"title":"中共中央统一战线工作部","value":"319","key":"319"},{"children":[],"title":"天津市人民政府","value":"A21","key":"A21"},{"children":[],"title":"国家科技教育领导小组","value":"165","key":"165"},{"children":[],"title":"北京市人民政府","value":"A11","key":"A11"},{"children":[],"title":"中华全国供销合作总社","value":"825","key":"825"},{"children":[],"title":"湖北省高级人民法院","value":"D26","key":"D26"},{"children":[],"title":"江苏省","value":"C29","key":"C29"},{"children":[],"title":"中共黑龙江省纪律检查委员会","value":"B32","key":"B32"},{"children":[],"title":"湖北省委组织部","value":"D2B","key":"D2B"},{"children":[],"title":"中国人民解放军总后勤部","value":"J17","key":"J17"},{"children":[],"title":"建设部","value":"445","key":"445"},{"children":[],"title":"中国建筑工程总公司","value":"GA5","key":"GA5"},{"children":[],"title":"吉林省长春市","value":"B2D","key":"B2D"},{"children":[],"title":"贵州省人民政府","value":"E21","key":"E21"},{"children":[],"title":"北京市","value":"A19","key":"A19"},{"children":[],"title":"四川省成都市","value":"E1D","key":"E1D"},{"children":[],"title":"福建省高级人民法院","value":"C56","key":"C56"},{"children":[],"title":"云南省委组织部","value":"E3B","key":"E3B"},{"children":[],"title":"内蒙古自治区","value":"A59","key":"A59"},{"children":[],"title":"重庆市高级人民法院","value":"E06","key":"E06"},{"children":[],"title":"中国粮油食品(集团)有限公司","value":"G99","key":"G99"},{"children":[],"title":"国务院侨务办公室","value":"551","key":"551"},{"children":[],"title":"广东省","value":"D49","key":"D49"},{"children":[],"title":"中国第一汽车集团公司","value":"G67","key":"G67"},{"children":[],"title":"求是杂志社","value":"371","key":"371"},{"children":[],"title":"监察部","value":"431","key":"431"},{"children":[],"title":"国务院扶贫开发领导小组","value":"163","key":"163"},{"children":[],"title":"吉林省高级人民法院","value":"B26","key":"B26"},{"children":[],"title":"国家安全生产监督管理总局","value":"529","key":"529"},{"children":[],"title":"中国联合通信有限公司","value":"G61","key":"G61"},{"children":[],"title":"辽宁省人民检察院","value":"B17","key":"B17"},{"children":[],"title":"中国中化集团公司","value":"G97","key":"G97"},{"children":[],"title":"天津市人民检察院","value":"A27","key":"A27"},{"children":[],"title":"中国兵器工业集团公司","value":"G27","key":"G27"},{"children":[],"title":"国家信息化领导小组","value":"169","key":"169"},{"children":[],"title":"全国人大外事委员会","value":"231","key":"231"},{"children":[],"title":"浙江大学","value":"H37","key":"H37"}]; //机构名称代码(ZRB02-2006/JGMC)
+ export const QD = [{"children":[],"title":"自谋职业","value":"1","key":"1"},{"children":[],"title":"政府购买公益岗位","value":"4","key":"4"},{"children":[],"title":"政府购买公益岗位","value":"3","key":"3"},{"children":[],"title":"企业吸纳","value":"2","key":"2"}]; //再就业情况(RS-ZJY-2004)
+ export const A4 = [{"children":[],"title":"硕士","value":"3","key":"3"},{"children":[],"title":"技校","value":"51","key":"51"},{"children":[],"title":"专科","value":"31","key":"31"},{"children":[],"title":"小学","value":"81","key":"81"},{"children":[],"title":"中专","value":"41","key":"41"},{"children":[],"title":"初中","value":"71","key":"71"},{"children":[],"title":"高中","value":"61","key":"61"},{"children":[],"title":"双学士","value":"5","key":"5"},{"children":[],"title":"博士","value":"2","key":"2"},{"children":[],"title":"本科","value":"21","key":"21"}]; //学历学位标识
+ export const QE = [{"children":[],"title":"回原籍","value":"2","key":"2"},{"children":[],"title":"跨省接收","value":"1","key":"1"}]; //跨省接收(RS-KSJS-2004)
+ export const QF = [{"children":[],"title":"自主择业(符合第十九条)","value":"1901","key":"1901"},{"children":[],"title":"符合第十八条","value":"1899","key":"1899"},{"children":[],"title":"其他","value":"9999","key":"9999"},{"children":[],"title":"配偶所在地(双军人单转)","value":"2023","key":"2023"},{"children":[],"title":"因公致残(符合第十九条)","value":"1904","key":"1904"},{"children":[],"title":"符合第十七条","value":"1799","key":"1799"},{"children":[],"title":"配偶所在地(符合第十六条)","value":"1603","key":"1603"},{"children":[],"title":"符合第二十一条","value":"2199","key":"2199"},{"children":[],"title":"入伍地(双军人单转)(符合第二十条)","value":"2022","key":"2022"},{"children":[],"title":"原籍(符合第十六条)","value":"1601","key":"1601"},{"children":[],"title":"双军人同转(符合第二十条)","value":"2011","key":"2011"},{"children":[],"title":"入伍地(符合第十六条)","value":"1602","key":"1602"},{"children":[],"title":"原籍(双军人单转)(符合第二十条)","value":"2021","key":"2021"},{"children":[],"title":"满十年(符合第十九条)","value":"1902","key":"1902"},{"children":[],"title":"立功(符合第十九条)","value":"1903","key":"1903"}]; //符合接收条件类别(RS-FHJSTJ-2004)
+ export const QG = [{"children":[],"title":"海关","value":"10","key":"10"},{"children":[],"title":"检察","value":"06","key":"06"},{"children":[],"title":"司法","value":"05","key":"05"},{"children":[],"title":"审计","value":"14","key":"14"},{"children":[],"title":"工商","value":"08","key":"08"},{"children":[],"title":"法院","value":"07","key":"07"},{"children":[],"title":"税务","value":"09","key":"09"},{"children":[],"title":"保险","value":"02","key":"02"},{"children":[],"title":"证监委","value":"15","key":"15"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"中央企业","value":"17","key":"17"},{"children":[],"title":"安全","value":"04","key":"04"},{"children":[],"title":"银行","value":"01","key":"01"},{"children":[],"title":"边检","value":"12","key":"12"},{"children":[],"title":"公安","value":"03","key":"03"},{"children":[],"title":"保监委","value":"16","key":"16"},{"children":[],"title":"检疫","value":"13","key":"13"},{"children":[],"title":"民航","value":"11","key":"11"}]; //计划分配中央直管系统接收类别(RS-JHFPZY-2004)
+ export const QH = [{"children":[],"title":"住地方商品房","value":"8","key":"8"},{"children":[],"title":"住部队其他类型房","value":"5","key":"5"},{"children":[],"title":"住部队经济适用房","value":"1","key":"1"},{"children":[],"title":"住部队房改房","value":"2","key":"2"},{"children":[],"title":"租住部队营房","value":"4","key":"4"},{"children":[],"title":"住部队集资建住房","value":"3","key":"3"},{"children":[],"title":"住出租房","value":"9","key":"9"},{"children":[],"title":"住地方房改房","value":"7","key":"7"},{"children":[],"title":"住父母亲戚家或其他","value":"0","key":"0"},{"children":[],"title":"住地方经济适用房","value":"6","key":"6"}]; //住房类别(RS-ZFLB-2004)
+ export const QI = [{"children":[],"title":"党费资助","value":"2","key":"2"},{"children":[],"title":"临时救助和健康检查","value":"5","key":"5"},{"children":[],"title":"党费资助和健康检查","value":"6","key":"6"},{"children":[],"title":"临时救助","value":"1","key":"1"},{"children":[],"title":"健康检查","value":"3","key":"3"},{"children":[],"title":"临时救助和党费资助","value":"4","key":"4"},{"children":[],"title":"其他救助","value":"9","key":"9"}]; //个案解决情况(RS-GAJJ-2004)
+ export const QJ = [{"children":[],"title":"养老金","value":"2","key":"2"},{"children":[],"title":"个人经营性收入","value":"6","key":"6"},{"children":[],"title":"工资","value":"1","key":"1"},{"children":[],"title":"失业保险金","value":"5","key":"5"},{"children":[],"title":"政府最低生活保障金","value":"4","key":"4"},{"children":[],"title":"其他收入","value":"9","key":"9"},{"children":[],"title":"企业基本生活费","value":"3","key":"3"}]; //个人收入来源(RS-GRSRLY-2004)
+ export const QK = [{"children":[],"title":"非常困难","value":"4","key":"4"},{"children":[],"title":"富裕","value":"1","key":"1"},{"children":[],"title":"困难","value":"3","key":"3"},{"children":[],"title":"一般","value":"2","key":"2"}]; //家庭经济状况(RS-JTJJZK-2004)
+ export const QL = [{"children":[],"title":"组织纳入个人未参加","value":"2","key":"2"},{"children":[],"title":"组织未纳入","value":"3","key":"3"},{"children":[],"title":"组织纳入个人参加","value":"1","key":"1"}]; //参加党组织生活情况(RS-DZZSH-2004)
+ export const QM = [{"children":[],"title":"计划分配","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"自谋职业","value":"2","key":"2"},{"children":[],"title":"复员改转业","value":"3","key":"3"}]; //安置方式(RS-AZFS-2004)
+ export const QN = [{"children":[],"title":"按技术移交","value":"2","key":"2"},{"children":[],"title":"按行政移交","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"}]; //移交方式(RS-YJFS-2004)
+ export const QO = [{"children":[],"title":"随迁","value":"2","key":"2"},{"children":[],"title":"随带","value":"1","key":"1"}]; //随带随迁情况(RS-SDSQQK-2004)
+ export const QP = [{"children":[],"title":"随军","value":"1","key":"1"},{"children":[],"title":"随队","value":"2","key":"2"}]; //随军情况(RS-SJQK-2004)
+ export const QQ = [{"children":[],"title":"招聘","value":"5","key":"5"},{"children":[],"title":"功绩制分配","value":"7","key":"7"},{"children":[],"title":"军转安置","value":"4","key":"4"},{"children":[],"title":"聘用","value":"1","key":"1"},{"children":[],"title":"双向选择分配","value":"6","key":"6"},{"children":[],"title":"国家统一分配","value":"3","key":"3"},{"children":[],"title":"考试","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"}]; //进入方式(RS-JRFS-2004)
+ export const QR = [{"children":[],"title":"中等城市","value":"2","key":"2"},{"children":[],"title":"县城","value":"3","key":"3"},{"children":[],"title":"乡镇","value":"4","key":"4"},{"children":[],"title":"大城市","value":"1","key":"1"}]; //安置去向分布(RS-AZQX-2004)
+ export const AB = [{"children":[{"children":[],"title":"山东烟台市","value":"3706","key":"3706"},{"children":[],"title":"山东日照市","value":"3711","key":"3711"},{"children":[],"title":"山东东营市","value":"3705","key":"3705"},{"children":[],"title":"山东莱芜市","value":"3712","key":"3712"},{"children":[],"title":"山东威海市","value":"3710","key":"3710"},{"children":[],"title":"山东淄博市","value":"3703","key":"3703"},{"children":[],"title":"山东泰安市","value":"3709","key":"3709"},{"children":[],"title":"山东潍坊市","value":"3707","key":"3707"},{"children":[],"title":"山东聊城市","value":"3715","key":"3715"},{"children":[],"title":"山东菏泽市","value":"3717","key":"3717"},{"children":[],"title":"山东济宁市","value":"3708","key":"3708"},{"children":[],"title":"山东枣庄市","value":"3704","key":"3704"},{"children":[],"title":"山东德州市","value":"3714","key":"3714"},{"children":[],"title":"山东临沂市","value":"3713","key":"3713"},{"children":[],"title":"山东滨州市","value":"3716","key":"3716"},{"children":[],"title":"山东青岛市","value":"3702","key":"3702"},{"children":[],"title":"山东济南市","value":"3701","key":"3701"}],"title":"山东省","value":"37","key":"37"},{"children":[{"children":[],"title":"黑龙江哈尔滨市","value":"2301","key":"2301"},{"children":[],"title":"黑龙江鹤岗市","value":"2304","key":"2304"},{"children":[],"title":"黑龙江牡丹江市","value":"2310","key":"2310"},{"children":[],"title":"黑龙江佳木斯市","value":"2308","key":"2308"},{"children":[],"title":"黑龙江伊春市","value":"2307","key":"2307"},{"children":[],"title":"黑龙江鸡西市","value":"2303","key":"2303"},{"children":[],"title":"黑龙江大庆市","value":"2306","key":"2306"},{"children":[],"title":"黑龙江大兴安岭地区","value":"2327","key":"2327"},{"children":[],"title":"黑龙江绥化市","value":"2312","key":"2312"},{"children":[],"title":"黑龙江双鸭山市","value":"2305","key":"2305"},{"children":[],"title":"黑龙江七台河市","value":"2309","key":"2309"},{"children":[],"title":"黑龙江齐齐哈尔市","value":"2302","key":"2302"},{"children":[],"title":"黑龙江黑河市","value":"2311","key":"2311"}],"title":"黑龙江省","value":"23","key":"23"},{"children":[{"children":[],"title":"宁夏吴忠市","value":"6403","key":"6403"},{"children":[],"title":"宁夏银川市","value":"6401","key":"6401"},{"children":[],"title":"宁夏中卫市","value":"6405","key":"6405"},{"children":[],"title":"宁夏固原市","value":"6404","key":"6404"},{"children":[],"title":"宁夏石嘴山市","value":"6402","key":"6402"}],"title":"宁夏回族自治区","value":"64","key":"64"},{"children":[{"children":[],"title":"内蒙兴安盟","value":"1522","key":"1522"},{"children":[],"title":"内蒙乌兰察布市","value":"1509","key":"1509"},{"children":[],"title":"内蒙阿拉善盟","value":"1529","key":"1529"},{"children":[],"title":"内蒙包头市","value":"1502","key":"1502"},{"children":[],"title":"内蒙呼和浩特市","value":"1501","key":"1501"},{"children":[],"title":"内蒙巴彦淖尔市","value":"1508","key":"1508"},{"children":[],"title":"鄂尔多斯市","value":"1506","key":"1506"},{"children":[],"title":"内蒙呼伦贝尔市","value":"1507","key":"1507"},{"children":[],"title":"内蒙赤峰市","value":"1504","key":"1504"},{"children":[],"title":"内蒙锡林郭勒盟","value":"1525","key":"1525"},{"children":[],"title":"内蒙通辽市","value":"1505","key":"1505"},{"children":[],"title":"内蒙乌海市","value":"1503","key":"1503"}],"title":"内蒙古自治区","value":"15","key":"15"},{"children":[{"children":[],"title":"江西南昌市","value":"3601","key":"3601"},{"children":[],"title":"江西鹰潭市","value":"3606","key":"3606"},{"children":[],"title":"江西新余市","value":"3605","key":"3605"},{"children":[],"title":"江西宜春市","value":"3609","key":"3609"},{"children":[],"title":"江西萍乡市","value":"3603","key":"3603"},{"children":[],"title":"江西上饶市","value":"3611","key":"3611"},{"children":[],"title":"江西吉安","value":"3608","key":"3608"},{"children":[],"title":"江西景德镇市","value":"3602","key":"3602"},{"children":[],"title":"江西九江市","value":"3604","key":"3604"},{"children":[],"title":"江西抚州市","value":"3610","key":"3610"},{"children":[],"title":"江西赣州市","value":"3607","key":"3607"}],"title":"江西省","value":"36","key":"36"},{"children":[{"children":[],"title":"吉林四平市","value":"2203","key":"2203"},{"children":[],"title":"吉林辽源市","value":"2204","key":"2204"},{"children":[],"title":"吉林松原市","value":"2207","key":"2207"},{"children":[],"title":"吉林市","value":"2202","key":"2202"},{"children":[],"title":"吉林长春市","value":"2201","key":"2201"},{"children":[],"title":"吉林白山市","value":"2206","key":"2206"},{"children":[],"title":"吉林通化市","value":"2205","key":"2205"},{"children":[],"title":"吉林延边朝鲜族自治州","value":"2224","key":"2224"},{"children":[],"title":"吉林白城市","value":"2208","key":"2208"}],"title":"吉林省","value":"22","key":"22"},{"children":[{"children":[],"title":"北京市所属县","value":"1102","key":"1102"},{"children":[],"title":"北京市市辖区","value":"1101","key":"1101"}],"title":"北京市","value":"11","key":"11"},{"children":[{"children":[],"title":"梵帝冈","value":"C336","key":"C336"},{"children":[],"title":"安道尔","value":"C020","key":"C020"},{"children":[],"title":"阿塞拜疆","value":"C031","key":"C031"},{"children":[],"title":"比利时","value":"C056","key":"C056"},{"children":[],"title":"爱尔兰","value":"C372","key":"C372"},{"children":[],"title":"匈牙利","value":"C348","key":"C348"},{"children":[],"title":"瑞典","value":"C752","key":"C752"},{"children":[],"title":"捷克","value":"C203","key":"C203"},{"children":[],"title":"斯洛伐克","value":"C703","key":"C703"},{"children":[],"title":"拉脱维亚","value":"C428","key":"C428"},{"children":[],"title":"卢森堡","value":"C442","key":"C442"},{"children":[],"title":"奥地利","value":"C040","key":"C040"},{"children":[],"title":"摩尔多瓦","value":"C498","key":"C498"},{"children":[],"title":"白俄罗斯","value":"C112","key":"C112"},{"children":[],"title":"荷兰","value":"C528","key":"C528"},{"children":[],"title":"葡萄牙","value":"C620","key":"C620"},{"children":[],"title":"意大利","value":"C380","key":"C380"},{"children":[],"title":"丹麦","value":"C208","key":"C208"},{"children":[],"title":"圣马力诺","value":"C674","key":"C674"},{"children":[],"title":"塞尔维亚和黑山","value":"C890","key":"C890"},{"children":[],"title":"斯洛文尼亚","value":"C705","key":"C705"},{"children":[],"title":"摩纳哥","value":"C492","key":"C492"},{"children":[],"title":"格陵兰","value":"C304","key":"C304"},{"children":[],"title":"英国","value":"C826","key":"C826"},{"children":[],"title":"亚美尼亚","value":"C051","key":"C051"},{"children":[],"title":"波斯尼亚和黑塞哥","value":"C070","key":"C070"},{"children":[],"title":"德国","value":"C276","key":"C276"},{"children":[],"title":"克罗地亚","value":"C191","key":"C191"},{"children":[],"title":"列支敦士登公国","value":"C438","key":"C438"},{"children":[],"title":"俄罗斯","value":"C643","key":"C643"},{"children":[],"title":"乌克兰","value":"C804","key":"C804"},{"children":[],"title":"保加利亚","value":"C100","key":"C100"},{"children":[],"title":"阿尔巴尼亚","value":"C008","key":"C008"},{"children":[],"title":"波兰","value":"C616","key":"C616"},{"children":[],"title":"立陶宛","value":"C440","key":"C440"},{"children":[],"title":"挪威","value":"C578","key":"C578"},{"children":[],"title":"希腊","value":"C300","key":"C300"},{"children":[],"title":"马其顿","value":"C807","key":"C807"},{"children":[],"title":"法国","value":"C250","key":"C250"},{"children":[],"title":"罗马尼亚","value":"C642","key":"C642"},{"children":[],"title":"芬兰","value":"C246","key":"C246"},{"children":[],"title":"瑞士","value":"C756","key":"C756"},{"children":[],"title":"西班牙","value":"C724","key":"C724"},{"children":[],"title":"格鲁吉亚","value":"C268","key":"C268"},{"children":[],"title":"马耳他","value":"C470","key":"C470"},{"children":[],"title":"冰岛","value":"C352","key":"C352"},{"children":[],"title":"爱沙尼亚","value":"C233","key":"C233"}],"title":"欧洲","value":"C","key":"C"},{"children":[{"children":[],"title":"西藏阿里地区","value":"5425","key":"5425"},{"children":[],"title":"西藏林芝地区","value":"5426","key":"5426"},{"children":[],"title":"西藏山南地区","value":"5422","key":"5422"},{"children":[],"title":"西藏日喀则地区","value":"5423","key":"5423"},{"children":[],"title":"西藏那曲地区","value":"5424","key":"5424"},{"children":[],"title":"西藏昌都地区","value":"5421","key":"5421"},{"children":[],"title":"西藏拉萨市","value":"5401","key":"5401"}],"title":"西藏自治区","value":"54","key":"54"},{"children":[{"children":[],"title":"广西桂林市","value":"4503","key":"4503"},{"children":[],"title":"广西百色市","value":"4510","key":"4510"},{"children":[],"title":"广西钦州市","value":"4507","key":"4507"},{"children":[],"title":"广西贺州市","value":"4511","key":"4511"},{"children":[],"title":"广西河池市","value":"4512","key":"4512"},{"children":[],"title":"广西北海市","value":"4505","key":"4505"},{"children":[],"title":"广西柳州市","value":"4502","key":"4502"},{"children":[],"title":"广西防城港市","value":"4506","key":"4506"},{"children":[],"title":"广西崇左市","value":"4514","key":"4514"},{"children":[],"title":"广西贵港市","value":"4508","key":"4508"},{"children":[],"title":"广西玉林市","value":"4509","key":"4509"},{"children":[],"title":"广西梧州市","value":"4504","key":"4504"},{"children":[],"title":"广西来宾市","value":"4513","key":"4513"},{"children":[],"title":"广西南宁市","value":"4501","key":"4501"}],"title":"广西壮族自治区","value":"45","key":"45"},{"children":[],"title":"澳门特别行政区","value":"82","key":"82"},{"children":[{"children":[],"title":"甘肃定西市","value":"6211","key":"6211"},{"children":[],"title":"甘肃平凉市","value":"6208","key":"6208"},{"children":[],"title":"甘肃嘉峪关市","value":"6202","key":"6202"},{"children":[],"title":"甘肃临夏回族自治州","value":"6229","key":"6229"},{"children":[],"title":"甘肃武威市","value":"6206","key":"6206"},{"children":[],"title":"甘肃张掖市","value":"6207","key":"6207"},{"children":[],"title":"甘肃甘南藏族自治州","value":"6230","key":"6230"},{"children":[],"title":"甘肃庆阳市","value":"6210","key":"6210"},{"children":[],"title":"甘肃陇南市","value":"6212","key":"6212"},{"children":[],"title":"甘肃白银市","value":"6204","key":"6204"},{"children":[],"title":"甘肃天水市","value":"6205","key":"6205"},{"children":[],"title":"甘肃兰州市","value":"6201","key":"6201"},{"children":[],"title":"甘肃酒泉市","value":"6209","key":"6209"},{"children":[],"title":"甘肃金昌市","value":"6203","key":"6203"}],"title":"甘肃省","value":"62","key":"62"},{"children":[{"children":[],"title":"山西朔州市","value":"1406","key":"1406"},{"children":[],"title":"山西吕梁市","value":"1411","key":"1411"},{"children":[],"title":"山西长治市","value":"1404","key":"1404"},{"children":[],"title":"山西晋城市","value":"1405","key":"1405"},{"children":[],"title":"山西阳泉市","value":"1403","key":"1403"},{"children":[],"title":"山西大同市","value":"1402","key":"1402"},{"children":[],"title":"山西太原市","value":"1401","key":"1401"},{"children":[],"title":"山西运城市","value":"1408","key":"1408"},{"children":[],"title":"山西晋中市","value":"1407","key":"1407"},{"children":[],"title":"山西忻州市","value":"1409","key":"1409"},{"children":[],"title":"山西临汾市","value":"1410","key":"1410"}],"title":"山西省","value":"14","key":"14"},{"children":[{"children":[],"title":"河北衡水市","value":"1311","key":"1311"},{"children":[],"title":"河北邢台市","value":"1305","key":"1305"},{"children":[],"title":"河北保定市","value":"1306","key":"1306"},{"children":[],"title":"河北秦皇岛市","value":"1303","key":"1303"},{"children":[],"title":"河北沧州市","value":"1309","key":"1309"},{"children":[],"title":"河北承德市","value":"1308","key":"1308"},{"children":[],"title":"河北石家庄市","value":"1301","key":"1301"},{"children":[],"title":"河北邯郸市","value":"1304","key":"1304"},{"children":[],"title":"河北唐山市","value":"1302","key":"1302"},{"children":[],"title":"河北廊坊市","value":"1310","key":"1310"},{"children":[],"title":"河北张家口市","value":"1307","key":"1307"}],"title":"河北省","value":"13","key":"13"},{"children":[],"title":"台湾省","value":"71","key":"71"},{"children":[{"children":[],"title":"四川巴中市","value":"5119","key":"5119"},{"children":[],"title":"四川泸州市","value":"5105","key":"5105"},{"children":[],"title":"四川自贡市","value":"5103","key":"5103"},{"children":[],"title":"四川雅安市","value":"5118","key":"5118"},{"children":[],"title":"四川德阳市","value":"5106","key":"5106"},{"children":[],"title":"四川宜宾市","value":"5115","key":"5115"},{"children":[],"title":"四川资阳市","value":"5120","key":"5120"},{"children":[],"title":"四川达州市","value":"5117","key":"5117"},{"children":[],"title":"四川南充市","value":"5113","key":"5113"},{"children":[],"title":"四川乐山市","value":"5111","key":"5111"},{"children":[],"title":"四川绵阳市","value":"5107","key":"5107"},{"children":[],"title":"四川成都市","value":"5101","key":"5101"},{"children":[],"title":"四川广元市","value":"5108","key":"5108"},{"children":[],"title":"四川眉山市","value":"5114","key":"5114"},{"children":[],"title":"四川攀枝花市","value":"5104","key":"5104"},{"children":[],"title":"四川甘孜藏族自治州","value":"5133","key":"5133"},{"children":[],"title":"四川广安市","value":"5116","key":"5116"},{"children":[],"title":"四川阿坝藏族羌族自治州","value":"5132","key":"5132"},{"children":[],"title":"四川内江市","value":"5110","key":"5110"},{"children":[],"title":"四川遂宁市","value":"5109","key":"5109"},{"children":[],"title":"四川凉山彝族自治州","value":"5134","key":"5134"}],"title":"四川省","value":"51","key":"51"},{"children":[{"children":[],"title":"上海市所属县","value":"3102","key":"3102"},{"children":[],"title":"上海市市辖区","value":"3101","key":"3101"}],"title":"上海市","value":"31","key":"31"},{"children":[{"children":[],"title":"辽宁丹东市","value":"2106","key":"2106"},{"children":[],"title":"辽宁阜新市","value":"2109","key":"2109"},{"children":[],"title":"辽宁营口市","value":"2108","key":"2108"},{"children":[],"title":"辽宁沈阳市","value":"2101","key":"2101"},{"children":[],"title":"辽宁大连市","value":"2102","key":"2102"},{"children":[],"title":"辽宁抚顺市","value":"2104","key":"2104"},{"children":[],"title":"辽宁盘锦市","value":"2111","key":"2111"},{"children":[],"title":"辽宁鞍山市","value":"2103","key":"2103"},{"children":[],"title":"辽宁锦州市","value":"2107","key":"2107"},{"children":[],"title":"辽宁葫芦岛市","value":"2114","key":"2114"},{"children":[],"title":"辽宁本溪市","value":"2105","key":"2105"},{"children":[],"title":"辽宁铁岭市","value":"2112","key":"2112"},{"children":[],"title":"辽宁朝阳市","value":"2113","key":"2113"},{"children":[],"title":"辽宁辽阳市","value":"2110","key":"2110"}],"title":"辽宁省","value":"21","key":"21"},{"children":[{"children":[],"title":"福建漳州市","value":"3506","key":"3506"},{"children":[],"title":"福建龙岩市","value":"3508","key":"3508"},{"children":[],"title":"福建福州市","value":"3501","key":"3501"},{"children":[],"title":"福建宁德市","value":"3509","key":"3509"},{"children":[],"title":"福建莆田市","value":"3503","key":"3503"},{"children":[],"title":"福建厦门市","value":"3502","key":"3502"},{"children":[],"title":"福建南平市","value":"3507","key":"3507"},{"children":[],"title":"福建三明市","value":"3504","key":"3504"},{"children":[],"title":"福建泉州市","value":"3505","key":"3505"}],"title":"福建省","value":"35","key":"35"},{"children":[{"children":[],"title":"陕西咸阳市","value":"6104","key":"6104"},{"children":[],"title":"陕西延安市","value":"6106","key":"6106"},{"children":[],"title":"陕西渭南市","value":"6105","key":"6105"},{"children":[],"title":"陕西安康市","value":"6109","key":"6109"},{"children":[],"title":"陕西汉中市","value":"6107","key":"6107"},{"children":[],"title":"陕西商洛市","value":"6110","key":"6110"},{"children":[],"title":"陕西西安市","value":"6101","key":"6101"},{"children":[],"title":"陕西铜川市","value":"6102","key":"6102"},{"children":[],"title":"陕西宝鸡市","value":"6103","key":"6103"},{"children":[],"title":"陕西榆林市","value":"6108","key":"6108"}],"title":"陕西省","value":"61","key":"61"},{"children":[{"children":[],"title":"圣卢西亚","value":"D662","key":"D662"},{"children":[],"title":"智利","value":"D152","key":"D152"},{"children":[],"title":"墨西哥","value":"D484","key":"D484"},{"children":[],"title":"玻利维亚","value":"D068","key":"D068"},{"children":[],"title":"秘鲁","value":"D604","key":"D604"},{"children":[],"title":"厄瓜多尔","value":"D218","key":"D218"},{"children":[],"title":"萨尔瓦多","value":"D222","key":"D222"},{"children":[],"title":"哥伦比亚","value":"D170","key":"D170"},{"children":[],"title":"古巴","value":"D192","key":"D192"},{"children":[],"title":"百慕大","value":"D060","key":"D060"},{"children":[],"title":"伯利兹","value":"D084","key":"D084"},{"children":[],"title":"瓜亚基尔","value":"D971","key":"D971"},{"children":[],"title":"巴西","value":"D076","key":"D076"},{"children":[],"title":"委内瑞拉","value":"D862","key":"D862"},{"children":[],"title":"安圭拉","value":"D660","key":"D660"},{"children":[],"title":"美国","value":"D840","key":"D840"},{"children":[],"title":"巴哈马","value":"D044","key":"D044"},{"children":[],"title":"牙买加","value":"D388","key":"D388"},{"children":[],"title":"海地","value":"D332","key":"D332"},{"children":[],"title":"巴拉圭","value":"D600","key":"D600"},{"children":[],"title":"巴拿马","value":"D590","key":"D590"},{"children":[],"title":"苏里南","value":"D740","key":"D740"},{"children":[],"title":"哥斯达黎加","value":"D188","key":"D188"},{"children":[],"title":"巴巴多斯","value":"D052","key":"D052"},{"children":[],"title":"危地马拉","value":"D320","key":"D320"},{"children":[],"title":"波多黎各","value":"D630","key":"D630"},{"children":[],"title":"阿根廷","value":"D032","key":"D032"},{"children":[],"title":"乌拉圭东岸","value":"D858","key":"D858"},{"children":[],"title":"加拿大","value":"D124","key":"D124"},{"children":[],"title":"圭亚那","value":"D328","key":"D328"},{"children":[],"title":"洪都拉斯","value":"D340","key":"D340"},{"children":[],"title":"安提瓜和巴布达","value":"D028","key":"D028"},{"children":[],"title":"尼加拉瓜","value":"D558","key":"D558"},{"children":[],"title":"格林纳达","value":"D308","key":"D308"},{"children":[],"title":"特立尼达和多巴哥","value":"D780","key":"D780"}],"title":"美洲","value":"D","key":"D"},{"children":[{"children":[],"title":"新疆克拉玛依市","value":"6502","key":"6502"},{"children":[],"title":"新疆塔城地区","value":"6542","key":"6542"},{"children":[],"title":"新疆伊犁哈萨克自治州","value":"6540","key":"6540"},{"children":[],"title":"克孜勒苏柯尔克孜自治州","value":"6530","key":"6530"},{"children":[],"title":"新疆阿克苏地区","value":"6529","key":"6529"},{"children":[],"title":"新疆昌吉回族自治州","value":"6523","key":"6523"},{"children":[],"title":"新疆博尔塔拉蒙古自治州","value":"6527","key":"6527"},{"children":[],"title":"新疆吐鲁番地区","value":"6521","key":"6521"},{"children":[],"title":"新疆乌鲁木齐市","value":"6501","key":"6501"},{"children":[],"title":"新疆巴音郭楞蒙古自治州","value":"6528","key":"6528"},{"children":[],"title":"新疆省直辖行政单位","value":"6590","key":"6590"},{"children":[],"title":"新疆和田地区","value":"6532","key":"6532"},{"children":[],"title":"新疆喀什地区","value":"6531","key":"6531"},{"children":[],"title":"新疆哈密地区","value":"6522","key":"6522"},{"children":[],"title":"新疆阿勒泰地区","value":"6543","key":"6543"}],"title":"新疆维吾尔自治区","value":"65","key":"65"},{"children":[{"children":[],"title":"青海海东地区","value":"6321","key":"6321"},{"children":[],"title":"青海玉树藏族自治州","value":"6327","key":"6327"},{"children":[],"title":"青海果洛藏族自治州","value":"6326","key":"6326"},{"children":[],"title":"青海海西蒙古族藏族自治州","value":"6328","key":"6328"},{"children":[],"title":"青海海北藏族自治州","value":"6322","key":"6322"},{"children":[],"title":"青海海南藏族自治州","value":"6325","key":"6325"},{"children":[],"title":"青海西宁市","value":"6301","key":"6301"},{"children":[],"title":"青海黄南藏族自治州","value":"6323","key":"6323"}],"title":"青海省","value":"63","key":"63"},{"children":[{"children":[],"title":"天津市所属县","value":"1202","key":"1202"},{"children":[],"title":"天津市市辖区","value":"1201","key":"1201"}],"title":"天津市","value":"12","key":"12"},{"children":[],"title":"香港特别行政区","value":"81","key":"81"},{"children":[{"children":[],"title":"河南三门峡市","value":"4112","key":"4112"},{"children":[],"title":"河南新乡市","value":"4107","key":"4107"},{"children":[],"title":"河南驻马店市","value":"4117","key":"4117"},{"children":[],"title":"河南洛阳市","value":"4103","key":"4103"},{"children":[],"title":"河南漯河市","value":"4111","key":"4111"},{"children":[],"title":"河南许昌市","value":"4110","key":"4110"},{"children":[],"title":"河南开封市","value":"4102","key":"4102"},{"children":[],"title":"河南濮阳市","value":"4109","key":"4109"},{"children":[],"title":"河南周口市","value":"4116","key":"4116"},{"children":[],"title":"河南信阳市","value":"4115","key":"4115"},{"children":[],"title":"河南郑州市","value":"4101","key":"4101"},{"children":[],"title":"河南焦作市","value":"4108","key":"4108"},{"children":[],"title":"河南南阳市","value":"4113","key":"4113"},{"children":[],"title":"河南鹤壁市","value":"4106","key":"4106"},{"children":[],"title":"河南商丘市","value":"4114","key":"4114"},{"children":[],"title":"河南平顶山市","value":"4104","key":"4104"},{"children":[],"title":"河南安阳市","value":"4105","key":"4105"}],"title":"河南省","value":"41","key":"41"},{"children":[{"children":[],"title":"安徽宿州市","value":"3413","key":"3413"},{"children":[],"title":"安徽蚌埠市","value":"3403","key":"3403"},{"children":[],"title":"安徽马鞍山市","value":"3405","key":"3405"},{"children":[],"title":"安徽宣城市","value":"3418","key":"3418"},{"children":[],"title":"安徽滁州市","value":"3411","key":"3411"},{"children":[],"title":"安徽池州市","value":"3417","key":"3417"},{"children":[],"title":"安徽淮南市","value":"3404","key":"3404"},{"children":[],"title":"安徽淮北市","value":"3406","key":"3406"},{"children":[],"title":"安徽巢湖市","value":"3414","key":"3414"},{"children":[],"title":"安徽铜陵市","value":"3407","key":"3407"},{"children":[],"title":"安徽合肥市","value":"3401","key":"3401"},{"children":[],"title":"安徽毫州市","value":"3416","key":"3416"},{"children":[],"title":"安徽阜阳市","value":"3412","key":"3412"},{"children":[],"title":"安徽六安市","value":"3415","key":"3415"},{"children":[],"title":"安徽安庆市","value":"3408","key":"3408"},{"children":[],"title":"安徽芜湖市","value":"3402","key":"3402"},{"children":[],"title":"安徽黄山市","value":"3410","key":"3410"}],"title":"安徽省","value":"34","key":"34"},{"children":[{"children":[],"title":"湖南郴州市","value":"4310","key":"4310"},{"children":[],"title":"湖南湘西土家族苗族自治州","value":"4331","key":"4331"},{"children":[],"title":"湖南湘潭市","value":"4303","key":"4303"},{"children":[],"title":"湖南常德市","value":"4307","key":"4307"},{"children":[],"title":"湖南邵阳市","value":"4305","key":"4305"},{"children":[],"title":"湖南株洲市","value":"4302","key":"4302"},{"children":[],"title":"湖南永州市","value":"4311","key":"4311"},{"children":[],"title":"湖南娄底市","value":"4313","key":"4313"},{"children":[],"title":"湖南衡阳市","value":"4304","key":"4304"},{"children":[],"title":"湖南张家界市","value":"4308","key":"4308"},{"children":[],"title":"湖南怀化市","value":"4312","key":"4312"},{"children":[],"title":"湖南长沙市","value":"4301","key":"4301"},{"children":[],"title":"湖南岳阳市","value":"4306","key":"4306"},{"children":[],"title":"湖南益阳市","value":"4309","key":"4309"}],"title":"湖南省","value":"43","key":"43"},{"children":[{"children":[],"title":"广东珠海市","value":"4404","key":"4404"},{"children":[],"title":"广东清远市","value":"4418","key":"4418"},{"children":[],"title":"广东阳江市","value":"4417","key":"4417"},{"children":[],"title":"广东惠州市","value":"4413","key":"4413"},{"children":[],"title":"广东东莞市","value":"4419","key":"4419"},{"children":[],"title":"广东汕头市","value":"4405","key":"4405"},{"children":[],"title":"广东汕尾市","value":"4415","key":"4415"},{"children":[],"title":"广东潮州市","value":"4451","key":"4451"},{"children":[],"title":"广东云浮市","value":"4453","key":"4453"},{"children":[],"title":"广东肇庆市","value":"4412","key":"4412"},{"children":[],"title":"广东中山市","value":"4420","key":"4420"},{"children":[],"title":"广东韶关市","value":"4402","key":"4402"},{"children":[],"title":"广东湛江市","value":"4408","key":"4408"},{"children":[],"title":"广东广州市","value":"4401","key":"4401"},{"children":[],"title":"广东揭阳市","value":"4452","key":"4452"},{"children":[],"title":"广东佛山市","value":"4406","key":"4406"},{"children":[],"title":"广东深圳市","value":"4403","key":"4403"},{"children":[],"title":"广东茂名市","value":"4409","key":"4409"},{"children":[],"title":"广东梅州市","value":"4414","key":"4414"},{"children":[],"title":"广东河源市","value":"4416","key":"4416"},{"children":[],"title":"广东江门市","value":"4407","key":"4407"}],"title":"广东省","value":"44","key":"44"},{"children":[{"children":[],"title":"省直辖县级行政单位","value":"4690","key":"4690"},{"children":[],"title":"海南三亚市","value":"4602","key":"4602"},{"children":[],"title":"海南海口市","value":"4601","key":"4601"}],"title":"海南省","value":"46","key":"46"},{"children":[{"children":[],"title":"纳米比亚","value":"B516","key":"B516"},{"children":[],"title":"突尼斯","value":"B788","key":"B788"},{"children":[],"title":"塞拉利昂","value":"B694","key":"B694"},{"children":[],"title":"埃塞俄比亚","value":"B230","key":"B230"},{"children":[],"title":"吉布提","value":"B262","key":"B262"},{"children":[],"title":"苏丹","value":"B736","key":"B736"},{"children":[],"title":"贝宁","value":"B204","key":"B204"},{"children":[],"title":"中非","value":"B140","key":"B140"},{"children":[],"title":"加纳","value":"B288","key":"B288"},{"children":[],"title":"尼日利亚","value":"B566","key":"B566"},{"children":[],"title":"刚果(布)","value":"B178","key":"B178"},{"children":[],"title":"博茨瓦纳","value":"B072","key":"B072"},{"children":[],"title":"赞比亚","value":"B894","key":"B894"},{"children":[],"title":"加蓬","value":"B266","key":"B266"},{"children":[],"title":"冈比亚","value":"B270","key":"B270"},{"children":[],"title":"毛里求斯","value":"B480","key":"B480"},{"children":[],"title":"圣多美和普林西比","value":"B678","key":"B678"},{"children":[],"title":"布隆迪","value":"B108","key":"B108"},{"children":[],"title":"摩洛哥","value":"B504","key":"B504"},{"children":[],"title":"乍得","value":"B148","key":"B148"},{"children":[],"title":"西撒哈拉","value":"B732","key":"B732"},{"children":[],"title":"刚果(金)","value":"B180","key":"B180"},{"children":[],"title":"南非","value":"B710","key":"B710"},{"children":[],"title":"赤道几内亚","value":"B226","key":"B226"},{"children":[],"title":"莫桑比克","value":"B508","key":"B508"},{"children":[],"title":"科摩罗","value":"B174","key":"B174"},{"children":[],"title":"津巴布韦","value":"B716","key":"B716"},{"children":[],"title":"莱索托","value":"B426","key":"B426"},{"children":[],"title":"卢旺达","value":"B646","key":"B646"},{"children":[],"title":"厄立特里亚","value":"B232","key":"B232"},{"children":[],"title":"肯尼亚","value":"B404","key":"B404"},{"children":[],"title":"马里","value":"B466","key":"B466"},{"children":[],"title":"多哥","value":"B768","key":"B768"},{"children":[],"title":"埃及","value":"B818","key":"B818"},{"children":[],"title":"乌干达","value":"B800","key":"B800"},{"children":[],"title":"斯威士兰","value":"B748","key":"B748"},{"children":[],"title":"几内亚","value":"B324","key":"B324"},{"children":[],"title":"阿尔及利亚","value":"B012","key":"B012"},{"children":[],"title":"马达加斯加","value":"B450","key":"B450"},{"children":[],"title":"毛里塔尼亚","value":"B478","key":"B478"},{"children":[],"title":"尼日尔","value":"B562","key":"B562"},{"children":[],"title":"科特迪瓦","value":"B384","key":"B384"},{"children":[],"title":"喀麦隆","value":"B120","key":"B120"},{"children":[],"title":"利比里亚","value":"B430","key":"B430"},{"children":[],"title":"佛得角","value":"B132","key":"B132"},{"children":[],"title":"几内亚比绍","value":"B624","key":"B624"},{"children":[],"title":"坦桑尼亚","value":"B834","key":"B834"},{"children":[],"title":"索马里","value":"B706","key":"B706"},{"children":[],"title":"利比亚","value":"B434","key":"B434"},{"children":[],"title":"布基纳法索","value":"B854","key":"B854"},{"children":[],"title":"安哥拉","value":"B024","key":"B024"},{"children":[],"title":"塞舌尔","value":"B690","key":"B690"},{"children":[],"title":"塞内加尔","value":"B686","key":"B686"}],"title":"非洲","value":"B","key":"B"},{"children":[{"children":[],"title":"重庆市辖区","value":"5001","key":"5001"},{"children":[],"title":"县","value":"5002","key":"5002"},{"children":[],"title":"市","value":"5003","key":"5003"}],"title":"重庆市","value":"50","key":"50"},{"children":[{"children":[],"title":"江苏常州市","value":"3204","key":"3204"},{"children":[],"title":"江苏宿迁市","value":"3213","key":"3213"},{"children":[],"title":"江苏连云港市","value":"3207","key":"3207"},{"children":[],"title":"江苏苏州市","value":"3205","key":"3205"},{"children":[],"title":"江苏南京市","value":"3201","key":"3201"},{"children":[],"title":"江苏盐城市","value":"3209","key":"3209"},{"children":[],"title":"江苏无锡市","value":"3202","key":"3202"},{"children":[],"title":"江苏徐州市","value":"3203","key":"3203"},{"children":[],"title":"江苏淮安市","value":"3208","key":"3208"},{"children":[],"title":"江苏南通市","value":"3206","key":"3206"},{"children":[],"title":"江苏镇江市","value":"3211","key":"3211"},{"children":[],"title":"江苏扬州市","value":"3210","key":"3210"},{"children":[],"title":"江苏泰州市","value":"3212","key":"3212"}],"title":"江苏省","value":"32","key":"32"},{"children":[{"children":[],"title":"缅甸","value":"A104","key":"A104"},{"children":[],"title":"以色列","value":"A376","key":"A376"},{"children":[],"title":"叙利亚","value":"A760","key":"A760"},{"children":[],"title":"韩国","value":"A410","key":"A410"},{"children":[],"title":"伊朗","value":"A364","key":"A364"},{"children":[],"title":"孟加拉","value":"A050","key":"A050"},{"children":[],"title":"马尔代夫","value":"A462","key":"A462"},{"children":[],"title":"土库曼斯坦","value":"A795","key":"A795"},{"children":[],"title":"朝鲜","value":"A408","key":"A408"},{"children":[],"title":"约旦","value":"A400","key":"A400"},{"children":[],"title":"东帝汶","value":"A626","key":"A626"},{"children":[],"title":"伊拉克","value":"A368","key":"A368"},{"children":[],"title":"乌兹别克斯坦","value":"A860","key":"A860"},{"children":[],"title":"土耳其","value":"A792","key":"A792"},{"children":[],"title":"阿富汗","value":"A004","key":"A004"},{"children":[],"title":"中国","value":"A156","key":"A156"},{"children":[],"title":"科威特","value":"A414","key":"A414"},{"children":[],"title":"泰国","value":"A764","key":"A764"},{"children":[],"title":"印度尼西亚","value":"A360","key":"A360"},{"children":[],"title":"吉尔吉斯斯坦","value":"A417","key":"A417"},{"children":[],"title":"卡塔尔","value":"A634","key":"A634"},{"children":[],"title":"沙特阿拉伯","value":"A682","key":"A682"},{"children":[],"title":"巴基斯坦","value":"A586","key":"A586"},{"children":[],"title":"蒙古","value":"A496","key":"A496"},{"children":[],"title":"菲律宾","value":"A608","key":"A608"},{"children":[],"title":"尼泊尔","value":"A524","key":"A524"},{"children":[],"title":"也门","value":"A720","key":"A720"},{"children":[],"title":"哈萨克斯坦","value":"A398","key":"A398"},{"children":[],"title":"巴林","value":"A048","key":"A048"},{"children":[],"title":"阿拉伯联合酋长国","value":"A784","key":"A784"},{"children":[],"title":"老挝","value":"A418","key":"A418"},{"children":[],"title":"印度","value":"A356","key":"A356"},{"children":[],"title":"塞浦路斯","value":"A196","key":"A196"},{"children":[],"title":"柬埔寨","value":"A116","key":"A116"},{"children":[],"title":"新加坡","value":"A702","key":"A702"},{"children":[],"title":"斯里兰卡","value":"A144","key":"A144"},{"children":[],"title":"巴勒斯坦","value":"A374","key":"A374"},{"children":[],"title":"日本","value":"A392","key":"A392"},{"children":[],"title":"文莱","value":"A096","key":"A096"},{"children":[],"title":"马来西亚","value":"A458","key":"A458"},{"children":[],"title":"越南","value":"A704","key":"A704"},{"children":[],"title":"黎巴嫩","value":"A422","key":"A422"},{"children":[],"title":"塔吉克斯坦","value":"A762","key":"A762"},{"children":[],"title":"阿曼","value":"A512","key":"A512"}],"title":"亚洲","value":"A","key":"A"},{"children":[{"children":[],"title":"湖北荆州市","value":"4210","key":"4210"},{"children":[],"title":"湖北咸宁市","value":"4212","key":"4212"},{"children":[],"title":"湖北孝感市","value":"4209","key":"4209"},{"children":[],"title":"湖北黄冈市","value":"4211","key":"4211"},{"children":[],"title":"湖北黄石市","value":"4202","key":"4202"},{"children":[],"title":"湖北省直辖行政单位","value":"4290","key":"4290"},{"children":[],"title":"湖北鄂州市","value":"4207","key":"4207"},{"children":[],"title":"湖北宜昌市","value":"4205","key":"4205"},{"children":[],"title":"湖北荆门市","value":"4208","key":"4208"},{"children":[],"title":"湖北襄樊市","value":"4206","key":"4206"},{"children":[],"title":"湖北恩施土家族苗族自治州","value":"4228","key":"4228"},{"children":[],"title":"湖北十堰市","value":"4203","key":"4203"},{"children":[],"title":"湖北武汉市","value":"4201","key":"4201"},{"children":[],"title":"湖北随州市","value":"4213","key":"4213"}],"title":"湖北省","value":"42","key":"42"},{"children":[{"children":[],"title":"云南昆明市","value":"5301","key":"5301"},{"children":[],"title":"云南西双版纳傣族自治州","value":"5328","key":"5328"},{"children":[],"title":"云南红河哈尼族彝族自治州","value":"5325","key":"5325"},{"children":[],"title":"云南怒江傈僳族自治州","value":"5333","key":"5333"},{"children":[],"title":"云南昭通市","value":"5306","key":"5306"},{"children":[],"title":"云南保山市","value":"5305","key":"5305"},{"children":[],"title":"云南曲靖市","value":"5303","key":"5303"},{"children":[],"title":"云南丽江市","value":"5307","key":"5307"},{"children":[],"title":"云南临沧市","value":"5309","key":"5309"},{"children":[],"title":"云南大理白族自治州","value":"5329","key":"5329"},{"children":[],"title":"云南思茅市","value":"5308","key":"5308"},{"children":[],"title":"云南德宏傣族景颇族自治州","value":"5331","key":"5331"},{"children":[],"title":"云南楚雄彝族自治州","value":"5323","key":"5323"},{"children":[],"title":"云南文山壮族苗族自治州","value":"5326","key":"5326"},{"children":[],"title":"云南迪庆藏族自治州","value":"5334","key":"5334"},{"children":[],"title":"云南玉溪市","value":"5304","key":"5304"}],"title":"云南省","value":"53","key":"53"},{"children":[{"children":[],"title":"贵州遵义市","value":"5203","key":"5203"},{"children":[],"title":"贵州六盘水市","value":"5202","key":"5202"},{"children":[],"title":"贵州贵阳市","value":"5201","key":"5201"},{"children":[],"title":"贵州黔东南苗族侗族自治州","value":"5226","key":"5226"},{"children":[],"title":"贵州黔南布依族苗族自治州","value":"5227","key":"5227"},{"children":[],"title":"贵州铜仁地区","value":"5222","key":"5222"},{"children":[],"title":"贵州黔西南布依族苗族自治州","value":"5223","key":"5223"},{"children":[],"title":"贵州安顺市","value":"5204","key":"5204"},{"children":[],"title":"贵州毕节地区","value":"5224","key":"5224"}],"title":"贵州省","value":"52","key":"52"},{"children":[{"children":[],"title":"浙江金华市","value":"3307","key":"3307"},{"children":[],"title":"浙江衢州市","value":"3308","key":"3308"},{"children":[],"title":"浙江杭州市","value":"3301","key":"3301"},{"children":[],"title":"浙江湖州市","value":"3305","key":"3305"},{"children":[],"title":"浙江绍兴市","value":"3306","key":"3306"},{"children":[],"title":"浙江舟山市","value":"3309","key":"3309"},{"children":[],"title":"浙江嘉兴市","value":"3304","key":"3304"},{"children":[],"title":"浙江温州市","value":"3303","key":"3303"},{"children":[],"title":"浙江丽水市","value":"3311","key":"3311"},{"children":[],"title":"浙江宁波市","value":"3302","key":"3302"},{"children":[],"title":"浙江台州市","value":"3310","key":"3310"}],"title":"浙江省","value":"33","key":"33"},{"children":[{"children":[],"title":"密克罗尼西亚","value":"E583","key":"E583"},{"children":[],"title":"纽埃","value":"E570","key":"E570"},{"children":[],"title":"托克劳","value":"E772","key":"E772"},{"children":[],"title":"瓦努阿图","value":"E548","key":"E548"},{"children":[],"title":"新西兰","value":"E554","key":"E554"},{"children":[],"title":"南极洲","value":"F010","key":"F010"},{"children":[],"title":"瑙鲁","value":"E520","key":"E520"},{"children":[],"title":"关岛","value":"E316","key":"E316"},{"children":[],"title":"西萨摩亚","value":"E882","key":"E882"},{"children":[],"title":"巴布亚新几内亚","value":"E598","key":"E598"},{"children":[],"title":"澳大利亚","value":"E036","key":"E036"},{"children":[],"title":"汤加","value":"E776","key":"E776"},{"children":[],"title":"斐济","value":"E242","key":"E242"},{"children":[],"title":"马绍尔群岛","value":"E584","key":"E584"},{"children":[],"title":"图瓦卢","value":"E798","key":"E798"},{"children":[],"title":"基里巴斯","value":"E296","key":"E296"},{"children":[],"title":"新喀里多尼亚","value":"E540","key":"E540"}],"title":"大洋洲","value":"E","key":"E"}]; //中国行政区划和世界各国及地区名称(ZRB01-2006/CQMC)
+ export const QS = [{"children":[],"title":"低三职领导职务","value":"31","key":"31"},{"children":[],"title":"低一职领导职务","value":"11","key":"11"},{"children":[],"title":"低三职非领导职务","value":"32","key":"32"},{"children":[],"title":"低二职领导职务","value":"21","key":"21"},{"children":[],"title":"低二职非领导职务","value":"22","key":"22"},{"children":[],"title":"未明确职务","value":"99","key":"99"},{"children":[],"title":"低一职非领导职务","value":"12","key":"12"}]; //职务安排(RS-ZWAP-2004)
+ export const AC = [{"children":[{"children":[],"title":"省辖市辖市","value":"63","key":"63"},{"children":[],"title":"县级市","value":"67","key":"67"},{"children":[],"title":"县","value":"61","key":"61"},{"children":[],"title":"盟辖市","value":"66","key":"66"},{"children":[],"title":"地辖市","value":"64","key":"64"},{"children":[],"title":"自治旗","value":"69","key":"69"},{"children":[],"title":"州辖市","value":"65","key":"65"},{"children":[],"title":"自治县","value":"68","key":"68"},{"children":[],"title":"省辖市辖区","value":"6A","key":"6A"},{"children":[],"title":"旗","value":"62","key":"62"}],"title":"县、市、区、旗一级","value":"6","key":"6"},{"children":[{"children":[],"title":"中央一级","value":"11","key":"11"},{"children":[],"title":"中央设在各地","value":"12","key":"12"}],"title":"中央一级","value":"1","key":"1"},{"children":[{"children":[],"title":"镇","value":"72","key":"72"},{"children":[],"title":"乡","value":"73","key":"73"},{"children":[],"title":"街道","value":"71","key":"71"}],"title":"镇、乡一级","value":"7","key":"7"},{"children":[{"children":[],"title":"自治州","value":"43","key":"43"},{"children":[],"title":"地区","value":"42","key":"42"},{"children":[],"title":"省辖市","value":"41","key":"41"},{"children":[],"title":"盟","value":"44","key":"44"},{"children":[],"title":"直辖市辖区","value":"45","key":"45"}],"title":"市、地、州、盟一级","value":"4","key":"4"},{"children":[{"children":[],"title":"副省级市市辖区","value":"51","key":"51"}],"title":"副省级市市辖区一级","value":"5","key":"5"},{"children":[{"children":[],"title":"直辖市","value":"23","key":"23"},{"children":[],"title":"自治区","value":"22","key":"22"},{"children":[],"title":"省","value":"21","key":"21"}],"title":"省一级","value":"2","key":"2"},{"children":[{"children":[],"title":"副省级市","value":"31","key":"31"}],"title":"副省级市一级","value":"3","key":"3"},{"children":[{"children":[],"title":"建制村","value":"82","key":"82"},{"children":[],"title":"社区","value":"81","key":"81"}],"title":"社区、建制村","value":"8","key":"8"},{"children":[{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"外国组织机构","value":"92","key":"92"},{"children":[],"title":"武警","value":"94","key":"94"},{"children":[],"title":"国际组织机构","value":"91","key":"91"},{"children":[],"title":"军队","value":"93","key":"93"}],"title":"其他","value":"9","key":"9"}]; //单位隶属关系(ZRB87-2006/DWLS)
+ export const QT = [{"children":[],"title":"未报到","value":"3","key":"3"},{"children":[],"title":"越期报到","value":"2","key":"2"},{"children":[],"title":"按时报到","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"}]; //报到情况(RS-BDQK-2004)
+ export const AD = [{"children":[{"children":[],"title":"大检察官","value":"51","key":"51"},{"children":[],"title":"高级检察官","value":"52","key":"52"},{"children":[],"title":"检察官","value":"53","key":"53"},{"children":[],"title":"首席大检察官","value":"50","key":"50"}],"title":"检察官等级","value":"5","key":"5"},{"children":[{"children":[],"title":"关务员","value":"34","key":"34"},{"children":[],"title":"关务督察","value":"32","key":"32"},{"children":[],"title":"海关总监","value":"30","key":"30"},{"children":[],"title":"关务督办","value":"33","key":"33"},{"children":[],"title":"关务监督","value":"31","key":"31"}],"title":"海关关衔","value":"3","key":"3"},{"children":[{"children":[],"title":"高级法官","value":"42","key":"42"},{"children":[],"title":"法官","value":"43","key":"43"},{"children":[],"title":"首席大法官","value":"40","key":"40"},{"children":[],"title":"大法官","value":"41","key":"41"}],"title":"法官等级","value":"4","key":"4"},{"children":[{"children":[],"title":"总警监","value":"20","key":"20"},{"children":[],"title":"警监","value":"21","key":"21"},{"children":[],"title":"警督","value":"22","key":"22"},{"children":[],"title":"警员","value":"24","key":"24"},{"children":[],"title":"警司","value":"23","key":"23"}],"title":"警衔","value":"2","key":"2"},{"children":[{"children":[],"title":"士兵","value":"17","key":"17"},{"children":[],"title":"尉官","value":"14","key":"14"},{"children":[],"title":"学员衔","value":"18","key":"18"},{"children":[],"title":"将官","value":"12","key":"12"},{"children":[],"title":"未授衔","value":"19","key":"19"},{"children":[],"title":"校官","value":"13","key":"13"},{"children":[],"title":"中华人民共和国大元帅(曾经实行的)","value":"110","key":"110"},{"children":[],"title":"士官","value":"15","key":"15"},{"children":[],"title":"中华人民共和国元帅(曾经实行的)","value":"111","key":"111"}],"title":"军衔","value":"1","key":"1"}]; //衔称代码(ZB23-2006/XCDM)
+ export const AE = [{"children":[],"title":"其他","value":"97","key":"97"},{"children":[],"title":"珞巴族","value":"55","key":"55"},{"children":[],"title":"锡伯族","value":"38","key":"38"},{"children":[],"title":"外国血统中国籍人士","value":"98","key":"98"},{"children":[],"title":"俄罗斯族","value":"44","key":"44"},{"children":[],"title":"撒拉族","value":"35","key":"35"},{"children":[],"title":"土家族 ","value":"15","key":"15"},{"children":[],"title":"独龙族","value":"51","key":"51"},{"children":[],"title":"哈尼族","value":"16","key":"16"},{"children":[],"title":"傈僳族","value":"20","key":"20"},{"children":[],"title":"蒙古族","value":"02","key":"02"},{"children":[],"title":"羌族","value":"33","key":"33"},{"children":[],"title":"门巴族","value":"54","key":"54"},{"children":[],"title":"裕固族","value":"48","key":"48"},{"children":[],"title":"汉族","value":"01","key":"01"},{"children":[],"title":"塔塔尔族","value":"50","key":"50"},{"children":[],"title":"保安族","value":"47","key":"47"},{"children":[],"title":"东乡族","value":"26","key":"26"},{"children":[],"title":"佤族","value":"21","key":"21"},{"children":[],"title":"阿昌族","value":"39","key":"39"},{"children":[],"title":"纳西族","value":"27","key":"27"},{"children":[],"title":"白族","value":"14","key":"14"},{"children":[],"title":"彝族","value":"07","key":"07"},{"children":[],"title":"鄂温克族","value":"45","key":"45"},{"children":[],"title":"基诺族","value":"56","key":"56"},{"children":[],"title":"黎族","value":"19","key":"19"},{"children":[],"title":"拉祜族","value":"24","key":"24"},{"children":[],"title":"满族","value":"11","key":"11"},{"children":[],"title":"毛南族","value":"36","key":"36"},{"children":[],"title":"怒族","value":"42","key":"42"},{"children":[],"title":"布朗族","value":"34","key":"34"},{"children":[],"title":"畲族","value":"22","key":"22"},{"children":[],"title":"赫哲族","value":"53","key":"53"},{"children":[],"title":"达斡尔族","value":"31","key":"31"},{"children":[],"title":"傣族","value":"18","key":"18"},{"children":[],"title":"壮族","value":"08","key":"08"},{"children":[],"title":"水族","value":"25","key":"25"},{"children":[],"title":"京族","value":"49","key":"49"},{"children":[],"title":"维吾尔族","value":"05","key":"05"},{"children":[],"title":"仫佬族","value":"32","key":"32"},{"children":[],"title":"哈萨克族","value":"17","key":"17"},{"children":[],"title":"瑶族","value":"13","key":"13"},{"children":[],"title":"柯尔克孜族","value":"29","key":"29"},{"children":[],"title":"朝鲜族","value":"10","key":"10"},{"children":[],"title":"德昂族","value":"46","key":"46"},{"children":[],"title":"侗族","value":"12","key":"12"},{"children":[],"title":"土族","value":"30","key":"30"},{"children":[],"title":"仡佬族","value":"37","key":"37"},{"children":[],"title":"普米族","value":"40","key":"40"},{"children":[],"title":"藏族","value":"04","key":"04"},{"children":[],"title":"回族","value":"03","key":"03"},{"children":[],"title":"乌孜别克族","value":"43","key":"43"},{"children":[],"title":"景颇族","value":"28","key":"28"},{"children":[],"title":"苗族","value":"06","key":"06"},{"children":[],"title":"塔吉克族","value":"41","key":"41"},{"children":[],"title":"布依族","value":"09","key":"09"},{"children":[],"title":"高山族","value":"23","key":"23"},{"children":[],"title":"鄂伦春族","value":"52","key":"52"}]; //中国各民族名称代码 (GB/T 3304-1991)
+ export const QU = [{"children":[],"title":"二级甲级以上残废","value":"4","key":"4"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"超龄","value":"7","key":"7"},{"children":[],"title":"假档案","value":"8","key":"8"},{"children":[],"title":"不符合当地安置条件","value":"6","key":"6"},{"children":[],"title":"提职未满一年","value":"2","key":"2"},{"children":[],"title":"越期未报到","value":"1","key":"1"},{"children":[],"title":"不服从组织分配","value":"5","key":"5"},{"children":[],"title":"受审查未作结论","value":"3","key":"3"}]; //退档原因(RS-TDYY-2004)
+ export const QV = [{"children":[],"title":"研究生","value":"3","key":"3"},{"children":[],"title":"访问学者","value":"1","key":"1"},{"children":[],"title":"进修人员","value":"2","key":"2"}]; //留学身份(RS-LXSF-2004)
+ export const AF = [{"children":[],"title":"相当职务","value":"9","key":"9"},{"children":[{"children":[],"title":"领导职务正职","value":"11","key":"11"},{"children":[],"title":"领导职务副职","value":"12","key":"12"}],"title":"领导职务","value":"1","key":"1"},{"children":[{"children":[],"title":"特殊岗位非领导职务","value":"33","key":"33"},{"children":[],"title":"非领导职务副职","value":"32","key":"32"},{"children":[],"title":"非领导职务正职","value":"31","key":"31"}],"title":"非领导职务","value":"3","key":"3"}]; //职务属性(GB/T 14946-2002 A.69)
+ export const QW = [{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"留学人员","value":"2","key":"2"},{"children":[],"title":"统招统分","value":"3","key":"3"},{"children":[],"title":"现投军人","value":"5","key":"5"},{"children":[],"title":"在职人员","value":"1","key":"1"},{"children":[],"title":"定向委培","value":"4","key":"4"}]; //读博士期间身份(RS-DBSQJSF-2004)
+ export const AG = [{"children":[{"children":[],"title":"住宿业","value":"I66","key":"I66"},{"children":[],"title":"餐饮业","value":"I67","key":"I67"}],"title":"住宿和餐饮业","value":"I","key":"I"},{"children":[{"children":[],"title":"电信和其他信息传输服务业","value":"G60","key":"G60"},{"children":[],"title":"计算机服务业","value":"G61","key":"G61"},{"children":[],"title":"软件业","value":"G62","key":"G62"}],"title":"信息传输、计算机服务和软件业","value":"G","key":"G"},{"children":[{"children":[],"title":"仓储业","value":"F58","key":"F58"},{"children":[],"title":"装卸搬运和其他运输服务业","value":"F57","key":"F57"},{"children":[],"title":"城市公共交通业","value":"F53","key":"F53"},{"children":[],"title":"管道运输业","value":"F56","key":"F56"},{"children":[],"title":"航空运输业","value":"F55","key":"F55"},{"children":[],"title":"道路运输业","value":"F52","key":"F52"},{"children":[],"title":"铁路运输业","value":"F51","key":"F51"},{"children":[],"title":"水上运输业","value":"F54","key":"F54"},{"children":[],"title":"邮政业","value":"F59","key":"F59"}],"title":"交通运输、仓储和邮政业","value":"F","key":"F"},{"children":[{"children":[],"title":"地质勘查业","value":"M78","key":"M78"},{"children":[],"title":"专业技术服务业","value":"M76","key":"M76"},{"children":[],"title":"研究与试验发展","value":"M75","key":"M75"},{"children":[],"title":"科技交流和推广服务业","value":"M77","key":"M77"}],"title":"科学研究、技术服务和地质勘查业","value":"M","key":"M"},{"children":[{"children":[],"title":"房地产业","value":"K72","key":"K72"}],"title":"房地产业","value":"K","key":"K"},{"children":[{"children":[],"title":"娱乐业","value":"R92","key":"R92"},{"children":[],"title":"文化艺术业","value":"R90","key":"R90"},{"children":[],"title":"广播、电视、电影和音像业","value":"R89","key":"R89"},{"children":[],"title":"新闻出版业","value":"R88","key":"R88"},{"children":[],"title":"R91","value":"R91","key":"R91"}],"title":"文化、体育和娱乐业","value":"R","key":"R"},{"children":[{"children":[],"title":"商务服务业","value":"L74","key":"L74"},{"children":[],"title":"租赁业","value":"L73","key":"L73"}],"title":"租赁和商务服务业","value":"L","key":"L"},{"children":[{"children":[],"title":"林业","value":"A02","key":"A02"},{"children":[],"title":"农业","value":"A01","key":"A01"},{"children":[],"title":"渔业","value":"A04","key":"A04"},{"children":[],"title":"畜牧业","value":"A03","key":"A03"},{"children":[],"title":"农、林、牧、渔服务业","value":"A05","key":"A05"}],"title":"农、林、牧、渔业","value":"A","key":"A"},{"children":[{"children":[],"title":"其他服务业","value":"O83","key":"O83"},{"children":[],"title":"居民服务业","value":"O82","key":"O82"}],"title":"居民服务和其他服务业","value":"O","key":"O"},{"children":[{"children":[],"title":"国际组织","value":"T98","key":"T98"}],"title":"国际组织","value":"T","key":"T"},{"children":[{"children":[],"title":"批发业","value":"H63","key":"H63"},{"children":[],"title":"零售业","value":"H65","key":"H65"}],"title":"批发和零售业","value":"H","key":"H"},{"children":[{"children":[],"title":"公共设施管理业","value":"N81","key":"N81"},{"children":[],"title":"环境管理业","value":"N80","key":"N80"},{"children":[],"title":"水利管理业","value":"N79","key":"N79"}],"title":"水利、环境和公共设施管理业","value":"N","key":"N"},{"children":[{"children":[],"title":"社会福利业","value":"Q87","key":"Q87"},{"children":[],"title":"社会保障业","value":"Q86","key":"Q86"},{"children":[],"title":"卫生","value":"Q85","key":"Q85"}],"title":"卫生、社会保障和社会福利业","value":"Q","key":"Q"},{"children":[{"children":[],"title":"石油和天然气开采业","value":"B07","key":"B07"},{"children":[],"title":"其他矿采选业","value":"B11","key":"B11"},{"children":[],"title":"黑色金属矿采选业","value":"B08","key":"B08"},{"children":[],"title":"非金属矿采选业","value":"B10","key":"B10"},{"children":[],"title":"煤炭开采和洗选业","value":"B06","key":"B06"},{"children":[],"title":"有色金属矿采选业","value":"B09","key":"B09"}],"title":"采矿业","value":"B","key":"B"},{"children":[{"children":[],"title":"其他建筑业","value":"E50","key":"E50"},{"children":[],"title":"建筑安装业","value":"E48","key":"E48"},{"children":[],"title":"房屋和土木工程建筑业","value":"E47","key":"E47"},{"children":[],"title":"建筑装饰业","value":"E49","key":"E49"}],"title":"建筑业","value":"E","key":"E"},{"children":[{"children":[],"title":"证券业","value":"J69","key":"J69"},{"children":[],"title":"银行业","value":"J68","key":"J68"},{"children":[],"title":"其他金融活动","value":"J71","key":"J71"},{"children":[],"title":"保险业","value":"J70","key":"J70"}],"title":"金融业","value":"J","key":"J"},{"children":[{"children":[],"title":"仪器仪表及文化、办公用机械制造业","value":"C41","key":"C41"},{"children":[],"title":"印刷业和记录媒介的复制","value":"C23","key":"C23"},{"children":[],"title":"农副食品加工业","value":"C13","key":"C13"},{"children":[],"title":"文教体育用品制造业","value":"C24","key":"C24"},{"children":[],"title":"纺织、服装、鞋、帽制造业","value":"C18","key":"C18"},{"children":[],"title":"烟草制品业","value":"C16","key":"C16"},{"children":[],"title":"通用设备制造业","value":"C35","key":"C35"},{"children":[],"title":"化学纤维制造业","value":"C28","key":"C28"},{"children":[],"title":"有色金属冶炼及压延加工业","value":"C33","key":"C33"},{"children":[],"title":"造纸及纸制品业","value":"C22","key":"C22"},{"children":[],"title":"石油加工、炼焦及核燃料加工业","value":"C25","key":"C25"},{"children":[],"title":"电气机械及器材制造业","value":"C39","key":"C39"},{"children":[],"title":"工艺品及其他制造业","value":"C42","key":"C42"},{"children":[],"title":"纺织业","value":"C17","key":"C17"},{"children":[],"title":"塑料制品业","value":"C30","key":"C30"},{"children":[],"title":"医药制造业","value":"C27","key":"C27"},{"children":[],"title":"饮料制造业","value":"C15","key":"C15"},{"children":[],"title":"家具制造业","value":"C21","key":"C21"},{"children":[],"title":"交通运输设备制造业","value":"C37","key":"C37"},{"children":[],"title":"木材加工及木、竹、藤、棕、草制品业","value":"C20","key":"C20"},{"children":[],"title":"橡胶制品业","value":"C29","key":"C29"},{"children":[],"title":"非金属矿物制品业","value":"C31","key":"C31"},{"children":[],"title":"废气资源和废旧材料回收加工业","value":"C43","key":"C43"},{"children":[],"title":"食品制造业","value":"C14","key":"C14"},{"children":[],"title":"通信设备、计算机及其他电子设备制造业","value":"C40","key":"C40"},{"children":[],"title":"黑色金属冶炼及压延加工业","value":"C32","key":"C32"},{"children":[],"title":"化学原料及化学制品制造业","value":"C26","key":"C26"},{"children":[],"title":"皮革、毛皮、羽毛(绒)及其制品业","value":"C19","key":"C19"},{"children":[],"title":"金属制品业","value":"C34","key":"C34"},{"children":[],"title":"专用设备制造业","value":"C36","key":"C36"}],"title":"制造业","value":"C","key":"C"},{"children":[{"children":[],"title":"教育","value":"P84","key":"P84"}],"title":"教育","value":"P","key":"P"},{"children":[{"children":[],"title":"水的生产和供应业","value":"D46","key":"D46"},{"children":[],"title":"电力、热力的生产和供应业","value":"D44","key":"D44"},{"children":[],"title":"燃气生产和供应业","value":"D45","key":"D45"}],"title":"电力、燃气及水的生产和供应业","value":"D","key":"D"},{"children":[{"children":[],"title":"国家机构","value":"S94","key":"S94"},{"children":[],"title":"群众团体、社会团体和宗教组织","value":"S96","key":"S96"},{"children":[],"title":"基层群众自治组织","value":"S97","key":"S97"},{"children":[],"title":"人民政协和民主党派","value":"S95","key":"S95"},{"children":[],"title":"中国共产党机关","value":"S93","key":"S93"}],"title":"公共管理和社会组织","value":"S","key":"S"}]; //国民经济行业(GB/T 4754-2002)
+ export const QX = [{"children":[],"title":"自筹经费","value":"5","key":"5"},{"children":[],"title":"流动站自主","value":"2","key":"2"},{"children":[],"title":"流动站、工作站联合","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"国家资助","value":"7","key":"7"},{"children":[],"title":"工作站单独","value":"3","key":"3"},{"children":[],"title":"留学回国","value":"6","key":"6"},{"children":[],"title":"项目博士后","value":"4","key":"4"},{"children":[],"title":"重点资助","value":"8","key":"8"}]; //招收类型(RS-ZSLX-2004)
+ export const AH = [{"children":[{"children":[],"title":"军人","value":"X0","key":"X0"}],"title":"军人","value":"X","key":"X"},{"children":[{"children":[],"title":"不便分类的其他从业人员","value":"Y0","key":"Y0"}],"title":"不便分类的其他从业人员","value":"Y","key":"Y"},{"children":[{"children":[],"title":"电力设备安装、运行、检修及供电人员","value":"72","key":"72"},{"children":[],"title":"药品生产人员","value":"79","key":"79"},{"children":[],"title":"机械设备修理人员","value":"71","key":"71"},{"children":[],"title":"橡胶和塑料制品生产人员","value":"74","key":"74"},{"children":[],"title":"裁剪、缝纫和皮革、毛皮制品加工制作人员","value":"76","key":"76"},{"children":[],"title":"粮油、食品、饮料生产加工及饲料生产加工人员","value":"77","key":"77"},{"children":[],"title":"电子元器件与设备制造、装配、调试及维修人员","value":"73","key":"73"},{"children":[],"title":"纺织、针织、印染人员","value":"75","key":"75"},{"children":[],"title":"烟草及其制品加工人员","value":"78","key":"78"}],"title":"生产、运输设备操作人员及有关人员(二)","value":"7","key":"7"},{"children":[{"children":[],"title":"工程施工人员(二)","value":"89","key":"89"},{"children":[],"title":"建筑材料生产加工人员","value":"82","key":"82"},{"children":[],"title":"广播影视制品制作、播放及文物保护作业人员","value":"84","key":"84"},{"children":[],"title":"工艺、美术品制作人员","value":"86","key":"86"},{"children":[],"title":"工程施工人员(一)","value":"88","key":"88"},{"children":[],"title":"木材加工、人造板生产、木制品制作及制浆、造纸和纸制品生产加工人员","value":"81","key":"81"},{"children":[],"title":"印刷人员","value":"85","key":"85"},{"children":[],"title":"文化教育、体育用品制作人员","value":"87","key":"87"},{"children":[],"title":"玻璃、陶瓷、搪瓷及其制品生产加工人员","value":"83","key":"83"}],"title":"生产、运输设备操作人员及有关人员(三)","value":"8","key":"8"},{"children":[{"children":[],"title":"渔业生产人员","value":"54","key":"54"},{"children":[],"title":"其他农、林、牧、渔、水利业生产人员","value":"59","key":"59"},{"children":[],"title":"水利设施管理养护人员","value":"55","key":"55"},{"children":[],"title":"林业生产及野生动植物保护人员","value":"52","key":"52"},{"children":[],"title":"畜牧业生产人员","value":"53","key":"53"},{"children":[],"title":"种植业生产人员","value":"51","key":"51"}],"title":"农、林、牧、渔、水利业生产人员","value":"5","key":"5"},{"children":[{"children":[],"title":"环境监测与废物处理人员","value":"92","key":"92"},{"children":[],"title":"运输设备操作人员及有关人员","value":"91","key":"91"},{"children":[],"title":"其他生产、运输设备操作人员及有关人员","value":"99","key":"99"},{"children":[],"title":"检验、计量人员","value":"93","key":"93"}],"title":"生产、运输设备操作人员及有关人员(四)","value":"9","key":"9"},{"children":[{"children":[],"title":"饭店、旅游及健身娱乐场所服务人员","value":"44","key":"44"},{"children":[],"title":"运输服务人员","value":"45","key":"45"},{"children":[],"title":"其他商业、服务人员","value":"49","key":"49"},{"children":[],"title":"医疗卫生辅助服务人员","value":"46","key":"46"},{"children":[],"title":"餐饮服务人员","value":"43","key":"43"},{"children":[],"title":"社会服务和居民生活服务人员(一)","value":"47","key":"47"},{"children":[],"title":"购销人员","value":"41","key":"41"},{"children":[],"title":"仓储人员","value":"42","key":"42"},{"children":[],"title":"社会服务和居民生活服务人员(二)","value":"48","key":"48"}],"title":"商业、服务业人员","value":"4","key":"4"},{"children":[{"children":[],"title":"金融业务人员","value":"22","key":"22"},{"children":[],"title":"宗教职业者","value":"28","key":"28"},{"children":[],"title":"教学人员","value":"24","key":"24"},{"children":[],"title":"新闻出版、文化工作人员","value":"27","key":"27"},{"children":[],"title":"其他专业技术人员","value":"29","key":"29"},{"children":[],"title":"文学艺术工作人员","value":"25","key":"25"},{"children":[],"title":"经济业务人员","value":"21","key":"21"},{"children":[],"title":"法律专业人员","value":"23","key":"23"},{"children":[],"title":"体育工作人员","value":"26","key":"26"}],"title":"专业技术人员(二)","value":"2","key":"2"},{"children":[{"children":[],"title":"国家机关及其工作机构负责人","value":"02","key":"02"},{"children":[],"title":"中国共产党中央委员会和地方各级组织负责人","value":"01","key":"01"},{"children":[],"title":"民主党派和社会团体及其工作机构负责人","value":"03","key":"03"},{"children":[],"title":"事业单位负责人","value":"04","key":"04"},{"children":[],"title":"企业负责人","value":"05","key":"05"}],"title":"国家机关、党群组织、企业、事业单位负责人","value":"0","key":"0"},{"children":[{"children":[],"title":"工程技术人员(三)","value":"15","key":"15"},{"children":[],"title":"工程技术人员(四)","value":"16","key":"16"},{"children":[],"title":"工程技术人员(二)","value":"14","key":"14"},{"children":[],"title":"工程技术人员(一)","value":"13","key":"13"},{"children":[],"title":"科学研究人员(一)","value":"11","key":"11"},{"children":[],"title":"飞机和船舶技术人员","value":"18","key":"18"},{"children":[],"title":"卫生专业技术人员","value":"19","key":"19"},{"children":[],"title":"农业技术人员","value":"17","key":"17"},{"children":[],"title":"科学研究人员(二)","value":"12","key":"12"}],"title":"专业技术人员(一)","value":"1","key":"1"},{"children":[{"children":[],"title":"邮政和电信业务人员","value":"33","key":"33"},{"children":[],"title":"安全保卫和消防人员","value":"32","key":"32"},{"children":[],"title":"行政办公人员","value":"31","key":"31"},{"children":[],"title":"其他办事人员和有关人员","value":"39","key":"39"}],"title":"办事人员和有关人员","value":"3","key":"3"},{"children":[{"children":[],"title":"机电产品装配人员(二)","value":"68","key":"68"},{"children":[],"title":"化工产品生产人员(一)","value":"64","key":"64"},{"children":[],"title":"化工产品生产人员(二)","value":"65","key":"65"},{"children":[],"title":"勘测及矿物开采人员","value":"61","key":"61"},{"children":[],"title":"机电产品装配人员(一)","value":"67","key":"67"},{"children":[],"title":"机电产品装配人员(三)","value":"69","key":"69"},{"children":[],"title":"金属冶炼、扎制人员(二)","value":"63","key":"63"},{"children":[],"title":"机械制造加工人员","value":"66","key":"66"},{"children":[],"title":"金属冶炼、扎制人员(一)","value":"62","key":"62"}],"title":"生产、运输设备操作人员及有关人员(一)","value":"6","key":"6"}]; //职业分类与代码(GB/T 6565-1999)
+ export const QY = [{"children":[],"title":"差","value":"4","key":"4"},{"children":[],"title":"优","value":"1","key":"1"},{"children":[],"title":"中","value":"3","key":"3"},{"children":[],"title":"良","value":"2","key":"2"}]; //评定结果(RS-PDJG-2005)
+ export const AI = [{"children":[{"children":[],"title":"森林资源类","value":"0902","key":"0902"},{"children":[],"title":"水产类","value":"0905","key":"0905"},{"children":[],"title":"农业推广类","value":"0907","key":"0907"},{"children":[],"title":"环境保护类","value":"0903","key":"0903"},{"children":[],"title":"管理类","value":"0906","key":"0906"},{"children":[],"title":"植物生产类","value":"0901","key":"0901"},{"children":[],"title":"动物生产与兽医类","value":"0904","key":"0904"}],"title":"农学","value":"09","key":"09"},{"children":[{"children":[],"title":"化工与制药类","value":"0812","key":"0812"},{"children":[],"title":"交通运输类","value":"0817","key":"0817"},{"children":[],"title":"航空航天类","value":"0818","key":"0818"},{"children":[],"title":"管理工程类","value":"0822","key":"0822"},{"children":[],"title":"兵器类","value":"0819","key":"0819"},{"children":[],"title":"轻工粮食食品类","value":"0813","key":"0813"},{"children":[],"title":"热能核能类","value":"0805","key":"0805"},{"children":[],"title":"纺织类","value":"0816","key":"0816"},{"children":[],"title":"电子与信息类","value":"0807","key":"0807"},{"children":[],"title":"林业工程类","value":"0815","key":"0815"},{"children":[],"title":"地质类","value":"0801","key":"0801"},{"children":[],"title":"测绘类","value":"0810","key":"0810"},{"children":[],"title":"工程力学类","value":"0821","key":"0821"},{"children":[],"title":"农业工程类","value":"0814","key":"0814"},{"children":[],"title":"材料类","value":"0802","key":"0802"},{"children":[],"title":"水利类","value":"0809","key":"0809"},{"children":[],"title":"机械类","value":"0803","key":"0803"},{"children":[],"title":"电工类","value":"0806","key":"0806"},{"children":[],"title":"土建类","value":"0808","key":"0808"},{"children":[],"title":"仪器仪表类","value":"0804","key":"0804"},{"children":[],"title":"环境类","value":"0811","key":"0811"},{"children":[],"title":"公安技术类","value":"0820","key":"0820"}],"title":"工学","value":"08","key":"08"},{"children":[{"children":[],"title":"工商管理类","value":"0202","key":"0202"},{"children":[],"title":"经济学类","value":"0201","key":"0201"}],"title":"经济学","value":"02","key":"02"},{"children":[],"title":"军事学","value":"11","key":"11"},{"children":[{"children":[],"title":"图书信息档案学类","value":"0602","key":"0602"},{"children":[],"title":"历史学类","value":"0601","key":"0601"}],"title":"历史学","value":"06","key":"06"},{"children":[{"children":[],"title":"马克思主义理论类","value":"0102","key":"0102"},{"children":[],"title":"哲学类","value":"0101","key":"0101"}],"title":"哲学","value":"01","key":"01"},{"children":[{"children":[],"title":"药学类","value":"1008","key":"1008"},{"children":[],"title":"临床医学与医学技术类","value":"1003","key":"1003"},{"children":[],"title":"管理类","value":"1009","key":"1009"},{"children":[],"title":"口腔医学类","value":"1004","key":"1004"},{"children":[],"title":"中医学类","value":"1005","key":"1005"},{"children":[],"title":"预防医学类","value":"1002","key":"1002"},{"children":[],"title":"护理学类","value":"1007","key":"1007"},{"children":[],"title":"法医学类","value":"1006","key":"1006"},{"children":[],"title":"基础医学类","value":"1001","key":"1001"}],"title":"医学","value":"10","key":"10"},{"children":[{"children":[],"title":"大气科学类","value":"0709","key":"0709"},{"children":[],"title":"天文学类","value":"0705","key":"0705"},{"children":[],"title":"心理学类","value":"0715","key":"0715"},{"children":[],"title":"力学类","value":"0711","key":"0711"},{"children":[],"title":"地球物理学类","value":"0708","key":"0708"},{"children":[],"title":"信息与电子科学类","value":"0712","key":"0712"},{"children":[],"title":"数学类","value":"0701","key":"0701"},{"children":[],"title":"海洋科学类","value":"0710","key":"0710"},{"children":[],"title":"地理科学类","value":"0707","key":"0707"},{"children":[],"title":"化学类","value":"0703","key":"0703"},{"children":[],"title":"物理学类","value":"0702","key":"0702"},{"children":[],"title":"环境科学类","value":"0714","key":"0714"},{"children":[],"title":"科技信息与管理类","value":"0716","key":"0716"},{"children":[],"title":"地质学类","value":"0706","key":"0706"},{"children":[],"title":"材料科学类","value":"0713","key":"0713"},{"children":[],"title":"生物科学类","value":"0704","key":"0704"}],"title":"理学","value":"07","key":"07"},{"children":[{"children":[],"title":"政治学类","value":"0303","key":"0303"},{"children":[],"title":"公安学类","value":"0304","key":"0304"},{"children":[],"title":"法学类","value":"0301","key":"0301"},{"children":[],"title":"社会学类","value":"0302","key":"0302"}],"title":"法学","value":"03","key":"03"},{"children":[{"children":[],"title":"教育学类","value":"0401","key":"0401"},{"children":[],"title":"思想政治教育类","value":"0402","key":"0402"},{"children":[],"title":"职业技术教育类","value":"0404","key":"0404"},{"children":[],"title":"体育学类","value":"0403","key":"0403"}],"title":"教育学","value":"04","key":"04"},{"children":[{"children":[],"title":"艺术类(一)","value":"0504","key":"0504"},{"children":[],"title":"新闻学类","value":"0503","key":"0503"},{"children":[],"title":"艺术类(二)","value":"0505","key":"0505"},{"children":[],"title":"中国语言文学类","value":"0501","key":"0501"},{"children":[],"title":"外国语言文学类","value":"0502","key":"0502"}],"title":"文学","value":"05","key":"05"}]; //高等学校本科、专科专业名称代码 (GB/T 16835-1997)
+ export const QZ = [{"children":[],"title":"留设站单位","value":"2","key":"2"},{"children":[],"title":"回原工作单位","value":"1","key":"1"},{"children":[],"title":"流动到其他单位","value":"3","key":"3"}]; //出站工作去向(RS-CZGZQX-2004)
+ export const AJ = [{"children":[{"children":[],"title":"高级教师(小学)","value":"413","key":"413"},{"children":[],"title":"三级教师(小学)","value":"416","key":"416"},{"children":[],"title":"二级教师(小学)","value":"415","key":"415"},{"children":[],"title":"一级教师(小学)","value":"414","key":"414"}],"title":"小学教师","value":"41","key":"41"},{"children":[{"children":[],"title":"律师助理","value":"395","key":"395"},{"children":[],"title":"四级律师","value":"394","key":"394"},{"children":[],"title":"三级律师","value":"393","key":"393"},{"children":[],"title":"二级律师","value":"392","key":"392"},{"children":[],"title":"一级律师","value":"391","key":"391"}],"title":"律师","value":"39","key":"39"},{"children":[{"children":[],"title":"三级美术师","value":"343","key":"343"},{"children":[],"title":"二级美术师","value":"342","key":"342"},{"children":[],"title":"一级美术师","value":"341","key":"341"},{"children":[],"title":"美术员","value":"344","key":"344"}],"title":"艺术人员(美术)","value":"34","key":"34"},{"children":[{"children":[],"title":"一级实习指导教师","value":"043","key":"043"},{"children":[],"title":"二级实习指导教师","value":"044","key":"044"},{"children":[],"title":"三级实习指导教师","value":"045","key":"045"},{"children":[],"title":"高级实习指导教师","value":"042","key":"042"}],"title":"技工学校教师(实习指导)","value":"04","key":"04"},{"children":[{"children":[],"title":"高级工艺美术师","value":"272","key":"272"},{"children":[],"title":"工艺美术员","value":"275","key":"275"},{"children":[],"title":"助理工艺美术师","value":"274","key":"274"},{"children":[],"title":"工艺美术师","value":"273","key":"273"}],"title":"工艺美术人员","value":"27","key":"27"},{"children":[{"children":[],"title":"一级舞美设计师","value":"351","key":"351"},{"children":[],"title":"舞美设计员","value":"354","key":"354"},{"children":[],"title":"二级舞美设计师","value":"352","key":"352"},{"children":[],"title":"三级舞美设计师","value":"353","key":"353"}],"title":"艺术人员(舞美设计)","value":"35","key":"35"},{"children":[{"children":[],"title":"会计师","value":"133","key":"133"},{"children":[],"title":"高级会计师","value":"132","key":"132"},{"children":[],"title":"会计员","value":"135","key":"135"},{"children":[],"title":"助理会计师","value":"134","key":"134"}],"title":"会计专业人员","value":"13","key":"13"},{"children":[{"children":[],"title":"三管轮","value":"435","key":"435"},{"children":[],"title":"轮机长(大管轮)","value":"433","key":"433"},{"children":[],"title":"高级轮机长","value":"432","key":"432"},{"children":[],"title":"二管轮","value":"434","key":"434"}],"title":"船舶技术人员(轮机)","value":"43","key":"43"},{"children":[{"children":[],"title":"高级报务员","value":"452","key":"452"},{"children":[],"title":"二等报务员","value":"454","key":"454"},{"children":[],"title":"普通报务员","value":"453","key":"453"},{"children":[],"title":"限用报务员","value":"455","key":"455"}],"title":"船舶技术人员(报务)","value":"45","key":"45"},{"children":[{"children":[],"title":"高级教师(中学)","value":"052","key":"052"},{"children":[],"title":"一级教师(中学)","value":"053","key":"053"},{"children":[],"title":"二级教师(中学)","value":"054","key":"054"},{"children":[],"title":"三级教师(中学)","value":"055","key":"055"}],"title":"中学教师","value":"05","key":"05"},{"children":[{"children":[],"title":"高级审计师","value":"682","key":"682"},{"children":[],"title":"助理审计师","value":"684","key":"684"},{"children":[],"title":"审计师","value":"683","key":"683"},{"children":[],"title":"审计员","value":"685","key":"685"}],"title":"审计专业人员","value":"68","key":"68"},{"children":[{"children":[],"title":"研究实习员(自然科学)","value":"614","key":"614"},{"children":[],"title":"研究员(自然科学)","value":"611","key":"611"},{"children":[],"title":"助理研究员(自然科学)","value":"613","key":"613"},{"children":[],"title":"副研究员(自然科学)","value":"612","key":"612"}],"title":"自然科学研究人员","value":"61","key":"61"},{"children":[{"children":[],"title":"四级编剧","value":"304","key":"304"},{"children":[],"title":"二级编剧","value":"302","key":"302"},{"children":[],"title":"三级编剧","value":"303","key":"303"},{"children":[],"title":"一级编剧","value":"301","key":"301"}],"title":"艺术人员(编剧)","value":"30","key":"30"},{"children":[{"children":[],"title":"副主任法医师","value":"692","key":"692"},{"children":[],"title":"主任法医师","value":"691","key":"691"},{"children":[],"title":"主检法医师","value":"693","key":"693"},{"children":[],"title":"法医士","value":"695","key":"695"},{"children":[],"title":"法医师","value":"694","key":"694"}],"title":"法医专业人员","value":"69","key":"69"},{"children":[{"children":[],"title":"助理馆员(群众文化)","value":"674","key":"674"},{"children":[],"title":"馆员(群众文化)","value":"673","key":"673"},{"children":[],"title":"研究馆员(群众文化)","value":"671","key":"671"},{"children":[],"title":"副研究馆员(群众文化)","value":"672","key":"672"},{"children":[],"title":"管理员(群众文化)","value":"675","key":"675"}],"title":"群众文化专业人员","value":"67","key":"67"},{"children":[{"children":[],"title":"一级飞行机械员","value":"492","key":"492"},{"children":[],"title":"四级飞行机械员","value":"495","key":"495"},{"children":[],"title":"三级飞行机械员","value":"494","key":"494"},{"children":[],"title":"二级飞行机械员","value":"493","key":"493"}],"title":"飞行技术人员(机械)","value":"49","key":"49"},{"children":[{"children":[],"title":"讲师(高校)","value":"013","key":"013"},{"children":[],"title":"教授","value":"011","key":"011"},{"children":[],"title":"助教(高校)","value":"014","key":"014"},{"children":[],"title":"副教授","value":"012","key":"012"}],"title":"高等学校教师","value":"01","key":"01"},{"children":[{"children":[],"title":"船长(大副)","value":"423","key":"423"},{"children":[],"title":"三副","value":"425","key":"425"},{"children":[],"title":"二副","value":"424","key":"424"},{"children":[],"title":"高级船长","value":"422","key":"422"}],"title":"船舶技术人员(驾驶)","value":"42","key":"42"},{"children":[{"children":[],"title":"技术员","value":"085","key":"085"},{"children":[],"title":"高级工程师","value":"082","key":"082"},{"children":[],"title":"助理工程师","value":"084","key":"084"},{"children":[],"title":"工程师","value":"083","key":"083"}],"title":"工程技术人员","value":"08","key":"08"},{"children":[{"children":[],"title":"主任记者","value":"192","key":"192"},{"children":[],"title":"助理记者","value":"194","key":"194"},{"children":[],"title":"记者","value":"193","key":"193"},{"children":[],"title":"高级记者","value":"191","key":"191"}],"title":"新闻专业人员(记者)","value":"19","key":"19"},{"children":[{"children":[],"title":"高级农艺师","value":"092","key":"092"},{"children":[],"title":"助理农艺师","value":"094","key":"094"},{"children":[],"title":"农业技术员","value":"095","key":"095"},{"children":[],"title":"农业技术推广研究员(农艺)","value":"091","key":"091"},{"children":[],"title":"农艺师","value":"093","key":"093"}],"title":"农业技术人员(农艺)","value":"09","key":"09"},{"children":[{"children":[],"title":"四级作曲","value":"334","key":"334"},{"children":[],"title":"三级作曲","value":"333","key":"333"},{"children":[],"title":"一级作曲","value":"331","key":"331"},{"children":[],"title":"二级作曲","value":"332","key":"332"}],"title":"艺术人员(作曲)","value":"33","key":"33"},{"children":[{"children":[],"title":"主治医师","value":"233","key":"233"},{"children":[],"title":"副主任医师","value":"232","key":"232"},{"children":[],"title":"医师","value":"234","key":"234"},{"children":[],"title":"医士","value":"235","key":"235"},{"children":[],"title":"主任医师","value":"231","key":"231"}],"title":"卫生技术人员(医师)","value":"23","key":"23"},{"children":[{"children":[],"title":"讲师(中专)","value":"023","key":"023"},{"children":[],"title":"高级讲师(中专)","value":"022","key":"022"},{"children":[],"title":"助理讲师(中专)","value":"024","key":"024"},{"children":[],"title":"教员(中专)","value":"025","key":"025"}],"title":"中等专业学校教师","value":"02","key":"02"},{"children":[{"children":[],"title":"政工员","value":"985","key":"985"},{"children":[],"title":"高级政工师","value":"982","key":"982"},{"children":[],"title":"助理政工师","value":"984","key":"984"},{"children":[],"title":"政工师","value":"983","key":"983"}],"title":"思想政治工作人员","value":"98","key":"98"},{"children":[{"children":[],"title":"副编审","value":"152","key":"152"},{"children":[],"title":"编辑","value":"153","key":"153"},{"children":[],"title":"编审","value":"151","key":"151"},{"children":[],"title":"助理编辑","value":"154","key":"154"}],"title":"出版专业人员(编审)","value":"15","key":"15"},{"children":[{"children":[],"title":"药师","value":"244","key":"244"},{"children":[],"title":"主管药师","value":"243","key":"243"},{"children":[],"title":"主任药师","value":"241","key":"241"},{"children":[],"title":"副主任药师","value":"242","key":"242"},{"children":[],"title":"药士","value":"245","key":"245"}],"title":"卫生技术人员(药剂)","value":"24","key":"24"},{"children":[{"children":[],"title":"一级教练","value":"373","key":"373"},{"children":[],"title":"国家级教练","value":"371","key":"371"},{"children":[],"title":"三级教练","value":"375","key":"375"},{"children":[],"title":"二级教练","value":"374","key":"374"},{"children":[],"title":"高级教练","value":"372","key":"372"}],"title":"体育锻炼","value":"37","key":"37"},{"children":[{"children":[],"title":"三、四级引航员","value":"504","key":"504"},{"children":[],"title":"一、二级引航员","value":"503","key":"503"},{"children":[],"title":"高级引航员","value":"502","key":"502"}],"title":"船舶技术人员(引航)","value":"50","key":"50"},{"children":[{"children":[],"title":"普通电机员(一等电机员)","value":"443","key":"443"},{"children":[],"title":"二等电机员","value":"444","key":"444"},{"children":[],"title":"高级电机员","value":"442","key":"442"}],"title":"船舶技术人员(电机)","value":"44","key":"44"},{"children":[{"children":[],"title":"助理兽医师","value":"104","key":"104"},{"children":[],"title":"农业技术推广研究员(兽医)","value":"101","key":"101"},{"children":[],"title":"高级兽医师","value":"102","key":"102"},{"children":[],"title":"兽医技术员","value":"105","key":"105"},{"children":[],"title":"兽医师","value":"103","key":"103"}],"title":"农业技术人员(兽医)","value":"10","key":"10"},{"children":[{"children":[],"title":"二级演员","value":"282","key":"282"},{"children":[],"title":"四级演员","value":"284","key":"284"},{"children":[],"title":"三级演员","value":"283","key":"283"},{"children":[],"title":"一级演员","value":"281","key":"281"}],"title":"艺术人员(演员)","value":"28","key":"28"},{"children":[{"children":[],"title":"三级导演","value":"313","key":"313"},{"children":[],"title":"二级导演","value":"312","key":"312"},{"children":[],"title":"一级导演","value":"311","key":"311"},{"children":[],"title":"四级导演","value":"314","key":"314"}],"title":"艺术人员(导演)","value":"31","key":"31"},{"children":[{"children":[],"title":"高级统计师","value":"142","key":"142"},{"children":[],"title":"助理统计师","value":"144","key":"144"},{"children":[],"title":"统计员","value":"145","key":"145"},{"children":[],"title":"统计师","value":"143","key":"143"}],"title":"统计专业人员","value":"14","key":"14"},{"children":[{"children":[],"title":"一级公证员","value":"401","key":"401"},{"children":[],"title":"四级公证员","value":"404","key":"404"},{"children":[],"title":"公证助理员","value":"405","key":"405"},{"children":[],"title":"三级公证员","value":"403","key":"403"},{"children":[],"title":"二级公证员","value":"402","key":"402"}],"title":"公证员","value":"40","key":"40"},{"children":[{"children":[],"title":"翻译","value":"183","key":"183"},{"children":[],"title":"副译审","value":"182","key":"182"},{"children":[],"title":"译审","value":"181","key":"181"},{"children":[],"title":"助理翻译","value":"184","key":"184"}],"title":"翻译人员","value":"18","key":"18"},{"children":[{"children":[],"title":"研究馆员(图书)","value":"641","key":"641"},{"children":[],"title":"馆员(图书)","value":"643","key":"643"},{"children":[],"title":"管理员(图书)","value":"645","key":"645"},{"children":[],"title":"助理馆员(图书)","value":"644","key":"644"},{"children":[],"title":"副研究馆员(图书)","value":"642","key":"642"}],"title":"图书、资料专业人员","value":"64","key":"64"},{"children":[{"children":[],"title":"技术编辑","value":"163","key":"163"},{"children":[],"title":"技术设计员","value":"165","key":"165"},{"children":[],"title":"助理技术编辑","value":"164","key":"164"}],"title":"出版专业人员(技术编辑)","value":"16","key":"16"},{"children":[{"children":[],"title":"副研究员(社会科学)","value":"622","key":"622"},{"children":[],"title":"研究实习员(社会科学)","value":"624","key":"624"},{"children":[],"title":"研究员(社会科学)","value":"621","key":"621"},{"children":[],"title":"助理研究员(社会科学)","value":"623","key":"623"}],"title":"社会科学研究人员","value":"62","key":"62"},{"children":[{"children":[],"title":"高级讲师(技校)","value":"032","key":"032"},{"children":[],"title":"教员(技校)","value":"035","key":"035"},{"children":[],"title":"助理讲师(技校)","value":"034","key":"034"},{"children":[],"title":"讲师(技校)","value":"033","key":"033"}],"title":"技工学校教师","value":"03","key":"03"},{"children":[{"children":[],"title":"主任舞台技师","value":"362","key":"362"},{"children":[],"title":"舞台技术员","value":"364","key":"364"},{"children":[],"title":"舞台技师","value":"363","key":"363"}],"title":"艺术人员(舞台设计)","value":"36","key":"36"},{"children":[{"children":[],"title":"四级领航员","value":"475","key":"475"},{"children":[],"title":"二级领航员","value":"473","key":"473"},{"children":[],"title":"一级领航员","value":"472","key":"472"},{"children":[],"title":"三级领航员","value":"474","key":"474"}],"title":"飞行技术人员(领航)","value":"47","key":"47"},{"children":[{"children":[],"title":"实验师","value":"073","key":"073"},{"children":[],"title":"实验员","value":"075","key":"075"},{"children":[],"title":"高级实验师","value":"072","key":"072"},{"children":[],"title":"助理实验师","value":"074","key":"074"}],"title":"实验技术人员","value":"07","key":"07"},{"children":[{"children":[],"title":"助理经济师","value":"124","key":"124"},{"children":[],"title":"高级经济师","value":"122","key":"122"},{"children":[],"title":"经济师","value":"123","key":"123"},{"children":[],"title":"经济员","value":"125","key":"125"}],"title":"经济专业人员","value":"12","key":"12"},{"children":[{"children":[],"title":"助理馆员(文博)","value":"654","key":"654"},{"children":[],"title":"馆员(文博)","value":"653","key":"653"},{"children":[],"title":"副研究馆员(文博)","value":"652","key":"652"},{"children":[],"title":"管理员(文博)","value":"655","key":"655"},{"children":[],"title":"研究馆员(文博)","value":"651","key":"651"}],"title":"文博专业人员","value":"65","key":"65"},{"children":[{"children":[],"title":"一级飞行通信员","value":"482","key":"482"},{"children":[],"title":"二级飞行通信员","value":"483","key":"483"},{"children":[],"title":"三级飞行通信员","value":"484","key":"484"},{"children":[],"title":"四级飞行通信员","value":"485","key":"485"}],"title":"飞行技术人员(通信)","value":"48","key":"48"},{"children":[{"children":[],"title":"二级演奏员","value":"292","key":"292"},{"children":[],"title":"三级演奏员","value":"293","key":"293"},{"children":[],"title":"一级演奏员","value":"291","key":"291"},{"children":[],"title":"四级演奏员","value":"294","key":"294"}],"title":"艺术人员(演奏员)","value":"29","key":"29"},{"children":[{"children":[],"title":"畜牧技术员","value":"115","key":"115"},{"children":[],"title":"高级畜牧师","value":"112","key":"112"},{"children":[],"title":"畜牧师","value":"113","key":"113"},{"children":[],"title":"助理畜牧师","value":"114","key":"114"},{"children":[],"title":"农业技术推广研究员(畜牧)","value":"111","key":"111"}],"title":"农业技术人员(畜牧)","value":"11","key":"11"},{"children":[{"children":[],"title":"助理馆员(档案)","value":"664","key":"664"},{"children":[],"title":"馆员(档案)","value":"663","key":"663"},{"children":[],"title":"管理员(档案)","value":"665","key":"665"},{"children":[],"title":"副研究馆员(档案)","value":"662","key":"662"},{"children":[],"title":"研究馆员(档案)","value":"661","key":"661"}],"title":"档案专业人员","value":"66","key":"66"},{"children":[{"children":[],"title":"二级指挥","value":"322","key":"322"},{"children":[],"title":"一级指挥","value":"321","key":"321"},{"children":[],"title":"四级指挥","value":"324","key":"324"},{"children":[],"title":"三级指挥","value":"323","key":"323"}],"title":"艺术人员(指挥)","value":"32","key":"32"},{"children":[{"children":[],"title":"主管护师","value":"253","key":"253"},{"children":[],"title":"主任护师","value":"251","key":"251"},{"children":[],"title":"护士","value":"255","key":"255"},{"children":[],"title":"护师","value":"254","key":"254"},{"children":[],"title":"副主任护师","value":"252","key":"252"}],"title":"卫生技术人员(护理)","value":"25","key":"25"},{"children":[{"children":[],"title":"三级飞行员","value":"464","key":"464"},{"children":[],"title":"四级飞行员","value":"465","key":"465"},{"children":[],"title":"一级飞行员","value":"462","key":"462"},{"children":[],"title":"二级飞行员","value":"463","key":"463"}],"title":"飞行技术人员(驾驶)","value":"46","key":"46"},{"children":[{"children":[],"title":"高级编辑","value":"201","key":"201"},{"children":[],"title":"助理编辑","value":"204","key":"204"},{"children":[],"title":"主任编辑","value":"202","key":"202"},{"children":[],"title":"编辑","value":"203","key":"203"}],"title":"新闻专业人员(编辑)","value":"20","key":"20"},{"children":[{"children":[],"title":"主任技师","value":"261","key":"261"},{"children":[],"title":"副主任技师","value":"262","key":"262"},{"children":[],"title":"技士","value":"265","key":"265"},{"children":[],"title":"技师","value":"264","key":"264"},{"children":[],"title":"主管技师","value":"263","key":"263"}],"title":"卫生技术人员(技师)","value":"26","key":"26"},{"children":[{"children":[],"title":"主任播音员","value":"222","key":"222"},{"children":[],"title":"三级播音员","value":"225","key":"225"},{"children":[],"title":"播音指导","value":"221","key":"221"},{"children":[],"title":"一级播音员","value":"223","key":"223"},{"children":[],"title":"二级播音员","value":"224","key":"224"}],"title":"播音员","value":"22","key":"22"},{"children":[{"children":[],"title":"一级校对","value":"173","key":"173"},{"children":[],"title":"二级校对","value":"174","key":"174"},{"children":[],"title":"三级校对","value":"175","key":"175"}],"title":"出版专业人员(校对)","value":"17","key":"17"}]; //专业技术职务代码 (GB/T 8561-2001)
+ export const AK = [{"children":[{"children":[],"title":"副股长","value":"222B","key":"222B"},{"children":[],"title":"股长","value":"222A","key":"222A"}],"title":"股长","value":"222","key":"222"},{"children":[{"children":[],"title":"驻珀斯总领事","value":"E117","key":"E117"},{"children":[],"title":"驻墨尔本总领事","value":"E115","key":"E115"},{"children":[],"title":"驻悉尼总领事","value":"E113","key":"E113"},{"children":[],"title":"驻布里斯班馆长领事","value":"E119","key":"E119"},{"children":[],"title":"驻澳大利亚特命全权大使","value":"E110","key":"E110"}],"title":"驻澳大利亚特命全权大使","value":"E11","key":"E11"},{"children":[{"children":[],"title":"副哨长","value":"848B","key":"848B"},{"children":[],"title":"哨长","value":"848A","key":"848A"}],"title":"哨长...","value":"848","key":"848"},{"children":[{"children":[],"title":"驻保加利亚特命全权大使","value":"C510","key":"C510"}],"title":"驻保加利亚特命全权大使","value":"C51","key":"C51"},{"children":[{"children":[],"title":"国务院学科组召集人","value":"T98A","key":"T98A"}],"title":"国务院学科组召集人","value":"T98","key":"T98"},{"children":[{"children":[],"title":"驻阿联酋特命全权大使","value":"A7A0","key":"A7A0"},{"children":[],"title":"驻迪拜总领事","value":"A7A3","key":"A7A3"}],"title":"驻阿联酋特命全权大使","value":"A7A","key":"A7A"},{"children":[{"children":[],"title":"总督察","value":"704Q","key":"704Q"},{"children":[],"title":"副总督察","value":"704R","key":"704R"}],"title":"总督察","value":"704","key":"704"},{"children":[{"children":[],"title":"首席代表","value":"338A","key":"338A"}],"title":"首席代表","value":"338","key":"338"},{"children":[{"children":[],"title":"军事代表","value":"857A","key":"857A"},{"children":[],"title":"副总军事代表","value":"857R","key":"857R"},{"children":[],"title":"总军事代表","value":"857Q","key":"857Q"}],"title":"军事代表...","value":"857","key":"857"},{"children":[{"children":[],"title":"执行副主席","value":"202B","key":"202B"},{"children":[],"title":"执行主席","value":"202A","key":"202A"}],"title":"执行主席","value":"202","key":"202"},{"children":[{"children":[],"title":"商务参赞","value":"316A","key":"316A"}],"title":"商务参赞","value":"316","key":"316"},{"children":[{"children":[],"title":"政务参赞","value":"312A","key":"312A"}],"title":"政务参赞","value":"312","key":"312"},{"children":[{"children":[],"title":"常驻世界银行执行董事","value":"G51A","key":"G51A"}],"title":"常驻世界银行执行董事","value":"G51","key":"G51"},{"children":[{"children":[],"title":"副分场长","value":"442B","key":"442B"},{"children":[],"title":"分场长","value":"442A","key":"442A"}],"title":"场长","value":"442","key":"442"},{"children":[{"children":[],"title":"副总工艺师","value":"502R","key":"502R"},{"children":[],"title":"总工艺师","value":"502Q","key":"502Q"}],"title":"工艺师...","value":"502","key":"502"},{"children":[{"children":[],"title":"驻库克群岛特命全权大使","value":"E1A0","key":"E1A0"}],"title":"驻库克群岛特命全权大使","value":"E1A","key":"E1A"},{"children":[{"children":[],"title":"副调度长","value":"452B","key":"452B"},{"children":[],"title":"调度长","value":"452A","key":"452A"},{"children":[],"title":"总调度长","value":"452Q","key":"452Q"},{"children":[],"title":"副总调度长","value":"452R","key":"452R"}],"title":"调度长...","value":"452","key":"452"},{"children":[{"children":[],"title":"驻塔吉克斯坦特命全权大使","value":"C310","key":"C310"}],"title":"驻塔吉克斯坦特命全权大使","value":"C31","key":"C31"},{"children":[{"children":[],"title":"副厅长","value":"217B","key":"217B"},{"children":[],"title":"厅长助理","value":"217J","key":"217J"},{"children":[],"title":"厅长","value":"217A","key":"217A"}],"title":"厅长","value":"217","key":"217"},{"children":[{"children":[],"title":"驻刚果共和国特命全权大使","value":"B470","key":"B470"}],"title":"驻刚果共和国特命全权大使","value":"B47","key":"B47"},{"children":[{"children":[],"title":"驻坦桑尼亚特命全权大使","value":"B3A0","key":"B3A0"},{"children":[],"title":"驻桑给巴尔总领事","value":"B3A3","key":"B3A3"}],"title":"驻坦桑尼亚特命全权大使","value":"B3A","key":"B3A"},{"children":[{"children":[],"title":"驻巴勒斯坦特命全权大使","value":"A810","key":"A810"}],"title":"驻巴勒斯坦国特命全权大使","value":"A81","key":"A81"},{"children":[{"children":[],"title":"驻科威特特命全权大使","value":"A740","key":"A740"}],"title":"驻科威特特命全权大使","value":"A74","key":"A74"},{"children":[{"children":[],"title":"副排长","value":"818B","key":"818B"},{"children":[],"title":"排长","value":"818A","key":"818A"}],"title":"排长...","value":"818","key":"818"},{"children":[{"children":[],"title":"监事","value":"408A","key":"408A"}],"title":"监事...","value":"408","key":"408"},{"children":[{"children":[],"title":"首席稽查","value":"703A","key":"703A"}],"title":"稽查","value":"703","key":"703"},{"children":[{"children":[],"title":"第二书记","value":"001D","key":"001D"},{"children":[],"title":"代理书记","value":"001G","key":"001G"},{"children":[],"title":"第三书记","value":"001E","key":"001E"},{"children":[],"title":"副书记","value":"001B","key":"001B"},{"children":[],"title":"总书记","value":"001Q","key":"001Q"},{"children":[],"title":"书记","value":"001A","key":"001A"},{"children":[],"title":"候补书记","value":"001P","key":"001P"},{"children":[],"title":"第一书记","value":"001C","key":"001C"}],"title":"书记","value":"001","key":"001"},{"children":[{"children":[],"title":"中央电视台台长","value":"T57A","key":"T57A"}],"title":"中央电视台台长","value":"T57","key":"T57"},{"children":[{"children":[],"title":"护士长","value":"425A","key":"425A"}],"title":"护士长...","value":"425","key":"425"},{"children":[{"children":[],"title":"驻亚历山大总领事","value":"B113","key":"B113"},{"children":[],"title":"驻埃及特命全权大使","value":"B110","key":"B110"}],"title":"驻埃及特命全权大使","value":"B11","key":"B11"},{"children":[{"children":[],"title":"名誉校长","value":"418M","key":"418M"},{"children":[],"title":"副校长","value":"418B","key":"418B"},{"children":[],"title":"校长助理","value":"418J","key":"418J"},{"children":[],"title":"校长","value":"418A","key":"418A"}],"title":"校长...","value":"418","key":"418"},{"children":[{"children":[],"title":"国家核安全局局长","value":"T91A","key":"T91A"}],"title":"国家核安全局局长","value":"T91","key":"T91"},{"children":[{"children":[],"title":"监察员","value":"014A","key":"014A"}],"title":"监察员","value":"014","key":"014"},{"children":[{"children":[],"title":"驻波德戈里察总领事","value":"C4D3","key":"C4D3"},{"children":[],"title":"驻塞尔维亚和黑山特命全权大使","value":"C4D0","key":"C4D0"}],"title":"驻塞尔维亚和黑山特命全权大使","value":"C4D","key":"C4D"},{"children":[{"children":[],"title":"副总飞行师","value":"505R","key":"505R"},{"children":[],"title":"总飞行师","value":"505Q","key":"505Q"}],"title":"飞行师...","value":"505","key":"505"},{"children":[{"children":[],"title":"驻新西兰特命全权大使","value":"E140","key":"E140"},{"children":[],"title":"驻奥克兰总领事","value":"E143","key":"E143"}],"title":"驻新西兰特命全权大使","value":"E14","key":"E14"},{"children":[{"children":[],"title":"大队长","value":"840A","key":"840A"},{"children":[],"title":"副大队长","value":"840B","key":"840B"}],"title":"大队长...","value":"840","key":"840"},{"children":[{"children":[],"title":"常驻国际原子能机构代表","value":"G41A","key":"G41A"}],"title":"常驻国际原子能机构代表","value":"G41","key":"G41"},{"children":[{"children":[],"title":"国务委员","value":"206A","key":"206A"}],"title":"国务委员","value":"206","key":"206"},{"children":[{"children":[],"title":"副教育长","value":"421B","key":"421B"},{"children":[],"title":"教育长","value":"421A","key":"421A"}],"title":"教育长...","value":"421","key":"421"},{"children":[{"children":[],"title":"常驻亚洲开发银行执行董事","value":"G61A","key":"G61A"}],"title":"常驻亚洲开发银行执行董事","value":"G61","key":"G61"},{"children":[{"children":[],"title":"州长","value":"254A","key":"254A"},{"children":[],"title":"代理州长","value":"254G","key":"254G"},{"children":[],"title":"州长助理","value":"254J","key":"254J"},{"children":[],"title":"副州长","value":"254B","key":"254B"}],"title":"州长","value":"254","key":"254"},{"children":[{"children":[],"title":"总务长","value":"420A","key":"420A"},{"children":[],"title":"副总务长","value":"420B","key":"420B"}],"title":"总务长...","value":"420","key":"420"},{"children":[{"children":[],"title":"校委会委员","value":"T45U","key":"T45U"}],"title":"校委会委员","value":"T45","key":"T45"},{"children":[{"children":[],"title":"委员","value":"002A","key":"002A"},{"children":[],"title":"常务委员","value":"002K","key":"002K"},{"children":[],"title":"第一副主任委员","value":"002F","key":"002F"},{"children":[],"title":"候补委员","value":"002P","key":"002P"},{"children":[],"title":"主任委员","value":"002S","key":"002S"},{"children":[],"title":"副主任委员","value":"002T","key":"002T"}],"title":"委员","value":"002","key":"002"},{"children":[{"children":[],"title":"国家原子能机构主任","value":"T89A","key":"T89A"}],"title":"国家原子能机构主任","value":"T89","key":"T89"},{"children":[{"children":[],"title":"组长","value":"401A","key":"401A"},{"children":[],"title":"副组长","value":"401B","key":"401B"}],"title":"组长...","value":"401","key":"401"},{"children":[{"children":[],"title":"职员","value":"343A","key":"343A"}],"title":"职员","value":"343","key":"343"},{"children":[{"children":[],"title":"社长","value":"414A","key":"414A"},{"children":[],"title":"副社长","value":"414B","key":"414B"},{"children":[],"title":"社长助理","value":"414J","key":"414J"}],"title":"社长...","value":"414","key":"414"},{"children":[{"children":[],"title":"驻苏丹特命全权大使","value":"B210","key":"B210"}],"title":"驻苏丹特命全权大使","value":"B21","key":"B21"},{"children":[{"children":[],"title":"后勤部政治委员","value":"T63A","key":"T63A"}],"title":"后勤部政治委员","value":"T63","key":"T63"},{"children":[{"children":[],"title":"驻釜山总领事","value":"A143","key":"A143"},{"children":[],"title":"驻大韩民国特命全权大使","value":"A140","key":"A140"}],"title":"驻大韩民国特命全权大使","value":"A14","key":"A14"},{"children":[{"children":[],"title":"名誉董事长","value":"431M","key":"431M"},{"children":[],"title":"副董事长","value":"431B","key":"431B"},{"children":[],"title":"董事长","value":"431A","key":"431A"}],"title":"董事长...","value":"431","key":"431"},{"children":[{"children":[],"title":"驻阿根廷特命全权大使","value":"D4A0","key":"D4A0"}],"title":"驻阿根廷特命全权大使","value":"D4A","key":"D4A"},{"children":[{"children":[],"title":"副督察长","value":"705B","key":"705B"},{"children":[],"title":"督察长","value":"705A","key":"705A"}],"title":"察长","value":"705","key":"705"},{"children":[{"children":[],"title":"驻芬兰特命全权大使","value":"C570","key":"C570"}],"title":"驻芬兰特命全权大使","value":"C57","key":"C57"},{"children":[{"children":[],"title":"助理联络员","value":"018J","key":"018J"},{"children":[],"title":"联络员","value":"018A","key":"018A"}],"title":"联络员","value":"018","key":"018"},{"children":[{"children":[],"title":"驻圣多美和普林西比特命全权大使","value":"B510","key":"B510"}],"title":"驻圣多美和普林西比特命全权大使","value":"B51","key":"B51"},{"children":[{"children":[],"title":"监事会主席","value":"T31A","key":"T31A"},{"children":[],"title":"监事会副主席","value":"T31B","key":"T31B"}],"title":"监事会主席","value":"T31","key":"T31"},{"children":[{"children":[],"title":"常委","value":"T01K","key":"T01K"}],"title":"常委","value":"T01","key":"T01"},{"children":[{"children":[],"title":"组织员","value":"017A","key":"017A"}],"title":"组织员","value":"017","key":"017"},{"children":[{"children":[],"title":"谈判代表助理","value":"T85J","key":"T85J"},{"children":[],"title":"首席谈判代表","value":"T85A","key":"T85A"},{"children":[],"title":"谈判副代表","value":"T85B","key":"T85B"}],"title":"首席谈判代表","value":"T85","key":"T85"},{"children":[{"children":[],"title":"驻科特迪瓦特命全权大使","value":"B9D0","key":"B9D0"}],"title":"驻科特迪瓦特命全权大使","value":"B9D","key":"B9D"},{"children":[{"children":[],"title":"驻佛得角特命全权大使","value":"B8A0","key":"B8A0"}],"title":"驻佛得角特命全权大使","value":"B8A","key":"B8A"},{"children":[{"children":[],"title":"副局长","value":"216B","key":"216B"},{"children":[],"title":"局长","value":"216A","key":"216A"},{"children":[],"title":"局长助理","value":"216J","key":"216J"}],"title":"局长","value":"216","key":"216"},{"children":[{"children":[],"title":"监察部驻XXX监察局局长","value":"T30A","key":"T30A"},{"children":[],"title":"监察部驻XXX监察局副局长","value":"T30B","key":"T30B"}],"title":"监察部驻XXX监察局局长","value":"T30","key":"T30"},{"children":[{"children":[],"title":"成员","value":"003A","key":"003A"}],"title":"成员","value":"003","key":"003"},{"children":[{"children":[],"title":"总经济师","value":"123Q","key":"123Q"},{"children":[],"title":"副总经济师","value":"123R","key":"123R"}],"title":"经济师","value":"123","key":"123"},{"children":[{"children":[],"title":"首席工程师","value":"082A","key":"082A"}],"title":"首席工程师","value":"082","key":"082"},{"children":[{"children":[],"title":"驻慕尼黑总领事","value":"C717","key":"C717"},{"children":[],"title":"驻法兰克福总领事","value":"C715","key":"C715"},{"children":[],"title":"驻汉堡总领事","value":"C713","key":"C713"},{"children":[],"title":"驻德国特命全权大使","value":"C710","key":"C710"}],"title":"驻德国特命全权大使","value":"C71","key":"C71"},{"children":[{"children":[],"title":"驻瓦努阿图特命全权大使","value":"E340","key":"E340"}],"title":"驻瓦努阿图特命全权大使","value":"E34","key":"E34"},{"children":[{"children":[],"title":"经济参赞","value":"314A","key":"314A"}],"title":"经济参赞","value":"314","key":"314"},{"children":[{"children":[],"title":"驻阿尔及利亚特命全权大使","value":"B1A0","key":"B1A0"}],"title":"驻阿尔及利亚特命全权大使","value":"B1A","key":"B1A"},{"children":[{"children":[],"title":"驻巴西特命全权大使","value":"D410","key":"D410"},{"children":[],"title":"驻圣保罗总领事","value":"D415","key":"D415"},{"children":[],"title":"驻里约热内卢总领事","value":"D413","key":"D413"}],"title":"驻巴西特命全权大使","value":"D41","key":"D41"},{"children":[{"children":[],"title":"首席会计师","value":"132A","key":"132A"}],"title":"首席会计师","value":"132","key":"132"},{"children":[{"children":[],"title":"专职干部","value":"860A","key":"860A"}],"title":"专职干部","value":"860","key":"860"},{"children":[{"children":[],"title":"驻越南特命全权大使","value":"A1A0","key":"A1A0"},{"children":[],"title":"驻胡志明市总领事","value":"A1A3","key":"A1A3"}],"title":"驻越南特命全权大使","value":"A1A","key":"A1A"},{"children":[{"children":[],"title":"驻摩尔多瓦特命全权大使","value":"C2D0","key":"C2D0"}],"title":"驻摩尔多瓦特命全权大使","value":"C2D","key":"C2D"},{"children":[{"children":[],"title":"代表","value":"337A","key":"337A"},{"children":[],"title":"副代表","value":"337B","key":"337B"},{"children":[],"title":"代表助理","value":"337J","key":"337J"}],"title":"代表","value":"337","key":"337"},{"children":[{"children":[],"title":"驻毛里求斯特命全权大使","value":"B910","key":"B910"}],"title":"驻毛里求斯特命全权大使","value":"B91","key":"B91"},{"children":[{"children":[],"title":"部门副经理","value":"444B","key":"444B"},{"children":[],"title":"部门经理","value":"444A","key":"444A"},{"children":[],"title":"部门副总经理","value":"444R","key":"444R"},{"children":[],"title":"部门总经理","value":"444Q","key":"444Q"}],"title":"部门经理","value":"444","key":"444"},{"children":[{"children":[],"title":"驻巴哈马特命全权大使","value":"D1G0","key":"D1G0"}],"title":"驻巴哈马特命全权大使","value":"D1G","key":"D1G"},{"children":[{"children":[],"title":"副场长","value":"440B","key":"440B"},{"children":[],"title":"场长","value":"440A","key":"440A"}],"title":"场长...","value":"440","key":"440"},{"children":[{"children":[],"title":"助理员","value":"856A","key":"856A"}],"title":"助理员...","value":"856","key":"856"},{"children":[{"children":[],"title":"第一政治委员","value":"851C","key":"851C"},{"children":[],"title":"副政治委员","value":"851B","key":"851B"},{"children":[],"title":"政治委员","value":"851A","key":"851A"}],"title":"政治委员...","value":"851","key":"851"},{"children":[{"children":[],"title":"驻斯洛伐克特命全权大使","value":"C440","key":"C440"}],"title":"驻斯洛伐克特命全权大使","value":"C44","key":"C44"},{"children":[{"children":[],"title":"副总领事","value":"331R","key":"331R"},{"children":[],"title":"总领事","value":"331Q","key":"331Q"}],"title":"总领事","value":"331","key":"331"},{"children":[{"children":[],"title":"驻荷兰特命全权大使","value":"C8J0","key":"C8J0"}],"title":"驻荷兰特命全权大使","value":"C8J","key":"C8J"},{"children":[{"children":[],"title":"驻莱索托特命全权大使","value":"B9A0","key":"B9A0"}],"title":"驻莱索托特命全权大使","value":"B9A","key":"B9A"},{"children":[{"children":[],"title":"驻丹麦特命全权大使","value":"C5D0","key":"C5D0"}],"title":"驻丹麦特命全权大使","value":"C5D","key":"C5D"},{"children":[{"children":[],"title":"驻玻利维亚特命全权大使","value":"D540","key":"D540"},{"children":[],"title":"驻圣克鲁斯馆长领事","value":"D543","key":"D543"}],"title":"驻玻利维亚特命全权大使","value":"D54","key":"D54"},{"children":[{"children":[],"title":"舰长","value":"831A","key":"831A"},{"children":[],"title":"副舰长","value":"831B","key":"831B"}],"title":"舰长...","value":"831","key":"831"},{"children":[{"children":[],"title":"理事","value":"406A","key":"406A"}],"title":"理事...","value":"406","key":"406"},{"children":[{"children":[],"title":"驻马耳他特命全权大使","value":"C840","key":"C840"}],"title":"驻马耳他特命全权大使","value":"C84","key":"C84"},{"children":[{"children":[],"title":"书记员","value":"110A","key":"110A"}],"title":"书记员","value":"110","key":"110"},{"children":[{"children":[],"title":"总督学","value":"507Q","key":"507Q"},{"children":[],"title":"副总督学","value":"507R","key":"507R"}],"title":"总督学","value":"507","key":"507"},{"children":[{"children":[],"title":"国家安全生产应急救援指挥中心主任","value":"T97A","key":"T97A"}],"title":"国家安全生产应急救援指挥中心主任","value":"T97","key":"T97"},{"children":[{"children":[],"title":"纪工委书记","value":"T73A","key":"T73A"},{"children":[],"title":"纪工委副书记","value":"T73B","key":"T73B"}],"title":"纪工委书记","value":"T73","key":"T73"},{"children":[{"children":[],"title":"舰务长","value":"832A","key":"832A"},{"children":[],"title":"副舰务长","value":"832B","key":"832B"}],"title":"舰务长...","value":"832","key":"832"},{"children":[{"children":[],"title":"驻以色列特命全权大使","value":"A840","key":"A840"}],"title":"驻以色列特命全权大使","value":"A84","key":"A84"},{"children":[{"children":[],"title":"驻卢森堡特命全权大使","value":"C6G0","key":"C6G0"}],"title":"驻卢森堡特命全权大使","value":"C6G","key":"C6G"},{"children":[{"children":[],"title":"院长助理","value":"417J","key":"417J"},{"children":[],"title":"院长","value":"417A","key":"417A"},{"children":[],"title":"名誉院长","value":"417M","key":"417M"},{"children":[],"title":"代理院长","value":"417G","key":"417G"},{"children":[],"title":"副院长","value":"417B","key":"417B"}],"title":"院长...","value":"417","key":"417"},{"children":[{"children":[],"title":"副主任科员","value":"221T","key":"221T"},{"children":[],"title":"科员","value":"221A","key":"221A"},{"children":[],"title":"主任科员","value":"221S","key":"221S"}],"title":"科员","value":"221","key":"221"},{"children":[{"children":[],"title":"新闻参赞","value":"313A","key":"313A"}],"title":"新闻参赞","value":"313","key":"313"},{"children":[{"children":[],"title":"驻巴林国特命全权大使","value":"A710","key":"A710"}],"title":"驻巴林国特命全权大使","value":"A71","key":"A71"},{"children":[{"children":[],"title":"首席监事","value":"407A","key":"407A"}],"title":"首席监事...","value":"407","key":"407"},{"children":[{"children":[],"title":"驻马里特命全权大使","value":"B740","key":"B740"}],"title":"驻马里特命全权大使","value":"B74","key":"B74"},{"children":[{"children":[],"title":"大使衔总领事","value":"330A","key":"330A"}],"title":"大使衔总领事","value":"330","key":"330"},{"children":[{"children":[],"title":"驻突尼斯特命全权大使","value":"B170","key":"B170"}],"title":"驻突尼斯特命全权大使","value":"B17","key":"B17"},{"children":[{"children":[],"title":"公使衔参赞","value":"311A","key":"311A"}],"title":"公使衔参赞","value":"311","key":"311"},{"children":[{"children":[],"title":"编辑委员会委员","value":"T49U","key":"T49U"}],"title":"编辑委员会委员","value":"T49","key":"T49"},{"children":[{"children":[],"title":"副委员长","value":"101B","key":"101B"},{"children":[],"title":"委员长","value":"101A","key":"101A"}],"title":"委员长","value":"101","key":"101"},{"children":[{"children":[],"title":"驻巴布亚新几内亚特命全权大使","value":"E170","key":"E170"}],"title":"驻巴布亚新几内亚特命全权大使","value":"E17","key":"E17"},{"children":[{"children":[],"title":"独立董事","value":"427A","key":"427A"}],"title":"独立董事","value":"427","key":"427"},{"children":[{"children":[],"title":"机关党委书记","value":"T14A","key":"T14A"},{"children":[],"title":"机关党委副书记","value":"T14B","key":"T14B"},{"children":[],"title":"机关党委常务副书记","value":"T14L","key":"T14L"}],"title":"机关党委书记","value":"T14","key":"T14"},{"children":[{"children":[],"title":"特命全权裁军事务大使","value":"T99A","key":"T99A"}],"title":"特命全权裁军事务大使","value":"T99","key":"T99"},{"children":[{"children":[],"title":"常驻联合国日内瓦办事处和瑞士其他国际组织副代表","value":"G17B","key":"G17B"},{"children":[],"title":"常驻联合国日内瓦办事处和瑞士其他国际组织代表","value":"G17A","key":"G17A"}],"title":"常驻联合国日内瓦办事处和瑞士其他国际组织代表","value":"G17","key":"G17"},{"children":[{"children":[],"title":"一等秘书","value":"341C","key":"341C"},{"children":[],"title":"三等秘书","value":"341E","key":"341E"},{"children":[],"title":"二等秘书","value":"341D","key":"341D"}],"title":"秘书...","value":"341","key":"341"},{"children":[{"children":[],"title":"副分队长","value":"846B","key":"846B"},{"children":[],"title":"分队长","value":"846A","key":"846A"}],"title":"分队长...","value":"846","key":"846"},{"children":[{"children":[],"title":"总监","value":"435A","key":"435A"}],"title":"总监...","value":"435","key":"435"},{"children":[{"children":[],"title":"驻刚果民主共和国特命全权大使","value":"B480","key":"B480"}],"title":"驻刚果民主共和国特命全权大使","value":"B48","key":"B48"},{"children":[{"children":[],"title":"驻马赛总领事","value":"C873","key":"C873"},{"children":[],"title":"驻斯特拉斯堡总领事","value":"C875","key":"C875"},{"children":[],"title":"驻帕皮提馆长领事","value":"C877","key":"C877"},{"children":[],"title":"驻法国特命全权大使","value":"C870","key":"C870"}],"title":"驻法国特命全权大使","value":"C87","key":"C87"},{"children":[{"children":[],"title":"驻毛里坦尼亚特命全权大使","value":"B240","key":"B240"}],"title":"驻毛里坦尼亚特命全权大使","value":"B24","key":"B24"},{"children":[{"children":[],"title":"副专员","value":"257B","key":"257B"},{"children":[],"title":"专员助理","value":"257J","key":"257J"},{"children":[],"title":"专员","value":"257A","key":"257A"}],"title":"专员","value":"257","key":"257"},{"children":[{"children":[],"title":"常驻联合国副代表","value":"G14B","key":"G14B"},{"children":[],"title":"常驻联合国代表","value":"G14A","key":"G14A"}],"title":"常驻联合国代表","value":"G14","key":"G14"},{"children":[{"children":[],"title":"师长","value":"812A","key":"812A"},{"children":[],"title":"副师长","value":"812B","key":"812B"}],"title":"师长...","value":"812","key":"812"},{"children":[{"children":[],"title":"驻索马特命全权大使","value":"B2A0","key":"B2A0"}],"title":"驻索马里特命全权大使","value":"B2A","key":"B2A"},{"children":[{"children":[],"title":"常驻联合国人类住区(生境)中心代表","value":"G47A","key":"G47A"}],"title":"常驻联合国人类住区(生境)中心代表","value":"G47","key":"G47"},{"children":[{"children":[],"title":"驻乍得特命全权大使","value":"B570","key":"B570"}],"title":"驻乍得特命全权大使","value":"B57","key":"B57"},{"children":[{"children":[],"title":"驻曼德勒总领事","value":"A243","key":"A243"},{"children":[],"title":"驻缅甸特命全权大使","value":"A240","key":"A240"}],"title":"驻缅甸特命全权大使","value":"A24","key":"A24"},{"children":[{"children":[],"title":"副科长","value":"220B","key":"220B"},{"children":[],"title":"科长","value":"220A","key":"220A"}],"title":"科长","value":"220","key":"220"},{"children":[{"children":[],"title":"侦察员","value":"020A","key":"020A"}],"title":"侦察员","value":"020","key":"020"},{"children":[{"children":[],"title":"旅长","value":"814A","key":"814A"},{"children":[],"title":"副旅长","value":"814B","key":"814B"}],"title":"旅长...","value":"814","key":"814"},{"children":[{"children":[],"title":"分局长","value":"437A","key":"437A"},{"children":[],"title":"副分局长","value":"437B","key":"437B"}],"title":"分局长...","value":"437","key":"437"},{"children":[{"children":[],"title":"副总会计师","value":"133R","key":"133R"},{"children":[],"title":"总会计师","value":"133Q","key":"133Q"}],"title":"会计师","value":"133","key":"133"},{"children":[{"children":[],"title":"园长","value":"426A","key":"426A"},{"children":[],"title":"副园长","value":"426B","key":"426B"}],"title":"园长...","value":"426","key":"426"},{"children":[{"children":[],"title":"驻老挝特命全权大使","value":"A1D0","key":"A1D0"}],"title":"驻老挝特命全权大使","value":"A1D","key":"A1D"},{"children":[{"children":[],"title":"海外版总编辑","value":"T51Q","key":"T51Q"}],"title":"海外版总编辑","value":"T51","key":"T51"},{"children":[{"children":[],"title":"副航海长","value":"834B","key":"834B"},{"children":[],"title":"航海长","value":"834A","key":"834A"}],"title":"航海长...","value":"834","key":"834"},{"children":[{"children":[],"title":"驻巴兰基亚馆长领事","value":"D3A3","key":"D3A3"},{"children":[],"title":"驻哥伦比亚特命全权大使","value":"D3A0","key":"D3A0"}],"title":"驻哥伦比亚特命全权大使","value":"D3A","key":"D3A"},{"children":[{"children":[],"title":"代理镇长","value":"260G","key":"260G"},{"children":[],"title":"镇长","value":"260A","key":"260A"},{"children":[],"title":"副镇长","value":"260B","key":"260B"}],"title":"镇长","value":"260","key":"260"},{"children":[{"children":[],"title":"驻塔马塔夫馆长领事","value":"B8T3","key":"B8T3"},{"children":[],"title":"驻马达加斯加特命全权大使","value":"B8T0","key":"B8T0"}],"title":"驻马达加斯加特命全权大使","value":"B8T","key":"B8T"},{"children":[{"children":[],"title":"代理盟长","value":"256G","key":"256G"},{"children":[],"title":"盟长","value":"256A","key":"256A"},{"children":[],"title":"副盟长","value":"256B","key":"256B"},{"children":[],"title":"盟长助理","value":"256J","key":"256J"}],"title":"盟长","value":"256","key":"256"},{"children":[{"children":[],"title":"行长","value":"402A","key":"402A"},{"children":[],"title":"副行长","value":"402B","key":"402B"},{"children":[],"title":"行长助理","value":"402J","key":"402J"}],"title":"行长...","value":"402","key":"402"},{"children":[{"children":[],"title":"管教员","value":"021A","key":"021A"}],"title":"管教员","value":"021","key":"021"},{"children":[{"children":[],"title":"驻吉尔吉斯斯坦特命全权大使","value":"C340","key":"C340"}],"title":"驻吉尔吉斯斯坦特命全权大使","value":"C34","key":"C34"},{"children":[{"children":[],"title":"职工代表董事","value":"428A","key":"428A"}],"title":"职工代表董事","value":"428","key":"428"},{"children":[{"children":[],"title":"常驻联合国工业发展组织代表","value":"G37A","key":"G37A"}],"title":"常驻联合国工业发展组织代表","value":"G37","key":"G37"},{"children":[{"children":[],"title":"驻加蓬特命全权大使","value":"B4D0","key":"B4D0"}],"title":"驻加蓬特命全权大使","value":"B4D","key":"B4D"},{"children":[{"children":[],"title":"副总兽医师","value":"115R","key":"115R"},{"children":[],"title":"总兽医师","value":"115Q","key":"115Q"}],"title":"兽医师","value":"115","key":"115"},{"children":[{"children":[],"title":"留守组长","value":"351A","key":"351A"}],"title":"留守组长","value":"351","key":"351"},{"children":[{"children":[],"title":"人大主任","value":"T75A","key":"T75A"}],"title":"人大主任","value":"T75","key":"T75"},{"children":[{"children":[],"title":"驻波兰特命全权大使","value":"C3G0","key":"C3G0"},{"children":[],"title":"驻革但斯克总领事","value":"C3G3","key":"C3G3"}],"title":"驻波兰特命全权大使","value":"C3G","key":"C3G"},{"children":[{"children":[],"title":"随员","value":"342A","key":"342A"}],"title":"随员...","value":"342","key":"342"},{"children":[{"children":[],"title":"驻厄立特里亚特命全权大使","value":"B310","key":"B310"}],"title":"驻厄立特里亚特命全权大使","value":"B31","key":"B31"},{"children":[{"children":[],"title":"副市长","value":"252B","key":"252B"},{"children":[],"title":"市长","value":"252A","key":"252A"},{"children":[],"title":"市长助理","value":"252J","key":"252J"},{"children":[],"title":"代理市长","value":"252G","key":"252G"}],"title":"市长","value":"252","key":"252"},{"children":[{"children":[],"title":"驻吉布提特命全权大使","value":"B270","key":"B270"}],"title":"驻吉布提特命全权大使","value":"B27","key":"B27"},{"children":[{"children":[],"title":"驻奥地利特命全权大使","value":"C740","key":"C740"}],"title":"驻奥地利特命全权大使","value":"C74","key":"C74"},{"children":[{"children":[],"title":"常务董事","value":"432K","key":"432K"},{"children":[],"title":"董事","value":"432A","key":"432A"}],"title":"董事...","value":"432","key":"432"},{"children":[{"children":[],"title":"常驻亚太经社会代表","value":"G24A","key":"G24A"}],"title":"常驻亚太经社会代表","value":"G24","key":"G24"},{"children":[{"children":[],"title":"主席助理","value":"201J","key":"201J"},{"children":[],"title":"副主席","value":"201B","key":"201B"},{"children":[],"title":"主席","value":"201A","key":"201A"},{"children":[],"title":"第一副主席","value":"201F","key":"201F"},{"children":[],"title":"名誉主席","value":"201M","key":"201M"},{"children":[],"title":"代理主席","value":"201G","key":"201G"}],"title":"主席","value":"201","key":"201"},{"children":[{"children":[],"title":"驻列支敦士登特命全权大使","value":"C7A0","key":"C7A0"}],"title":"驻列支敦士登特命全权大使","value":"C7A","key":"C7A"},{"children":[{"children":[],"title":"协理员","value":"854A","key":"854A"},{"children":[],"title":"副协理员","value":"854B","key":"854B"}],"title":"协理员...","value":"854","key":"854"},{"children":[{"children":[],"title":"常驻联合国粮农机构(罗马)代表处代表","value":"G31A","key":"G31A"}],"title":"常驻联合国粮农机构(罗马)代表处代表","value":"G31","key":"G31"},{"children":[{"children":[],"title":"外交部驻澳门特别行政区特派员公署特派员","value":"T84A","key":"T84A"},{"children":[],"title":"外交部驻澳门特别行政区特派员公署副特派员","value":"T84B","key":"T84B"}],"title":"外交部驻澳门特别行政区特派员公署特派员","value":"T84","key":"T84"},{"children":[{"children":[],"title":"办公室主任","value":"T39A","key":"T39A"},{"children":[],"title":"办公室副主任","value":"T39B","key":"T39B"}],"title":"办公室主任","value":"T39","key":"T39"},{"children":[{"children":[],"title":"办事员","value":"224A","key":"224A"}],"title":"办事员","value":"224","key":"224"},{"children":[{"children":[],"title":"驻秘鲁特命全权大使","value":"D440","key":"D440"}],"title":"驻秘鲁特命全权大使","value":"D44","key":"D44"},{"children":[{"children":[],"title":"总理","value":"205A","key":"205A"},{"children":[],"title":"代理总理","value":"205G","key":"205G"},{"children":[],"title":"副总理","value":"205B","key":"205B"}],"title":"总理","value":"205","key":"205"},{"children":[{"children":[],"title":"调度","value":"453A","key":"453A"}],"title":"调度...","value":"453","key":"453"},{"children":[{"children":[],"title":"驻利比亚特命全权大使","value":"B140","key":"B140"}],"title":"驻利比亚特命全权大使","value":"B14","key":"B14"},{"children":[{"children":[],"title":"副乡长","value":"261B","key":"261B"},{"children":[],"title":"代理乡长","value":"261G","key":"261G"},{"children":[],"title":"乡长","value":"261A","key":"261A"}],"title":"乡长","value":"261","key":"261"},{"children":[{"children":[],"title":"驻蒙古特命全权大使","value":"A170","key":"A170"}],"title":"驻蒙古特命全权大使","value":"A17","key":"A17"},{"children":[{"children":[],"title":"驻肯尼亚特命全权大使","value":"B340","key":"B340"}],"title":"驻肯尼亚特命全权大使","value":"B34","key":"B34"},{"children":[{"children":[],"title":"厂长","value":"439A","key":"439A"},{"children":[],"title":"代理厂长","value":"439G","key":"439G"},{"children":[],"title":"副厂长","value":"439B","key":"439B"},{"children":[],"title":"厂长助理","value":"439J","key":"439J"}],"title":"厂长...","value":"439","key":"439"},{"children":[{"children":[],"title":"监狱长助理","value":"111J","key":"111J"},{"children":[],"title":"副监狱长","value":"111B","key":"111B"},{"children":[],"title":"监狱长","value":"111A","key":"111A"}],"title":"监狱长","value":"111","key":"111"},{"children":[{"children":[],"title":"检察委员会委员","value":"T43U","key":"T43U"}],"title":"检察委员会委员","value":"T43","key":"T43"},{"children":[{"children":[],"title":"驻哈巴罗夫斯克总领事","value":"C115","key":"C115"},{"children":[],"title":"驻叶卡捷林堡总领事","value":"C11A","key":"C11A"},{"children":[],"title":"驻俄罗斯特命全权大使","value":"C110","key":"C110"},{"children":[],"title":"驻圣彼得堡总领事","value":"C113","key":"C113"},{"children":[],"title":"驻伊尔库兹克总领事","value":"C11C","key":"C11C"}],"title":"驻俄罗斯特命全权大使","value":"C11","key":"C11"},{"children":[{"children":[],"title":"副艇长","value":"835B","key":"835B"},{"children":[],"title":"艇长","value":"835A","key":"835A"}],"title":"艇长...","value":"835","key":"835"},{"children":[{"children":[],"title":"驻立陶宛特命全权大使","value":"C1G0","key":"C1G0"}],"title":"驻立陶宛特命全权大使","value":"C1G","key":"C1G"},{"children":[{"children":[],"title":"驻约翰内斯堡总领事","value":"B9K3","key":"B9K3"},{"children":[],"title":"驻开普敦总领事","value":"B9K5","key":"B9K5"},{"children":[],"title":"驻南非特命全权大使","value":"B9K0","key":"B9K0"},{"children":[],"title":"驻德班总领事","value":"B9K7","key":"B9K7"}],"title":"驻南非特命全权大使","value":"B9K","key":"B9K"},{"children":[{"children":[],"title":"副区队长","value":"847B","key":"847B"},{"children":[],"title":"区队长","value":"847A","key":"847A"}],"title":"区队长...","value":"847","key":"847"},{"children":[{"children":[],"title":"驻安哥拉特命全权大使","value":"B970","key":"B970"}],"title":"驻安哥拉特命全权大使","value":"B97","key":"B97"},{"children":[{"children":[],"title":"副武官","value":"335B","key":"335B"},{"children":[],"title":"武官助理","value":"335J","key":"335J"},{"children":[],"title":"武官","value":"335A","key":"335A"}],"title":"武官","value":"335","key":"335"},{"children":[{"children":[],"title":"驻卡塔尔特命全权大使","value":"A7D0","key":"A7D0"}],"title":"驻卡塔尔特命全权大使","value":"A7D","key":"A7D"},{"children":[{"children":[],"title":"国家标准化管理委员会主任","value":"T95A","key":"T95A"}],"title":"国家标准化管理委员会主任","value":"T95","key":"T95"},{"children":[{"children":[],"title":"机关党组成员","value":"T17U","key":"T17U"},{"children":[],"title":"机关党组副书记","value":"T17B","key":"T17B"},{"children":[],"title":"机关党组书记","value":"T17A","key":"T17A"}],"title":"机关党组书记","value":"T17","key":"T17"},{"children":[{"children":[],"title":"稽核员","value":"022A","key":"022A"}],"title":"稽核员","value":"022","key":"022"},{"children":[{"children":[],"title":"驻米兰总领事","value":"C7D3","key":"C7D3"},{"children":[],"title":"驻意大利特命全权大使","value":"C7D0","key":"C7D0"},{"children":[],"title":"驻佛罗伦萨总领事","value":"C7D5","key":"C7D5"}],"title":"驻意大利特命全权大使","value":"C7D","key":"C7D"},{"children":[{"children":[],"title":"副总审计师","value":"081R","key":"081R"},{"children":[],"title":"总审计师","value":"081Q","key":"081Q"}],"title":"审计师","value":"081","key":"081"},{"children":[{"children":[],"title":"党委常委","value":"T13K","key":"T13K"},{"children":[],"title":"党委书记","value":"T13A","key":"T13A"},{"children":[],"title":"党委副书记","value":"T13B","key":"T13B"},{"children":[],"title":"党委委员","value":"T13U","key":"T13U"}],"title":"党委书记","value":"T13","key":"T13"},{"children":[{"children":[],"title":"大副","value":"454C","key":"454C"},{"children":[],"title":"三副","value":"454E","key":"454E"},{"children":[],"title":"二副","value":"454D","key":"454D"}],"title":"船舶技术人员...","value":"454","key":"454"},{"children":[{"children":[],"title":"后勤部部长","value":"T61A","key":"T61A"}],"title":"后勤部部长","value":"T61","key":"T61"},{"children":[{"children":[],"title":"县长助理","value":"258J","key":"258J"},{"children":[],"title":"代理县长","value":"258G","key":"258G"},{"children":[],"title":"副县长","value":"258B","key":"258B"},{"children":[],"title":"县长","value":"258A","key":"258A"}],"title":"县长","value":"258","key":"258"},{"children":[{"children":[],"title":"馆长领事","value":"332A","key":"332A"}],"title":"馆长领事","value":"332","key":"332"},{"children":[{"children":[],"title":"科技参赞","value":"315A","key":"315A"}],"title":"科技参赞","value":"315","key":"315"},{"children":[{"children":[],"title":"国家认证认可监督管理委员会主任","value":"T93A","key":"T93A"}],"title":"国家认证认可监督管理委员会主任","value":"T93","key":"T93"},{"children":[{"children":[],"title":"大使衔代表","value":"336A","key":"336A"},{"children":[],"title":"大使衔副代表","value":"336B","key":"336B"}],"title":"大使衔代表","value":"336","key":"336"},{"children":[{"children":[],"title":"驻几内亚特命全权大使","value":"B7A0","key":"B7A0"}],"title":"驻几内亚特命全权大使","value":"B7A","key":"B7A"},{"children":[{"children":[],"title":"国家版权局副局长","value":"T81B","key":"T81B"},{"children":[],"title":"国家版权局局长","value":"T81A","key":"T81A"}],"title":"国家版权局局长","value":"T81","key":"T81"},{"children":[{"children":[],"title":"驻委内瑞拉特命全权大使","value":"D2D0","key":"D2D0"}],"title":"驻委内瑞拉特命全权大使","value":"D2D","key":"D2D"},{"children":[{"children":[],"title":"驻泗水总领事","value":"A2D3","key":"A2D3"},{"children":[],"title":"驻印度尼西亚特命全权大使","value":"A2D0","key":"A2D0"}],"title":"驻印度尼西亚特命全权大使","value":"A2D","key":"A2D"},{"children":[{"children":[],"title":"副总医药师","value":"244R","key":"244R"},{"children":[],"title":"总医药师","value":"244Q","key":"244Q"}],"title":"医药师","value":"244","key":"244"},{"children":[{"children":[],"title":"纪委副书记","value":"T71B","key":"T71B"},{"children":[],"title":"纪委书记","value":"T71A","key":"T71A"}],"title":"纪委书记","value":"T71","key":"T71"},{"children":[{"children":[],"title":"副总规划师","value":"500R","key":"500R"},{"children":[],"title":"总规化师","value":"500Q","key":"500Q"}],"title":"规化师","value":"500","key":"500"},{"children":[{"children":[],"title":"联合国副秘书长","value":"G11B","key":"G11B"}],"title":"联合国副秘书长","value":"G11","key":"G11"},{"children":[{"children":[],"title":"参谋","value":"803A","key":"803A"}],"title":"参谋","value":"803","key":"803"},{"children":[{"children":[],"title":"驻密克罗尼亚特命全权大使","value":"E210","key":"E210"}],"title":"驻密克罗尼亚特命全权大使","value":"E21","key":"E21"},{"children":[{"children":[],"title":"副馆长","value":"415B","key":"415B"},{"children":[],"title":"馆长","value":"415A","key":"415A"},{"children":[],"title":"馆长助理","value":"415J","key":"415J"},{"children":[],"title":"名誉馆长","value":"415M","key":"415M"}],"title":"馆长...","value":"415","key":"415"},{"children":[{"children":[],"title":"总统计师","value":"143Q","key":"143Q"},{"children":[],"title":"副总统计师","value":"143R","key":"143R"}],"title":"统计师","value":"143","key":"143"},{"children":[{"children":[],"title":"驻比利时特命全权大使","value":"C6A0","key":"C6A0"}],"title":"驻比利时特命全权大使","value":"C6A","key":"C6A"},{"children":[{"children":[],"title":"总地质师","value":"503Q","key":"503Q"},{"children":[],"title":"副总地质师","value":"503R","key":"503R"}],"title":"地质师...","value":"503","key":"503"},{"children":[{"children":[],"title":"驻圣马力诺特命全权大使","value":"C7G0","key":"C7G0"}],"title":"驻圣马力诺特命全权大使","value":"C7G","key":"C7G"},{"children":[{"children":[],"title":"总畜牧师","value":"113Q","key":"113Q"},{"children":[],"title":"副总畜牧师","value":"113R","key":"113R"}],"title":"畜牧师","value":"113","key":"113"},{"children":[{"children":[],"title":"监事会主任","value":"T32A","key":"T32A"},{"children":[],"title":"监事会副主任","value":"T32B","key":"T32B"}],"title":"监事会主任","value":"T32","key":"T32"},{"children":[{"children":[],"title":"驻拉脱维亚特命全权大使","value":"C1D0","key":"C1D0"}],"title":"驻拉脱维亚特命全权大使","value":"C1D","key":"C1D"},{"children":[{"children":[],"title":"驻萨摩亚特命全权大使","value":"E370","key":"E370"}],"title":"驻萨摩亚特命全权大使","value":"E37","key":"E37"},{"children":[{"children":[],"title":"驻英国特命全权大使","value":"C640","key":"C640"},{"children":[],"title":"驻爱丁堡总领事","value":"C645","key":"C645"},{"children":[],"title":"驻曼彻斯特总领事","value":"C643","key":"C643"}],"title":"驻英国特命全权大使","value":"C64","key":"C64"},{"children":[{"children":[],"title":"政协主席","value":"T77A","key":"T77A"}],"title":"政协主席","value":"T77","key":"T77"},{"children":[{"children":[],"title":"驻波斯尼亚和黑塞哥维那特命全权大使","value":"C3C0","key":"C3C0"}],"title":"驻波斯尼亚和黑塞哥维那特命全权大使","value":"C3C","key":"C3C"},{"children":[{"children":[],"title":"参事","value":"410A","key":"410A"}],"title":"参事...","value":"410","key":"410"},{"children":[{"children":[],"title":"教官","value":"858A","key":"858A"}],"title":"教官","value":"858","key":"858"},{"children":[{"children":[],"title":"专职监事","value":"409A","key":"409A"}],"title":"专职监事...","value":"409","key":"409"},{"children":[{"children":[],"title":"总经理","value":"434Q","key":"434Q"},{"children":[],"title":"副总经理","value":"434R","key":"434R"}],"title":"总经理...","value":"434","key":"434"},{"children":[{"children":[],"title":"驻吉达总领事","value":"A773","key":"A773"},{"children":[],"title":"驻沙特阿拉伯王国特命全权大使","value":"A770","key":"A770"}],"title":"驻沙特阿拉伯王国特命全权大使","value":"A77","key":"A77"},{"children":[{"children":[],"title":"驻蒂华纳总领事","value":"D173","key":"D173"},{"children":[],"title":"驻墨西哥特命全权大使","value":"D170","key":"D170"}],"title":"驻墨西哥特命全权大使","value":"D17","key":"D17"},{"children":[{"children":[],"title":"驻牙买加特命全权大使","value":"D210","key":"D210"}],"title":"驻牙买加特命全权大使","value":"D21","key":"D21"},{"children":[{"children":[],"title":"驻博茨瓦纳特命全权大使","value":"B8K0","key":"B8K0"}],"title":"驻博茨瓦纳特命全权大使","value":"B8K","key":"B8K"},{"children":[{"children":[],"title":"支队长","value":"845A","key":"845A"},{"children":[],"title":"副支队长","value":"845B","key":"845B"}],"title":"支队长...","value":"845","key":"845"},{"children":[{"children":[],"title":"驻亚美尼亚特命全权大使","value":"C370","key":"C370"}],"title":"驻亚美尼亚特命全权大使","value":"C37","key":"C37"},{"children":[{"children":[],"title":"驻智利特命全权大使","value":"D470","key":"D470"}],"title":"驻智利特命全权大使","value":"D47","key":"D47"},{"children":[{"children":[],"title":"干事","value":"412A","key":"412A"},{"children":[],"title":"副总干事","value":"412R","key":"412R"},{"children":[],"title":"总干事","value":"412Q","key":"412Q"}],"title":"干事...","value":"412","key":"412"},{"children":[{"children":[],"title":"副特派员","value":"019B","key":"019B"},{"children":[],"title":"特派员","value":"019A","key":"019A"}],"title":"特派员","value":"019","key":"019"},{"children":[{"children":[],"title":"驻布隆迪特命全权大使","value":"B5D0","key":"B5D0"}],"title":"驻布隆迪特命全权大使","value":"B5D","key":"B5D"},{"children":[{"children":[],"title":"驻阿尔巴尼亚特命全权大使","value":"C540","key":"C540"}],"title":"驻阿尔巴尼亚特命全权大使","value":"C54","key":"C54"},{"children":[{"children":[],"title":"驻多米尼克特命全权大使","value":"D570","key":"D570"}],"title":"驻多米尼克特命全权大使","value":"D57","key":"D57"},{"children":[{"children":[],"title":"审判委员会委员","value":"T41U","key":"T41U"}],"title":"审判委员会委员","value":"T41","key":"T41"},{"children":[{"children":[],"title":"驻乌兹别克斯坦特命全权大使","value":"C2A0","key":"C2A0"}],"title":"驻乌兹别克斯坦特命全权大使","value":"C2A","key":"C2A"},{"children":[{"children":[],"title":"专员助理","value":"T79J","key":"T79J"},{"children":[],"title":"监察专员","value":"T79A","key":"T79A"},{"children":[],"title":"副监察专员","value":"T79B","key":"T79B"}],"title":"监察专员","value":"T79","key":"T79"},{"children":[{"children":[],"title":"司务长","value":"859A","key":"859A"}],"title":"司务长","value":"859","key":"859"},{"children":[{"children":[],"title":"驻斯洛文尼亚特命全权大使","value":"C3D0","key":"C3D0"}],"title":"驻斯洛文尼亚特命全权大使","value":"C3D","key":"C3D"},{"children":[{"children":[],"title":"执行董事","value":"429A","key":"429A"}],"title":"执行董事","value":"429","key":"429"},{"children":[{"children":[],"title":"副总农艺师","value":"093R","key":"093R"},{"children":[],"title":"总农艺师","value":"093Q","key":"093Q"}],"title":"农艺师","value":"093","key":"093"},{"children":[{"children":[],"title":"驻马其顿特命全权大使","value":"C3E0","key":"C3E0"}],"title":"驻马其顿特命全权大使","value":"C3E","key":"C3E"},{"children":[{"children":[],"title":"所长助理","value":"416J","key":"416J"},{"children":[],"title":"所长","value":"416A","key":"416A"},{"children":[],"title":"名誉所长","value":"416M","key":"416M"},{"children":[],"title":"副所长","value":"416B","key":"416B"}],"title":"所长...","value":"416","key":"416"},{"children":[{"children":[],"title":"国家航天局局长","value":"T87A","key":"T87A"}],"title":"国家航天局局长","value":"T87","key":"T87"},{"children":[{"children":[],"title":"船长","value":"423A","key":"423A"},{"children":[],"title":"总船长","value":"423Q","key":"423Q"},{"children":[],"title":"副船长","value":"423B","key":"423B"},{"children":[],"title":"副总船长","value":"423R","key":"423R"}],"title":"船长...","value":"423","key":"423"},{"children":[{"children":[],"title":"驻文莱特命全权大使","value":"A310","key":"A310"}],"title":"驻文莱特命全权大使","value":"A31","key":"A31"},{"children":[{"children":[],"title":"驻康斯坦察总领事","value":"C4A3","key":"C4A3"},{"children":[],"title":"驻罗马尼亚特命全权大使","value":"C4A0","key":"C4A0"}],"title":"驻罗马尼亚特命全权大使","value":"C4A","key":"C4A"},{"children":[{"children":[],"title":"驻汤加特命全权大使","value":"E410","key":"E410"}],"title":"驻汤加特命全权大使","value":"E41","key":"E41"},{"children":[{"children":[],"title":"文化参赞","value":"317A","key":"317A"}],"title":"文化参赞","value":"317","key":"317"},{"children":[{"children":[],"title":"驻赤道几内亚特命全权大使","value":"B440","key":"B440"}],"title":"驻赤道几内亚特命全权大使","value":"B44","key":"B44"},{"children":[{"children":[],"title":"巡视员","value":"010A","key":"010A"},{"children":[],"title":"副巡视员","value":"010B","key":"010B"}],"title":"巡视员","value":"010","key":"010"},{"children":[{"children":[],"title":"检察员","value":"106A","key":"106A"},{"children":[],"title":"助理检察员","value":"106J","key":"106J"}],"title":"检察员","value":"106","key":"106"},{"children":[{"children":[],"title":"督导员","value":"012A","key":"012A"}],"title":"督导员","value":"012","key":"012"},{"children":[{"children":[],"title":"驻纳米比亚特命全权大使","value":"B9G0","key":"B9G0"}],"title":"驻纳米比亚特命全权大使","value":"B9G","key":"B9G"},{"children":[{"children":[],"title":"驻芝加哥总领事","value":"D119","key":"D119"},{"children":[],"title":"驻美国特命全权大使","value":"D110","key":"D110"},{"children":[],"title":"驻纽约总领事","value":"D113","key":"D113"},{"children":[],"title":"驻旧金山总领事","value":"D115","key":"D115"},{"children":[],"title":"驻洛杉矶总领事","value":"D11A","key":"D11A"},{"children":[],"title":"驻休斯敦总领事","value":"D117","key":"D117"}],"title":"驻美国特命全权大使","value":"D11","key":"D11"},{"children":[{"children":[],"title":"副关长","value":"215B","key":"215B"},{"children":[],"title":"关长","value":"215A","key":"215A"}],"title":"关长","value":"215","key":"215"},{"children":[{"children":[],"title":"总编辑助理","value":"153J","key":"153J"},{"children":[],"title":"副总编辑","value":"153R","key":"153R"},{"children":[],"title":"总编辑","value":"153Q","key":"153Q"}],"title":"编辑","value":"153","key":"153"},{"children":[{"children":[],"title":"驻阿塞拜疆特命全权大使","value":"C140","key":"C140"}],"title":"驻阿塞拜疆特命全权大使","value":"C14","key":"C14"},{"children":[{"children":[],"title":"政治教导员","value":"852A","key":"852A"},{"children":[],"title":"副政治教导员","value":"852B","key":"852B"}],"title":"教导员...","value":"852","key":"852"},{"children":[{"children":[],"title":"首席律师","value":"701A","key":"701A"}],"title":"律师","value":"701","key":"701"},{"children":[{"children":[],"title":"总教练","value":"509Q","key":"509Q"},{"children":[],"title":"副总教练","value":"509R","key":"509R"}],"title":"总教练","value":"509","key":"509"},{"children":[{"children":[],"title":"检察长","value":"105A","key":"105A"},{"children":[],"title":"检察长助理","value":"105J","key":"105J"},{"children":[],"title":"副检察长","value":"105B","key":"105B"},{"children":[],"title":"代理检察长","value":"105G","key":"105G"}],"title":"检察长","value":"105","key":"105"},{"children":[{"children":[],"title":"审判员","value":"108A","key":"108A"},{"children":[],"title":"助理审判员","value":"108J","key":"108J"}],"title":"审判员","value":"108","key":"108"},{"children":[{"children":[],"title":"处长","value":"219A","key":"219A"},{"children":[],"title":"副处长","value":"219B","key":"219B"}],"title":"处长","value":"219","key":"219"},{"children":[{"children":[],"title":"军长","value":"811A","key":"811A"},{"children":[],"title":"副军长","value":"811B","key":"811B"}],"title":"军长...","value":"811","key":"811"},{"children":[{"children":[],"title":"执行委员","value":"006A","key":"006A"}],"title":"执行委员","value":"006","key":"006"},{"children":[{"children":[],"title":"驻卢旺达特命全权大使","value":"B5A0","key":"B5A0"}],"title":"驻卢旺达特命全权大使","value":"B5A","key":"B5A"},{"children":[{"children":[],"title":"驻土库曼斯坦特命全权大使","value":"C2G0","key":"C2G0"}],"title":"驻土库曼斯坦特命全权大使","value":"C2G","key":"C2G"},{"children":[{"children":[],"title":"常驻国际农业发展基金会代表","value":"G34A","key":"G34A"}],"title":"常驻国际农业发展基金会代表","value":"G34","key":"G34"},{"children":[{"children":[],"title":"驻捷克特命全权大使","value":"C410","key":"C410"}],"title":"驻捷克特命全权大使","value":"C41","key":"C41"},{"children":[{"children":[],"title":"驻古巴特命全权大使","value":"D1D0","key":"D1D0"}],"title":"驻古巴特命全权大使","value":"D1D","key":"D1D"},{"children":[{"children":[],"title":"旗长助理","value":"259J","key":"259J"},{"children":[],"title":"副旗长","value":"259B","key":"259B"},{"children":[],"title":"旗长","value":"259A","key":"259A"},{"children":[],"title":"代理旗长","value":"259G","key":"259G"}],"title":"旗长","value":"259","key":"259"},{"children":[{"children":[],"title":"副总站长","value":"443B","key":"443B"},{"children":[],"title":"总站长","value":"443A","key":"443A"}],"title":"站长","value":"443","key":"443"},{"children":[{"children":[],"title":"驻圭亚那特命全权大使","value":"D310","key":"D310"}],"title":"驻圭亚那特命全权大使","value":"D31","key":"D31"},{"children":[{"children":[],"title":"审判长","value":"107A","key":"107A"},{"children":[],"title":"副审判长","value":"107B","key":"107B"}],"title":"审判长","value":"107","key":"107"},{"children":[{"children":[],"title":"省长","value":"251A","key":"251A"},{"children":[],"title":"代理省长","value":"251G","key":"251G"},{"children":[],"title":"省长助理","value":"251J","key":"251J"},{"children":[],"title":"副省长","value":"251B","key":"251B"}],"title":"省长","value":"251","key":"251"},{"children":[{"children":[],"title":"政治部主任","value":"T65A","key":"T65A"},{"children":[],"title":"政治部副主任","value":"T65B","key":"T65B"}],"title":"政治部主任","value":"T65","key":"T65"},{"children":[{"children":[],"title":"驻几内亚比绍特命全权大使","value":"B7D0","key":"B7D0"}],"title":"驻几内亚比绍特命全权大使","value":"B7D","key":"B7D"},{"children":[{"children":[],"title":"外交部驻香港特别行政区特派员公署副特派员","value":"T83B","key":"T83B"},{"children":[],"title":"外交部驻香港特别行政区特派员公署特派员","value":"T83A","key":"T83A"}],"title":"外交部驻香港特别行政区特派员公署特派员","value":"T83","key":"T83"},{"children":[{"children":[],"title":"驻特立尼达和多巴哥特命全权大使","value":"D340","key":"D340"}],"title":"驻特立尼达和多巴哥特命全权大使","value":"D34","key":"D34"},{"children":[{"children":[],"title":"矿长","value":"441A","key":"441A"},{"children":[],"title":"副矿长","value":"441B","key":"441B"}],"title":"矿长...","value":"441","key":"441"},{"children":[{"children":[],"title":"驻加纳特命全权大使","value":"B710","key":"B710"}],"title":"驻加纳特命全权大使","value":"B71","key":"B71"},{"children":[{"children":[],"title":"驻格鲁吉亚特命全权大使","value":"C170","key":"C170"}],"title":"驻格鲁吉亚特命全权大使","value":"C17","key":"C17"},{"children":[{"children":[],"title":"常驻联合国环境规划署代表","value":"G44A","key":"G44A"}],"title":"常驻联合国环境规划署代表","value":"G44","key":"G44"},{"children":[{"children":[],"title":"驻敖德萨总领事","value":"C243","key":"C243"},{"children":[],"title":"驻乌克兰特命全权大使","value":"C240","key":"C240"}],"title":"驻乌克兰特命全权大使","value":"C24","key":"C24"},{"children":[{"children":[],"title":"调研员","value":"011A","key":"011A"},{"children":[],"title":"副调研员","value":"011B","key":"011B"}],"title":"调研员","value":"011","key":"011"},{"children":[{"children":[],"title":"副站长","value":"438B","key":"438B"},{"children":[],"title":"站长","value":"438A","key":"438A"}],"title":"站长...","value":"438","key":"438"},{"children":[{"children":[],"title":"留守组员","value":"352B","key":"352B"}],"title":"留守组员","value":"352","key":"352"},{"children":[{"children":[],"title":"驻苏里南特命全权大使","value":"D370","key":"D370"}],"title":"驻苏里南特命全权大使","value":"D37","key":"D37"},{"children":[{"children":[],"title":"总农经师","value":"504Q","key":"504Q"},{"children":[],"title":"副总农经师","value":"504R","key":"504R"}],"title":"农经师...","value":"504","key":"504"},{"children":[{"children":[],"title":"领航长","value":"837A","key":"837A"},{"children":[],"title":"副领航长","value":"837B","key":"837B"}],"title":"领航长...","value":"837","key":"837"},{"children":[{"children":[],"title":"总设计师","value":"501Q","key":"501Q"},{"children":[],"title":"副总设计师","value":"501R","key":"501R"}],"title":"设计师...","value":"501","key":"501"},{"children":[{"children":[],"title":"驻瑞典特命全权大使","value":"C5A0","key":"C5A0"},{"children":[],"title":"驻哥德堡总领事","value":"C5A3","key":"C5A3"}],"title":"驻瑞典特命全权大使","value":"C5A","key":"C5A"},{"children":[{"children":[],"title":"副司令员","value":"810B","key":"810B"},{"children":[],"title":"司令员","value":"810A","key":"810A"}],"title":"司令员...","value":"810","key":"810"},{"children":[{"children":[],"title":"驻古晋总领事","value":"A2A3","key":"A2A3"},{"children":[],"title":"驻马来西亚特命全权大使","value":"A2A0","key":"A2A0"}],"title":"驻马来西亚特命全权大使","value":"A2A","key":"A2A"},{"children":[{"children":[],"title":"中央纪委驻XXX纪检组组长","value":"T27A","key":"T27A"},{"children":[],"title":"中央纪委驻XXX纪检组副组长","value":"T27B","key":"T27B"}],"title":"中央纪委驻XXX纪检组组长","value":"T27","key":"T27"},{"children":[{"children":[],"title":"参赞","value":"320A","key":"320A"}],"title":"参赞","value":"320","key":"320"},{"children":[{"children":[],"title":"驻福冈总领事","value":"A279","key":"A279"},{"children":[],"title":"驻日本特命全权大使","value":"A270","key":"A270"},{"children":[],"title":"驻札幌总领事","value":"A275","key":"A275"},{"children":[],"title":"驻大阪总领事","value":"A273","key":"A273"},{"children":[],"title":"驻长崎总领事","value":"A277","key":"A277"},{"children":[],"title":"驻名古屋馆长领事","value":"A27A","key":"A27A"}],"title":"驻日本特命全权大使","value":"A27","key":"A27"},{"children":[{"children":[],"title":"副会长","value":"411B","key":"411B"},{"children":[],"title":"会长","value":"411A","key":"411A"}],"title":"会长","value":"411","key":"411"},{"children":[{"children":[],"title":"驻瓜亚基尔总领事","value":"D3G0","key":"D3G0"}],"title":"驻瓜亚基尔总领事","value":"D3G","key":"D3G"},{"children":[{"children":[],"title":"署长","value":"214A","key":"214A"},{"children":[],"title":"副署长","value":"214B","key":"214B"}],"title":"署长","value":"214","key":"214"},{"children":[{"children":[],"title":"驻克罗地亚特命全权大使","value":"C3A0","key":"C3A0"}],"title":"驻克罗地亚特命全权大使","value":"C3A","key":"C3A"},{"children":[{"children":[],"title":"驻乌干达特命全权大使","value":"B370","key":"B370"}],"title":"驻乌干达特命全权大使","value":"B37","key":"B37"},{"children":[{"children":[],"title":"驻多哥特命全权大使","value":"B6D0","key":"B6D0"}],"title":"驻多哥特命全权大使","value":"B6D","key":"B6D"},{"children":[{"children":[],"title":"副班长","value":"819B","key":"819B"},{"children":[],"title":"班长","value":"819A","key":"819A"}],"title":"班长...","value":"819","key":"819"},{"children":[{"children":[],"title":"机长","value":"836A","key":"836A"},{"children":[],"title":"副机长","value":"836B","key":"836B"}],"title":"机长...","value":"836","key":"836"},{"children":[{"children":[],"title":"驻斐济特命全权大使","value":"E270","key":"E270"}],"title":"驻斐济特命全权大使","value":"E27","key":"E27"},{"children":[{"children":[],"title":"理事会副理事长","value":"T33B","key":"T33B"},{"children":[],"title":"理事会理事长","value":"T33A","key":"T33A"}],"title":"理事会理事长","value":"T33","key":"T33"},{"children":[{"children":[],"title":"驻哈萨克斯坦特命全权大使","value":"C270","key":"C270"}],"title":"驻哈萨克斯坦特命全权大使","value":"C27","key":"C27"},{"children":[{"children":[],"title":"副中队长","value":"844B","key":"844B"},{"children":[],"title":"中队长","value":"844A","key":"844A"}],"title":"中队长...","value":"844","key":"844"},{"children":[{"children":[],"title":"纪检组副组长","value":"T23B","key":"T23B"},{"children":[],"title":"纪检组组长","value":"T23A","key":"T23A"}],"title":"纪检组组长","value":"T23","key":"T23"},{"children":[{"children":[],"title":"驻中非特命全权大使","value":"B610","key":"B610"}],"title":"驻中非特命全权大使","value":"B61","key":"B61"},{"children":[{"children":[],"title":"村长","value":"262A","key":"262A"},{"children":[],"title":"副村长","value":"262B","key":"262B"}],"title":"村长","value":"262","key":"262"},{"children":[{"children":[],"title":"驻阿曼特命全权大使","value":"A6D0","key":"A6D0"}],"title":"驻阿曼特命全权大使","value":"A6D","key":"A6D"},{"children":[{"children":[],"title":"台长助理","value":"404J","key":"404J"},{"children":[],"title":"副台长","value":"404B","key":"404B"},{"children":[],"title":"台长","value":"404A","key":"404A"}],"title":"台长...","value":"404","key":"404"},{"children":[{"children":[],"title":"驻贝宁特命全权大使","value":"B6A0","key":"B6A0"}],"title":"驻贝宁特命全权大使","value":"B6A","key":"B6A"},{"children":[{"children":[],"title":"驻柬埔寨特命全权大使","value":"A210","key":"A210"}],"title":"驻柬埔寨特命全权大使","value":"A21","key":"A21"},{"children":[{"children":[],"title":"驻苏黎世总领事","value":"C773","key":"C773"},{"children":[],"title":"驻瑞士特命全权大使","value":"C770","key":"C770"}],"title":"驻瑞士特命全权大使","value":"C77","key":"C77"},{"children":[{"children":[],"title":"副教务长","value":"419B","key":"419B"},{"children":[],"title":"教务长","value":"419A","key":"419A"}],"title":"教务长...","value":"419","key":"419"},{"children":[{"children":[],"title":"室务委员会委员","value":"T47U","key":"T47U"}],"title":"室务委员会委员","value":"T47","key":"T47"},{"children":[{"children":[],"title":"秘书长","value":"102A","key":"102A"},{"children":[],"title":"副秘书长","value":"102B","key":"102B"},{"children":[],"title":"秘书长助理","value":"102J","key":"102J"}],"title":"秘书长","value":"102","key":"102"},{"children":[{"children":[],"title":"驻津巴布韦特命全权大使","value":"B940","key":"B940"}],"title":"驻津巴布韦特命全权大使","value":"B94","key":"B94"},{"children":[{"children":[],"title":"驻尼日尔特命全权大使","value":"B640","key":"B640"}],"title":"驻尼日尔特命全权大使","value":"B64","key":"B64"},{"children":[{"children":[],"title":"驻塞内加尔特命全权大使","value":"B870","key":"B870"}],"title":"驻塞内加尔特命全权大使","value":"B87","key":"B87"},{"children":[{"children":[],"title":"副司长","value":"218B","key":"218B"},{"children":[],"title":"司长","value":"218A","key":"218A"}],"title":"司长","value":"218","key":"218"},{"children":[{"children":[],"title":"档案秘书","value":"345A","key":"345A"}],"title":"档案秘书","value":"345","key":"345"},{"children":[{"children":[],"title":"驻赞比亚特命全权大使","value":"B8G0","key":"B8G0"}],"title":"驻赞比亚特命全权大使","value":"B8G","key":"B8G"},{"children":[{"children":[],"title":"驻欧盟使团特命全权大使","value":"C6D0","key":"C6D0"}],"title":"驻欧盟使团特命全权大使","value":"C6D","key":"C6D"},{"children":[{"children":[],"title":"驻安道尔特命全权大使","value":"C8D0","key":"C8D0"}],"title":"驻安道尔特命全权大使","value":"C8D","key":"C8D"},{"children":[{"children":[],"title":"督学","value":"506A","key":"506A"},{"children":[],"title":"副督学","value":"506B","key":"506B"}],"title":"督学","value":"506","key":"506"},{"children":[{"children":[],"title":"驻莫桑比克特命全权大使","value":"B8P0","key":"B8P0"}],"title":"驻莫桑比克特命全权大使","value":"B8P","key":"B8P"},{"children":[{"children":[],"title":"驻挪威特命全权大使","value":"C610","key":"C610"}],"title":"驻挪威特命全权大使","value":"C61","key":"C61"},{"children":[{"children":[],"title":"检查员","value":"013A","key":"013A"}],"title":"检查员","value":"013","key":"013"},{"children":[{"children":[],"title":"中央人民广播电台台长","value":"T53A","key":"T53A"}],"title":"中央人民广播电台台长","value":"T53","key":"T53"},{"children":[{"children":[],"title":"总参谋长助理","value":"802J","key":"802J"},{"children":[],"title":"总参谋长","value":"802Q","key":"802Q"},{"children":[],"title":"副总参谋长","value":"802R","key":"802R"}],"title":"总参谋长...","value":"802","key":"802"},{"children":[{"children":[],"title":"副参谋长","value":"801B","key":"801B"},{"children":[],"title":"参谋长","value":"801A","key":"801A"},{"children":[],"title":"参谋长助理","value":"801J","key":"801J"}],"title":"参谋长...","value":"801","key":"801"},{"children":[{"children":[],"title":"副总队长","value":"841R","key":"841R"},{"children":[],"title":"队长","value":"841A","key":"841A"},{"children":[],"title":"总队长","value":"841Q","key":"841Q"},{"children":[],"title":"副队长","value":"841B","key":"841B"}],"title":"队长...","value":"841","key":"841"},{"children":[{"children":[],"title":"总指挥","value":"451Q","key":"451Q"},{"children":[],"title":"副指挥","value":"451B","key":"451B"},{"children":[],"title":"指挥","value":"451A","key":"451A"},{"children":[],"title":"副总指挥","value":"451R","key":"451R"},{"children":[],"title":"指挥助理","value":"451J","key":"451J"}],"title":"指挥...","value":"451","key":"451"},{"children":[{"children":[],"title":"法治员","value":"112A","key":"112A"}],"title":"法治员","value":"112","key":"112"},{"children":[{"children":[],"title":"常驻国际民用航空组织理事会代表处代表","value":"G57A","key":"G57A"},{"children":[],"title":"常驻国际民用航空组织理事会代表处副代表","value":"G57B","key":"G57B"}],"title":"常驻国际民用航空组织理事会代表处代表","value":"G57","key":"G57"},{"children":[{"children":[],"title":"驻白俄罗斯特命全权大使","value":"C210","key":"C210"}],"title":"驻白俄罗斯特命全权大使","value":"C21","key":"C21"},{"children":[{"children":[],"title":"首席馆员","value":"339A","key":"339A"}],"title":"首席馆员","value":"339","key":"339"},{"children":[{"children":[],"title":"驻乌拉圭东岸特命全权大使","value":"D4D0","key":"D4D0"}],"title":"驻乌拉圭东岸特命全权大使","value":"D4D","key":"D4D"},{"children":[{"children":[],"title":"常驻联合国维也纳办事处和其他国际组织代表","value":"G21A","key":"G21A"}],"title":"常驻联合国维也纳办事处和其他国际组织代表","value":"G21","key":"G21"},{"children":[{"children":[],"title":"驻塞舌尔特命全权大使","value":"B410","key":"B410"}],"title":"驻塞舌尔特命全权大使","value":"B41","key":"B41"},{"children":[{"children":[],"title":"审纪员","value":"016A","key":"016A"}],"title":"审纪员","value":"016","key":"016"},{"children":[{"children":[],"title":"副轮机长","value":"433B","key":"433B"},{"children":[],"title":"轮机长","value":"433A","key":"433A"},{"children":[],"title":"总轮机长","value":"433Q","key":"433Q"},{"children":[],"title":"副总轮机长","value":"433R","key":"433R"}],"title":"轮机长...","value":"433","key":"433"},{"children":[{"children":[],"title":"党组成员","value":"T15U","key":"T15U"},{"children":[],"title":"党组副书记","value":"T15B","key":"T15B"},{"children":[],"title":"党组书记","value":"T15A","key":"T15A"}],"title":"党组书记","value":"T15","key":"T15"},{"children":[{"children":[],"title":"驻安提瓜和巴布达特命全权大使","value":"D2A0","key":"D2A0"}],"title":"驻安提瓜和巴布达特命全权大使","value":"D2A","key":"D2A"},{"children":[{"children":[],"title":"主席团副主席","value":"T21B","key":"T21B"},{"children":[],"title":"主席团主席","value":"T21A","key":"T21A"}],"title":"主席团主席","value":"T21","key":"T21"},{"children":[{"children":[],"title":"部长","value":"211A","key":"211A"},{"children":[],"title":"副部长","value":"211B","key":"211B"},{"children":[],"title":"部长助理","value":"211J","key":"211J"}],"title":"部长","value":"211","key":"211"},{"children":[{"children":[],"title":"三等助理","value":"340E","key":"340E"},{"children":[],"title":"二等助理","value":"340D","key":"340D"},{"children":[],"title":"一等助理","value":"340C","key":"340C"}],"title":"助理","value":"340","key":"340"},{"children":[{"children":[],"title":"首席领事","value":"333A","key":"333A"}],"title":"首席领事","value":"333","key":"333"},{"children":[{"children":[],"title":"机关纪委副书记","value":"T16B","key":"T16B"},{"children":[],"title":"机关纪委书记","value":"T16A","key":"T16A"}],"title":"机关纪委书记","value":"T16","key":"T16"},{"children":[{"children":[],"title":"经理助理","value":"436J","key":"436J"},{"children":[],"title":"副经理","value":"436B","key":"436B"},{"children":[],"title":"经理","value":"436A","key":"436A"}],"title":"经理...","value":"436","key":"436"},{"children":[{"children":[],"title":"驻科摩罗特命全权大使","value":"B3D0","key":"B3D0"}],"title":"驻科摩罗特命全权大使","value":"B3D","key":"B3D"},{"children":[{"children":[],"title":"理事长助理","value":"405J","key":"405J"},{"children":[],"title":"副理事长","value":"405B","key":"405B"},{"children":[],"title":"理事长","value":"405A","key":"405A"}],"title":"理事长...","value":"405","key":"405"},{"children":[{"children":[],"title":"首席精算师","value":"702A","key":"702A"}],"title":"精算师","value":"702","key":"702"},{"children":[{"children":[],"title":"政治指导员","value":"855A","key":"855A"},{"children":[],"title":"副政治指导员","value":"855B","key":"855B"}],"title":"指导员...","value":"855","key":"855"},{"children":[{"children":[],"title":"驻巴巴多斯特命全权大使","value":"D270","key":"D270"}],"title":"驻巴巴多斯特命全权大使","value":"D27","key":"D27"},{"children":[{"children":[],"title":"代办","value":"302A","key":"302A"}],"title":"代办","value":"302","key":"302"},{"children":[{"children":[],"title":"国家首席兽医师","value":"114A","key":"114A"}],"title":"国家首席兽医师","value":"114","key":"114"},{"children":[{"children":[],"title":"驻爱沙尼亚特命全权大使","value":"C1A0","key":"C1A0"}],"title":"驻爱沙尼亚特命全权大使","value":"C1A","key":"C1A"},{"children":[{"children":[],"title":"党组纪检组组长","value":"T25A","key":"T25A"},{"children":[],"title":"党组纪检组副组长","value":"T25B","key":"T25B"}],"title":"党组纪检组组长","value":"T25","key":"T25"},{"children":[{"children":[],"title":"大使","value":"301A","key":"301A"}],"title":"大使","value":"301","key":"301"},{"children":[{"children":[],"title":"区长助理","value":"255J","key":"255J"},{"children":[],"title":"区长","value":"255A","key":"255A"},{"children":[],"title":"副区长","value":"255B","key":"255B"},{"children":[],"title":"代理区长","value":"255G","key":"255G"}],"title":"区长","value":"255","key":"255"},{"children":[{"children":[],"title":"驻冰岛特命全权大使","value":"C5G0","key":"C5G0"}],"title":"驻冰岛特命全权大使","value":"C5G","key":"C5G"},{"children":[{"children":[],"title":"营长","value":"816A","key":"816A"},{"children":[],"title":"副营长","value":"816B","key":"816B"}],"title":"营长...","value":"816","key":"816"},{"children":[{"children":[],"title":"总稽核","value":"508Q","key":"508Q"},{"children":[],"title":"副总稽核","value":"508R","key":"508R"}],"title":"总稽核","value":"508","key":"508"},{"children":[{"children":[],"title":"副领事","value":"334B","key":"334B"},{"children":[],"title":"领事","value":"334A","key":"334A"}],"title":"领事","value":"334","key":"334"},{"children":[{"children":[],"title":"驻爱尔兰特命全权大使","value":"C670","key":"C670"}],"title":"驻爱尔兰特命全权大使","value":"C67","key":"C67"},{"children":[{"children":[],"title":"审计长","value":"212A","key":"212A"},{"children":[],"title":"副审计长","value":"212B","key":"212B"}],"title":"审计长","value":"212","key":"212"},{"children":[{"children":[],"title":"常驻国际货币基金组织执行董事","value":"G54A","key":"G54A"}],"title":"常驻国际货币基金组织执行董事","value":"G54","key":"G54"},{"children":[{"children":[],"title":"庭长","value":"109A","key":"109A"},{"children":[],"title":"副庭长","value":"109B","key":"109B"}],"title":"庭长","value":"109","key":"109"},{"children":[{"children":[],"title":"雇员","value":"344A","key":"344A"}],"title":"雇员","value":"344","key":"344"},{"children":[{"children":[],"title":"执行理事会副理事长","value":"T35B","key":"T35B"},{"children":[],"title":"执行理事会理事长","value":"T35A","key":"T35A"}],"title":"执行理事会理事长","value":"T35","key":"T35"},{"children":[{"children":[],"title":"公使","value":"303A","key":"303A"}],"title":"公使","value":"303","key":"303"},{"children":[{"children":[],"title":"驻厄瓜多尔特命全权大使","value":"D3D0","key":"D3D0"}],"title":"驻厄瓜多尔特命全权大使","value":"D3D","key":"D3D"},{"children":[{"children":[],"title":"中国国际广播电台台长","value":"T55A","key":"T55A"}],"title":"中国国际广播电台台长","value":"T55","key":"T55"},{"children":[{"children":[],"title":"驻巴塞罗那总领事","value":"C8A3","key":"C8A3"},{"children":[],"title":"驻西班牙特命全权大使","value":"C8A0","key":"C8A0"}],"title":"驻西班牙特命全权大使","value":"C8A","key":"C8A"},{"children":[{"children":[],"title":"副连长","value":"817B","key":"817B"},{"children":[],"title":"连长","value":"817A","key":"817A"}],"title":"连长...","value":"817","key":"817"},{"children":[{"children":[],"title":"驻葡萄牙特命全权大使","value":"C8G0","key":"C8G0"}],"title":"驻葡萄牙特命全权大使","value":"C8G","key":"C8G"},{"children":[{"children":[],"title":"总裁助理","value":"430J","key":"430J"},{"children":[],"title":"总裁","value":"430A","key":"430A"},{"children":[],"title":"副总裁","value":"430B","key":"430B"}],"title":"总裁","value":"430","key":"430"},{"children":[{"children":[],"title":"理事会主任","value":"T37A","key":"T37A"},{"children":[],"title":"理事会副主任","value":"T37B","key":"T37B"}],"title":"理事会主任","value":"T37","key":"T37"},{"children":[{"children":[],"title":"团长","value":"815A","key":"815A"},{"children":[],"title":"副团长","value":"815B","key":"815B"}],"title":"团长...","value":"815","key":"815"},{"children":[{"children":[],"title":"驻喀麦隆特命全权大使","value":"B540","key":"B540"},{"children":[],"title":"驻杜阿拉馆长领事","value":"B543","key":"B543"}],"title":"驻喀麦隆特命全权大使","value":"B54","key":"B54"},{"children":[{"children":[],"title":"驻匈牙利特命全权大使","value":"C470","key":"C470"}],"title":"驻匈牙利特命全权大使","value":"C47","key":"C47"},{"children":[{"children":[],"title":"驻希腊特命全权大使","value":"C810","key":"C810"}],"title":"驻希腊特命全权大使","value":"C81","key":"C81"},{"children":[{"children":[],"title":"警务联络官(警务参赞)","value":"319A","key":"319A"}],"title":"警务联络官","value":"319","key":"319"},{"children":[{"children":[],"title":"教育参赞","value":"318A","key":"318A"}],"title":"教育参赞","value":"318","key":"318"},{"children":[{"children":[],"title":"书记处第三书记","value":"T19E","key":"T19E"},{"children":[],"title":"书记处书记","value":"T19A","key":"T19A"},{"children":[],"title":"书记处第一书记","value":"T19C","key":"T19C"},{"children":[],"title":"书记处副书记","value":"T19B","key":"T19B"},{"children":[],"title":"书记处候补书记","value":"T19P","key":"T19P"},{"children":[],"title":"书记处第二书记","value":"T19D","key":"T19D"}],"title":"书记处书记","value":"T19","key":"T19"},{"children":[{"children":[],"title":"代理主任","value":"004G","key":"004G"},{"children":[],"title":"主任","value":"004A","key":"004A"},{"children":[],"title":"工会主任","value":"004W","key":"004W"},{"children":[],"title":"副主任","value":"004B","key":"004B"},{"children":[],"title":"主任助理","value":"004J","key":"004J"}],"title":"主任","value":"004","key":"004"},{"children":[{"children":[],"title":"顾问","value":"005A","key":"005A"}],"title":"顾问","value":"005","key":"005"},{"children":[{"children":[],"title":"市委副书记","value":"T03B","key":"T03B"},{"children":[],"title":"市委书记","value":"T03A","key":"T03A"}],"title":"市委书记","value":"T03","key":"T03"},{"children":[{"children":[],"title":"驻塞拉利昂特命全权大使","value":"B840","key":"B840"}],"title":"驻塞拉利昂特命全权大使","value":"B84","key":"B84"},{"children":[{"children":[],"title":"常驻联合国教科文组织代表","value":"G27A","key":"G27A"}],"title":"常驻联合国教科文组织代表","value":"G27","key":"G27"},{"children":[{"children":[],"title":"副总工程师","value":"083R","key":"083R"},{"children":[],"title":"主任工程师","value":"083S","key":"083S"},{"children":[],"title":"总工程师","value":"083Q","key":"083Q"}],"title":"工程师","value":"083","key":"083"},{"children":[{"children":[],"title":"中央纪委驻金融系统纪检组组长","value":"T29A","key":"T29A"}],"title":"中央纪委驻金融系统纪检组组长","value":"T29","key":"T29"},{"children":[{"children":[],"title":"驻温哥华总领事","value":"D143","key":"D143"},{"children":[],"title":"驻卡尔加里总领事","value":"D147","key":"D147"},{"children":[],"title":"驻加拿大特命全权大使","value":"D140","key":"D140"},{"children":[],"title":"驻多伦多总领事","value":"D145","key":"D145"}],"title":"驻加拿大特命全权大使","value":"D14","key":"D14"},{"children":[{"children":[],"title":"纪检组长","value":"015W","key":"015W"},{"children":[],"title":"纪检员","value":"015A","key":"015A"}],"title":"纪检员","value":"015","key":"015"},{"children":[{"children":[],"title":"秘书","value":"104A","key":"104A"}],"title":"秘书","value":"104","key":"104"},{"children":[{"children":[],"title":"驻布基纳法索特命全权大使","value":"B770","key":"B770"}],"title":"驻布基纳法索特命全权大使","value":"B77","key":"B77"},{"children":[{"children":[],"title":"驻东帝汶特命全权大使","value":"A820","key":"A820"}],"title":"驻东帝汶特命全权大使","value":"A82","key":"A82"},{"children":[{"children":[],"title":"驻清津总领事","value":"A113","key":"A113"},{"children":[],"title":"驻朝鲜特命全权大使","value":"A110","key":"A110"}],"title":"驻朝鲜特命全权大使","value":"A11","key":"A11"},{"children":[{"children":[],"title":"驻圣卢西亚特命全权大使","value":"D3K0","key":"D3K0"}],"title":"驻圣卢西亚特命全权大使","value":"D3K","key":"D3K"},{"children":[{"children":[],"title":"驻利比里亚特命全权大使","value":"B810","key":"B810"}],"title":"驻利比里亚特命全权大使","value":"B81","key":"B81"},{"children":[{"children":[],"title":"驻格林纳达特命全权大使","value":"D240","key":"D240"}],"title":"驻格林纳达特命全权大使","value":"D24","key":"D24"},{"children":[{"children":[],"title":"驻尼日利亚特命全权大使","value":"B670","key":"B670"},{"children":[],"title":"驻拉各斯总领事","value":"B673","key":"B673"}],"title":"驻尼日利亚特命全权大使","value":"B67","key":"B67"},{"children":[{"children":[],"title":"驻埃塞俄比亚特命全权大使","value":"B2D0","key":"B2D0"}],"title":"驻埃塞俄比亚特命全权大使","value":"B2D","key":"B2D"}]; //职务名称代码 (ZRB08-2006/ZWMC)
+ export const _0Z = [{"children":[{"children":[],"title":"十八级公务员","value":"1018","key":"1018"},{"children":[],"title":"二十一级公务员","value":"1021","key":"1021"},{"children":[],"title":"十六级公务员","value":"1016","key":"1016"},{"children":[],"title":"六级公务员","value":"1006","key":"1006"},{"children":[],"title":"七级公务员","value":"1007","key":"1007"},{"children":[],"title":"四级公务员","value":"1004","key":"1004"},{"children":[],"title":"二十五级公务员","value":"1025","key":"1025"},{"children":[],"title":"二级公务员","value":"1002","key":"1002"},{"children":[],"title":"五级公务员","value":"1005","key":"1005"},{"children":[],"title":"二十七级公务员","value":"1027","key":"1027"},{"children":[],"title":"三级公务员","value":"1003","key":"1003"},{"children":[],"title":"九级公务员","value":"1009","key":"1009"},{"children":[],"title":"十三级公务员","value":"1013","key":"1013"},{"children":[],"title":"未定级公务员","value":"1099","key":"1099"},{"children":[],"title":"十级公务员","value":"1010","key":"1010"},{"children":[],"title":"十二级公务员","value":"1012","key":"1012"},{"children":[],"title":"一级公务员","value":"1001","key":"1001"},{"children":[],"title":"十四级公务员","value":"1014","key":"1014"},{"children":[],"title":"二十二级公务员","value":"1022","key":"1022"},{"children":[],"title":"二十级公务员","value":"1020","key":"1020"},{"children":[],"title":"十九级公务员","value":"1019","key":"1019"},{"children":[],"title":"八级公务员","value":"1008","key":"1008"},{"children":[],"title":"二十六级公务员","value":"1026","key":"1026"},{"children":[],"title":"二十三级公务员","value":"1023","key":"1023"},{"children":[],"title":"二十四级公务员","value":"1024","key":"1024"},{"children":[],"title":"十七级公务员","value":"1017","key":"1017"},{"children":[],"title":"十五级公务员","value":"1015","key":"1015"},{"children":[],"title":"十一级公务员","value":"1011","key":"1011"}],"title":"公务员级别","value":"1","key":"1"},{"children":[{"children":[],"title":"厅局级正职(巡视员)","value":"0121","key":"0121"},{"children":[],"title":"省部级副职","value":"0112","key":"0112"},{"children":[],"title":"乡科级副职(副主任科员)","value":"0142","key":"0142"},{"children":[],"title":"未定职公务员","value":"0199","key":"0199"},{"children":[],"title":"省部级正职","value":"0111","key":"0111"},{"children":[],"title":"县处级副职(副调研员)","value":"0132","key":"0132"},{"children":[],"title":"厅局级副职(副巡视员)","value":"0122","key":"0122"},{"children":[],"title":"国家级副职","value":"0102","key":"0102"},{"children":[],"title":"国家级正职","value":"0101","key":"0101"},{"children":[],"title":"办事员","value":"0160","key":"0160"},{"children":[],"title":"县处级正职(调研员)","value":"0131","key":"0131"},{"children":[],"title":"科员","value":"0150","key":"0150"},{"children":[],"title":"乡科级正职(主任科员)","value":"0141","key":"0141"}],"title":"公务员领导职务和综合管理类非领导职务级别","value":"0","key":"0"},{"children":[{"children":[],"title":"粮食企业行政人员级别","value":"8Y","key":"8Y"},{"children":[],"title":"建筑、安装企业人员级别","value":"9D","key":"9D"},{"children":[],"title":"卫生技术工作人员级别","value":"8S","key":"8S"},{"children":[],"title":"中学行政人员级别","value":"8K","key":"8K"},{"children":[],"title":"小学教员级别","value":"8N","key":"8N"},{"children":[],"title":"地质队工程技术人员级别","value":"9I","key":"9I"},{"children":[],"title":"邮电企业行政人员级别","value":"9K","key":"9K"},{"children":[],"title":"中国科学院科学研究人员级别","value":"86","key":"86"},{"children":[],"title":"国家农、林、牧场行政人员级别","value":"92","key":"92"},{"children":[],"title":"技工学校行政人员级别","value":"8P","key":"8P"},{"children":[],"title":"森林调查设计技术人员级别","value":"96","key":"96"},{"children":[],"title":"民航系统技术人员级别","value":"9P","key":"9P"},{"children":[],"title":"文艺工作人员级别","value":"8D","key":"8D"},{"children":[],"title":"剧场、电影院工作人员级别","value":"8E","key":"8E"},{"children":[],"title":"高等学校教学人员级别","value":"8G","key":"8G"},{"children":[],"title":"电力工业企业人员级别","value":"9C","key":"9C"},{"children":[],"title":"国家机关翻译工作人员级别","value":"84","key":"84"},{"children":[],"title":"士官职位级别","value":"65","key":"65"},{"children":[],"title":"高等学校教学辅助人员级别","value":"8H","key":"8H"},{"children":[],"title":"森林调查设计行政人员级别","value":"95","key":"95"},{"children":[],"title":"邮电企业职员级别","value":"9L","key":"9L"},{"children":[],"title":"技工学校理论、文化教师级别","value":"8Q","key":"8Q"},{"children":[],"title":"国家机关技术人员级别","value":"83","key":"83"},{"children":[],"title":"中国科学院行政管理人员级别","value":"85","key":"85"},{"children":[],"title":"体育运动员级别","value":"8U","key":"8U"},{"children":[],"title":"邮电企业工程技术人员级别","value":"9M","key":"9M"},{"children":[],"title":"出版编辑工作人员级别","value":"89","key":"89"},{"children":[],"title":"地质队行政人员级别","value":"9H","key":"9H"},{"children":[],"title":"国营商业企业行政人员级别","value":"8W","key":"8W"},{"children":[],"title":"军事、政治、后勤、装备军官职别","value":"61","key":"61"},{"children":[],"title":"木材公司系统行政人员级别","value":"91","key":"91"},{"children":[],"title":"对外贸易企业人员级别","value":"8X","key":"8X"},{"children":[],"title":"基层公安干警级别","value":"82","key":"82"},{"children":[],"title":"中等专业学校行政级别","value":"8I","key":"8I"},{"children":[],"title":"新闻单位编辑、记者级别","value":"88","key":"88"},{"children":[],"title":"文化馆工作人员级别","value":"8B","key":"8B"},{"children":[],"title":"铁路工作人员级别","value":"9J","key":"9J"},{"children":[],"title":"级别不详 9Z88","value":"9Z","key":"9Z"},{"children":[],"title":"机械工业(一、二、三、四、五、六、七、八机部)企业人员级别","value":"9A","key":"9A"},{"children":[],"title":"国家机关行政人员级别","value":"81","key":"81"},{"children":[],"title":"中学教员级别","value":"8L","key":"8L"},{"children":[],"title":"高等学校行政级别","value":"8F","key":"8F"},{"children":[],"title":"体育行政人员级别","value":"8T","key":"8T"},{"children":[],"title":"拖拉机站管理人员行政级别","value":"93","key":"93"},{"children":[],"title":"卫生行政管理工作人员级别","value":"8R","key":"8R"},{"children":[],"title":"建筑材料工业企业人员级别","value":"9G","key":"9G"},{"children":[],"title":"石油工业部企业人员级别","value":"9E","key":"9E"},{"children":[],"title":"文化事业、企业行政管理工作人员级别","value":"8C","key":"8C"},{"children":[],"title":"中国科学院科学技术人员级别","value":"87","key":"87"},{"children":[],"title":"林业部部属企业技术人员级别","value":"94","key":"94"},{"children":[],"title":"冶金企业、事业单位人员级别","value":"9F","key":"9F"},{"children":[],"title":"非专业技术文职干部职务级别","value":"62","key":"62"},{"children":[],"title":"大中城市郊区基层供销社行政人员级别","value":"90","key":"90"},{"children":[],"title":"邮电工业企业人员级别","value":"9N","key":"9N"},{"children":[],"title":"水利事业行政人员级别","value":"97","key":"97"},{"children":[],"title":"气象行政工作人员级别","value":"98","key":"98"},{"children":[],"title":"县(市)以上供销合作社行政人员级别","value":"8Z","key":"8Z"},{"children":[],"title":"气象技术人员级别","value":"99","key":"99"},{"children":[],"title":"总后勤部企业干部级别","value":"9B","key":"9B"},{"children":[],"title":"专业技术军官、专业技术文职干部和专业技术文职人员技术等级","value":"63","key":"63"},{"children":[],"title":"非专业技术文职人员级别","value":"64","key":"64"},{"children":[],"title":"中等专业学校教学人员","value":"8J","key":"8J"},{"children":[],"title":"小学行政人员级别","value":"8M","key":"8M"},{"children":[],"title":"图书馆、博物馆人员级别","value":"8A","key":"8A"},{"children":[],"title":"国防体育行政人员级别","value":"8V","key":"8V"}],"title":"军队干部职别","value":"6","key":"6"},{"children":[{"children":[],"title":"五级行员(正科)","value":"3041","key":"3041"},{"children":[],"title":"一级行员(副部)","value":"3012","key":"3012"},{"children":[],"title":"四级行员(正处)","value":"3031","key":"3031"},{"children":[],"title":"三级行员(副局)","value":"3022","key":"3022"},{"children":[],"title":"五级行员(副科)","value":"3042","key":"3042"},{"children":[],"title":"六级行员(科员)","value":"3050","key":"3050"},{"children":[],"title":"未定级行员","value":"3099","key":"3099"},{"children":[],"title":"七级行员(办事员)","value":"3060","key":"3060"},{"children":[],"title":"四级行员(副处)","value":"3032","key":"3032"},{"children":[],"title":"二级行员(正局)","value":"3021","key":"3021"}],"title":"行员级别","value":"3","key":"3"},{"children":[{"children":[],"title":"一级职员(副部)","value":"2012","key":"2012"},{"children":[],"title":"四级职员(副科)","value":"2042","key":"2042"},{"children":[],"title":"二级职员(正局)","value":"2021","key":"2021"},{"children":[],"title":"六级职员(办事员)","value":"2060","key":"2060"},{"children":[],"title":"四级职员(正科)","value":"2041","key":"2041"},{"children":[],"title":"未定级职员","value":"2099","key":"2099"},{"children":[],"title":"五级职员(科员)","value":"2050","key":"2050"},{"children":[],"title":"三级职员(副处)","value":"2032","key":"2032"},{"children":[],"title":"一级职员(正部)","value":"2011","key":"2011"},{"children":[],"title":"三级职员(正处)","value":"2031","key":"2031"},{"children":[],"title":"二级职员(副局)","value":"2022","key":"2022"}],"title":"职员级别","value":"2","key":"2"},{"children":[{"children":[],"title":"无职级","value":"4099","key":"4099"},{"children":[],"title":"中级(讲师级)","value":"4020","key":"4020"},{"children":[],"title":"初级","value":"4030","key":"4030"},{"children":[],"title":"员级(教员级)","value":"4032","key":"4032"},{"children":[],"title":"正高级(教授级)","value":"4011","key":"4011"},{"children":[],"title":"助理级(助教级)","value":"4031","key":"4031"},{"children":[],"title":"副高级(副教授级)","value":"4012","key":"4012"},{"children":[],"title":"高级","value":"4010","key":"4010"}],"title":"专业技术职务级别","value":"4","key":"4"}]; //职位级别(ZRB09-2006/ZWLB)
+ export const AL = [{"children":[],"title":"司、地、厅、局级","value":"05","key":"05"},{"children":[],"title":"国家主席、副主席、总理级","value":"01","key":"01"},{"children":[],"title":"副总理、国务委员级","value":"02","key":"02"},{"children":[],"title":"县、处级","value":"07","key":"07"},{"children":[],"title":"正科级","value":"09","key":"09"},{"children":[],"title":"副部、副省级","value":"04","key":"04"},{"children":[],"title":"副司、副局、副地、副厅级","value":"06","key":"06"},{"children":[],"title":"科员级","value":"11","key":"11"},{"children":[],"title":"副科级","value":"10","key":"10"},{"children":[],"title":"办事员级","value":"12","key":"12"},{"children":[],"title":"部、省级","value":"03","key":"03"},{"children":[],"title":"副县、副处级","value":"08","key":"08"}]; //干部职务级别 (GB/T 12407-1990)
+ export const AM = [{"children":[{"children":[],"title":"技工学校","value":"47","key":"47"},{"children":[],"title":"职业高中","value":"44","key":"44"},{"children":[],"title":"中等专科","value":"41","key":"41"}],"title":"中等职业学校","value":"4","key":"4"},{"children":[{"children":[],"title":"大专","value":"22","key":"22"},{"children":[],"title":"大学普通班","value":"23","key":"23"},{"children":[],"title":"大学","value":"21","key":"21"},{"children":[],"title":"中央党校大学","value":"2A","key":"2A"},{"children":[],"title":"省(区、市)委党校大学","value":"2B","key":"2B"},{"children":[],"title":"省(区、市)委党校大专","value":"2D","key":"2D"},{"children":[],"title":"第二学士学位班","value":"24","key":"24"},{"children":[],"title":"中央党校大专","value":"2C","key":"2C"}],"title":"本专科教育","value":"2","key":"2"},{"children":[{"children":[],"title":"初中","value":"71","key":"71"},{"children":[],"title":"特教初中","value":"73","key":"73"},{"children":[],"title":"职业初中","value":"72","key":"72"}],"title":"初中","value":"7","key":"7"},{"children":[{"children":[],"title":"小学","value":"81","key":"81"},{"children":[],"title":"特教小学","value":"82","key":"82"}],"title":"小学","value":"8","key":"8"},{"children":[{"children":[],"title":"省(区、市)委党校研究生","value":"1B","key":"1B"},{"children":[],"title":"研究生班","value":"13","key":"13"},{"children":[],"title":"中央党校研究生","value":"1A","key":"1A"},{"children":[],"title":"硕士研究生","value":"12","key":"12"},{"children":[],"title":"博士研究生","value":"11","key":"11"}],"title":"研究生教育","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[{"children":[],"title":"普通高中","value":"61","key":"61"},{"children":[],"title":"职业高中","value":"62","key":"62"}],"title":"普通高中","value":"6","key":"6"}]; //学历代码 (ZRB64―2006/XLDM)
+ export const AN = [{"children":[],"title":"双学士","value":"5","key":"5"},{"children":[],"title":"名誉博士","value":"1","key":"1"},{"children":[{"children":[],"title":"建筑学学士专业学位","value":"444","key":"444"},{"children":[],"title":"经济学学士学位","value":"402","key":"402"},{"children":[],"title":"医学学士学位","value":"410","key":"410"},{"children":[],"title":"工学学士学位","value":"408","key":"408"},{"children":[],"title":"管理学学士学位","value":"412","key":"412"},{"children":[],"title":"文学学士学位","value":"405","key":"405"},{"children":[],"title":"农学学士学位","value":"409","key":"409"},{"children":[],"title":"历史学学士学位","value":"406","key":"406"},{"children":[],"title":"军事学士学位","value":"411","key":"411"},{"children":[],"title":"法学学士学位","value":"403","key":"403"},{"children":[],"title":"哲学学士学位","value":"401","key":"401"},{"children":[],"title":"理学学士学位","value":"407","key":"407"},{"children":[],"title":"教育学学士学位","value":"404","key":"404"}],"title":"学士","value":"4","key":"4"},{"children":[{"children":[],"title":"工学博士学位","value":"208","key":"208"},{"children":[],"title":"法学博士学位","value":"203","key":"203"},{"children":[],"title":"历史学博士学位","value":"206","key":"206"},{"children":[],"title":"口腔医学博士专业学位","value":"250","key":"250"},{"children":[],"title":"文学博士学位","value":"205","key":"205"},{"children":[],"title":"经济学博士学位","value":"202","key":"202"},{"children":[],"title":"管理学博士学位","value":"212","key":"212"},{"children":[],"title":"理学博士学位","value":"207","key":"207"},{"children":[],"title":"教育学博士学位","value":"204","key":"204"},{"children":[],"title":"兽医博士专业学位","value":"248","key":"248"},{"children":[],"title":"农学博士学位","value":"209","key":"209"},{"children":[],"title":"哲学博士学位","value":"201","key":"201"},{"children":[],"title":"医学博士学位","value":"210","key":"210"},{"children":[],"title":"军事学博士学位","value":"211","key":"211"},{"children":[],"title":"临床医学博士专业学位","value":"245","key":"245"}],"title":"博士","value":"2","key":"2"},{"children":[{"children":[],"title":"兽医硕士专业学位","value":"348","key":"348"},{"children":[],"title":"教育学硕士学位","value":"304","key":"304"},{"children":[],"title":"理学硕士学位","value":"307","key":"307"},{"children":[],"title":"公共卫生硕士专业学位","value":"351","key":"351"},{"children":[],"title":"农学硕士学位","value":"309","key":"309"},{"children":[],"title":"工商管理硕士专业学位","value":"346","key":"346"},{"children":[],"title":"临床医学硕士专业学位","value":"345","key":"345"},{"children":[],"title":"文学硕士学位","value":"305","key":"305"},{"children":[],"title":"法律硕士专业学位","value":"341","key":"341"},{"children":[],"title":"历史学硕士学位","value":"306","key":"306"},{"children":[],"title":"农业推广硕士专业学位","value":"347","key":"347"},{"children":[],"title":"工学硕士学位","value":"308","key":"308"},{"children":[],"title":"经济学硕士学位","value":"302","key":"302"},{"children":[],"title":"口腔医学硕士专业学位","value":"350","key":"350"},{"children":[],"title":"公共管理硕士专业学位","value":"349","key":"349"},{"children":[],"title":"哲学硕士学位","value":"301","key":"301"},{"children":[],"title":"建筑学硕士专业学位","value":"344","key":"344"},{"children":[],"title":"军士硕士专业学位","value":"352","key":"352"},{"children":[],"title":"工程硕士专业学位","value":"343","key":"343"},{"children":[],"title":"军事学硕士学位","value":"311","key":"311"},{"children":[],"title":"法学硕士学位","value":"303","key":"303"},{"children":[],"title":"教育硕士专业学位","value":"342","key":"342"},{"children":[],"title":"医学硕士学位","value":"310","key":"310"},{"children":[],"title":"管理学硕士学位","value":"312","key":"312"}],"title":"硕士","value":"3","key":"3"}]; //中华人民共和国学位 (GB/T 6864-2003)
+ export const AO = [{"children":[],"title":"亚非诸语言(其他)","value":"AFA","key":"AFA"},{"children":[],"title":"赫梯语","value":"HIT","key":"HIT"},{"children":[],"title":"毛利语","value":"MAO","key":"MAO"},{"children":[],"title":"桑塔利语","value":"SAT","key":"SAT"},{"children":[],"title":"班达语","value":"BAD","key":"BAD"},{"children":[],"title":"北美印第安诸语言(其他)","value":"NAI","key":"NAI"},{"children":[],"title":"瓦赖语","value":"WAR","key":"WAR"},{"children":[],"title":"高加索诸语言(其他)","value":"CAU","key":"CAU"},{"children":[],"title":"斯拉夫诸语言(其他)","value":"SLA","key":"SLA"},{"children":[],"title":"依地语","value":"YID","key":"YID"},{"children":[],"title":"弗留利语","value":"FUR","key":"FUR"},{"children":[],"title":"加语","value":"GAA","key":"GAA"},{"children":[],"title":"混杂语诸语言","value":"MIS","key":"MIS"},{"children":[],"title":"占语诸语言","value":"CMC","key":"CMC"},{"children":[],"title":"亚齐语","value":"ACE","key":"ACE"},{"children":[],"title":"易洛魁语","value":"IRO","key":"IRO"},{"children":[],"title":"弗里西亚语","value":"FRY","key":"FRY"},{"children":[],"title":"斯洛文尼亚语","value":"SLV","key":"SLV"},{"children":[],"title":"世界语","value":"EPO","key":"EPO"},{"children":[],"title":"蒙达诸语言","value":"MUN","key":"MUN"},{"children":[],"title":"尤皮克诸语言","value":"YPK","key":"YPK"},{"children":[],"title":"纽埃语","value":"NIU","key":"NIU"},{"children":[],"title":"吉兹语","value":"GEZ","key":"GEZ"},{"children":[],"title":"格鲁吉亚语","value":"GEO","key":"GEO"},{"children":[],"title":"法罗斯语","value":"FAO","key":"FAO"},{"children":[],"title":"切罗基语","value":"CHR","key":"CHR"},{"children":[],"title":"尼扬科勒语","value":"NYN","key":"NYN"},{"children":[],"title":"印尼语","value":"IND","key":"IND"},{"children":[],"title":"德语,中古高地(约1050—1500)","value":"GMH","key":"GMH"},{"children":[],"title":"葡萄牙语","value":"POR","key":"POR"},{"children":[],"title":"撒丁语","value":"SRD","key":"SRD"},{"children":[],"title":"塞茨瓦纳语","value":"TSN","key":"TSN"},{"children":[],"title":"瓦卡什诸语言","value":"WAK","key":"WAK"},{"children":[],"title":"傣语诸语言(其他)","value":"TAI","key":"TAI"},{"children":[],"title":"克鲁语","value":"KRO","key":"KRO"},{"children":[],"title":"邦板牙语","value":"PAM","key":"PAM"},{"children":[],"title":"哲纳加语","value":"ZEN","key":"ZEN"},{"children":[],"title":"克什米尔语","value":"KAS","key":"KAS"},{"children":[],"title":"埃菲克语","value":"EFI","key":"EFI"},{"children":[],"title":"奇布查语","value":"CHB","key":"CHB"},{"children":[],"title":"塞尔维亚语","value":"SCC","key":"SCC"},{"children":[],"title":"印地语","value":"HIN","key":"HIN"},{"children":[],"title":"阿维斯陀语","value":"AVE","key":"AVE"},{"children":[],"title":"蒂夫语","value":"TIV","key":"TIV"},{"children":[],"title":"卡比尔语","value":"KAB","key":"KAB"},{"children":[],"title":"巴塔克语(印度尼西亚)","value":"BTK","key":"BTK"},{"children":[],"title":"埃及语(旧)","value":"EGY","key":"EGY"},{"children":[],"title":"爱尔兰语,中古(900—1200)","value":"MGA","key":"MGA"},{"children":[],"title":"马拉提语","value":"MAR","key":"MAR"},{"children":[],"title":"丘克语","value":"CHK","key":"CHK"},{"children":[],"title":"普拉克里特诸语言","value":"PRA","key":"PRA"},{"children":[],"title":"卡拉卡尔帕克语","value":"KAA","key":"KAA"},{"children":[],"title":"吉尔吉斯语","value":"KIR","key":"KIR"},{"children":[],"title":"阿塞拜疆语","value":"AZA","key":"AZA"},{"children":[],"title":"卢森堡语","value":"LTZ","key":"LTZ"},{"children":[],"title":"巴利语","value":"PLI","key":"PLI"},{"children":[],"title":"库尔德语","value":"KUR","key":"KUR"},{"children":[],"title":"恩敦加语","value":"NDO","key":"NDO"},{"children":[],"title":"特塔姆语","value":"TET","key":"TET"},{"children":[],"title":"未确定的语种","value":"UND","key":"UND"},{"children":[],"title":"印度诸语言(其他)","value":"INC","key":"INC"},{"children":[],"title":"柏柏尔诸语言","value":"BER","key":"BER"},{"children":[],"title":"干达语","value":"LUG","key":"LUG"},{"children":[],"title":"宗加语","value":"TSO","key":"TSO"},{"children":[],"title":"卡西语","value":"KHA","key":"KHA"},{"children":[],"title":"奥吉布瓦语","value":"OJI","key":"OJI"},{"children":[],"title":"马其顿语","value":"MAC","key":"MAC"},{"children":[],"title":"乌尔都语","value":"URD","key":"URD"},{"children":[],"title":"爪哇语","value":"JAV","key":"JAV"},{"children":[],"title":"摩尔达维亚语","value":"MOL","key":"MOL"},{"children":[],"title":"门德语","value":"MEN","key":"MEN"},{"children":[],"title":"布拉吉语","value":"BRA","key":"BRA"},{"children":[],"title":"阿萨帕斯坎诸语言","value":"ATH","key":"ATH"},{"children":[],"title":"萨马利亚阿拉米语","value":"SAM","key":"SAM"},{"children":[],"title":"瑶语","value":"YAO","key":"YAO"},{"children":[],"title":"普什图语","value":"PUS","key":"PUS"},{"children":[],"title":"马都拉语","value":"MAD","key":"MAD"},{"children":[],"title":"阿瓦德语","value":"AWA","key":"AWA"},{"children":[],"title":"荷兰语,中古(约1050—1350)","value":"DUM","key":"DUM"},{"children":[],"title":"马拉亚拉姆语","value":"MAL","key":"MAL"},{"children":[],"title":"恩济马语","value":"NZI","key":"NZI"},{"children":[],"title":"奇图姆布卡语","value":"TUM","key":"TUM"},{"children":[],"title":"索布诸语言","value":"WEN","key":"WEN"},{"children":[],"title":"泰语","value":"THA","key":"THA"},{"children":[],"title":"桑戈语","value":"SAG","key":"SAG"},{"children":[],"title":"梵语","value":"SAN","key":"SAN"},{"children":[],"title":"埃维语","value":"EWE","key":"EWE"},{"children":[],"title":"曼丁哥语","value":"MAN","key":"MAN"},{"children":[],"title":"祖尼语","value":"ZUN","key":"ZUN"},{"children":[],"title":"冰岛语","value":"ICE","key":"ICE"},{"children":[],"title":"伊博语","value":"IBO","key":"IBO"},{"children":[],"title":"车臣语","value":"CHE","key":"CHE"},{"children":[],"title":"沃洛夫语","value":"WOL","key":"WOL"},{"children":[],"title":"米克马克语","value":"MIC","key":"MIC"},{"children":[],"title":"不丹语","value":"DZO","key":"DZO"},{"children":[],"title":"腓尼基语","value":"PHN","key":"PHN"},{"children":[],"title":"克里奥尔混合语,以英语为基础的(其他)","value":"CPE","key":"CPE"},{"children":[],"title":"塞尔库普语","value":"SEL","key":"SEL"},{"children":[],"title":"史拉维语","value":"DEN","key":"DEN"},{"children":[],"title":"亚美尼亚语","value":"ARM","key":"ARM"},{"children":[],"title":"拉迪诺语","value":"LAD","key":"LAD"},{"children":[],"title":"库臣语","value":"GWI","key":"GWI"},{"children":[],"title":"朝鲜语","value":"KOR","key":"KOR"},{"children":[],"title":"威尔土语","value":"WEL","key":"WEL"},{"children":[],"title":"图瓦卢语","value":"TVL","key":"TVL"},{"children":[],"title":"捷克语","value":"CZE","key":"CZE"},{"children":[],"title":"立陶宛语","value":"LIT","key":"LIT"},{"children":[],"title":"萨利什诸语言","value":"SAL","key":"SAL"},{"children":[],"title":"奥利亚语","value":"ORI","key":"ORI"},{"children":[],"title":"希里莫图语","value":"HMO","key":"HMO"},{"children":[],"title":"杜亚拉语","value":"DUA","key":"DUA"},{"children":[],"title":"澳斯特罗尼西亚诸语言(其他)","value":"MAP","key":"MAP"},{"children":[],"title":"加利西亚语","value":"GLG","key":"GLG"},{"children":[],"title":"匈牙利语","value":"HUN","key":"HUN"},{"children":[],"title":"吉普赛语","value":"ROM","key":"ROM"},{"children":[],"title":"孔卡尼语","value":"KOK","key":"KOK"},{"children":[],"title":"艾马拉语","value":"AYM","key":"AYM"},{"children":[],"title":"夏威夷语","value":"HAW","key":"HAW"},{"children":[],"title":"波罗的诸语言","value":"BAT","key":"BAT"},{"children":[],"title":"邦阿西楠语","value":"PAN","key":"PAN"},{"children":[],"title":"土库曼语","value":"TUK","key":"TUK"},{"children":[],"title":"萨摩斯诸语言","value":"SMI","key":"SMI"},{"children":[],"title":"卡威语","value":"KAW","key":"KAW"},{"children":[],"title":"爱尔兰语,古(900以前)","value":"SGA","key":"SGA"},{"children":[],"title":"奥萨格语","value":"OSA","key":"OSA"},{"children":[],"title":"查莫罗语","value":"CHA","key":"CHA"},{"children":[],"title":"马达加斯加语","value":"MLG","key":"MLG"},{"children":[],"title":"拉丁语","value":"LAT","key":"LAT"},{"children":[],"title":"塞雷尔语","value":"SRR","key":"SRR"},{"children":[],"title":"图瓦语","value":"TYV","key":"TYV"},{"children":[],"title":"越南语","value":"VIE","key":"VIE"},{"children":[],"title":"俾路支语","value":"BAL","key":"BAL"},{"children":[],"title":"克里奥尔混合语,以法语为基础的(其他)","value":"CPF","key":"CPF"},{"children":[],"title":"芬兰—乌戈尔诸语言(其他)","value":"FIU","key":"FIU"},{"children":[],"title":"康沃尔语","value":"COR","key":"COR"},{"children":[],"title":"瓦拉莫语","value":"WAL","key":"WAL"},{"children":[],"title":"瓦伊语","value":"VAI","key":"VAI"},{"children":[],"title":"文达语","value":"VEN","key":"VEN"},{"children":[],"title":"帕劳语","value":"PAU","key":"PAU"},{"children":[],"title":"孟加拉语","value":"BEN","key":"BEN"},{"children":[],"title":"比哈尔语","value":"BIH","key":"BIH"},{"children":[],"title":"科伊桑诸语言","value":"KHI","key":"KHI"},{"children":[],"title":"巴什基尔语","value":"BAK","key":"BAK"},{"children":[],"title":"阿萨姆语","value":"ASM","key":"ASM"},{"children":[],"title":"阿布哈兹语","value":"ABK","key":"ABK"},{"children":[],"title":"胡帕语","value":"HUP","key":"HUP"},{"children":[],"title":"阿当梅语","value":"ADA","key":"ADA"},{"children":[],"title":"达科他语","value":"DAK","key":"DAK"},{"children":[],"title":"尼扬韦齐语","value":"NYM","key":"NYM"},{"children":[],"title":"科米语","value":"KOM","key":"KOM"},{"children":[],"title":"库特内语","value":"KUT","key":"KUT"},{"children":[],"title":"英语,古(约450—1100)","value":"ANG","key":"ANG"},{"children":[],"title":"科普特语","value":"COP","key":"COP"},{"children":[],"title":"高棉语","value":"KHM","key":"KHM"},{"children":[],"title":"爱沙尼亚语","value":"EST","key":"EST"},{"children":[],"title":"恩德贝勒语,北部","value":"NDE","key":"NDE"},{"children":[],"title":"掸语","value":"SHN","key":"SHN"},{"children":[],"title":"钵罗钵语","value":"PAL","key":"PAL"},{"children":[],"title":"马里语","value":"CHM","key":"CHM"},{"children":[],"title":"塔希提语","value":"TAH","key":"TAH"},{"children":[],"title":"拉亨达语","value":"LAH","key":"LAH"},{"children":[],"title":"汉语","value":"CHI","key":"CHI"},{"children":[],"title":"汤加语(汤加岛)","value":"TON","key":"TON"},{"children":[],"title":"曼尼普尔语","value":"MNI","key":"MNI"},{"children":[],"title":"奥洛莫语","value":"ORM","key":"ORM"},{"children":[],"title":"苏库马语","value":"SUK","key":"SUK"},{"children":[],"title":"凯楚亚语","value":"QUE","key":"QUE"},{"children":[],"title":"拉脱维亚语","value":"LAV","key":"LAV"},{"children":[],"title":"锡达莫语","value":"SID","key":"SID"},{"children":[],"title":"洛齐语","value":"LOZ","key":"LOZ"},{"children":[],"title":"萨摩亚语","value":"SMO","key":"SMO"},{"children":[],"title":"闪米特诸语言(其他)","value":"SEM","key":"SEM"},{"children":[],"title":"萨波特克语","value":"ZAP","key":"ZAP"},{"children":[],"title":"尼扬贾语","value":"NYA","key":"NYA"},{"children":[],"title":"卡约语","value":"GAY","key":"GAY"},{"children":[],"title":"卢奥语(肯尼亚和坦桑尼亚)","value":"LUO","key":"LUO"},{"children":[],"title":"特列纳语","value":"TER","key":"TER"},{"children":[],"title":"迪维希语","value":"DIV","key":"DIV"},{"children":[],"title":"波兰语","value":"POL","key":"POL"},{"children":[],"title":"提格雷语","value":"TIG","key":"TIG"},{"children":[],"title":"翁本杜语","value":"UMB","key":"UMB"},{"children":[],"title":"芒戈语","value":"LOL","key":"LOL"},{"children":[],"title":"加勒比语","value":"CAR","key":"CAR"},{"children":[],"title":"达雅克语","value":"DAY","key":"DAY"},{"children":[],"title":"比科尔语","value":"BIK","key":"BIK"},{"children":[],"title":"滕内语","value":"TEM","key":"TEM"},{"children":[],"title":"俄语","value":"RUS","key":"RUS"},{"children":[],"title":"斯瓦特语","value":"SSW","key":"SSW"},{"children":[],"title":"凯尔特诸语言(其他)","value":"CEL","key":"CEL"},{"children":[],"title":"巴米累克诸语言","value":"BAI","key":"BAI"},{"children":[],"title":"苏语诸语言","value":"SIO","key":"SIO"},{"children":[],"title":"贝贾语","value":"BEJ","key":"BEJ"},{"children":[],"title":"阿尔巴尼亚语","value":"ALB","key":"ALB"},{"children":[],"title":"蒙(苗)语","value":"HMN","key":"HMN"},{"children":[],"title":"教会斯拉夫语","value":"CHU","key":"CHU"},{"children":[],"title":"科斯拉伊语","value":"KOS","key":"KOS"},{"children":[],"title":"德语","value":"GER","key":"GER"},{"children":[],"title":"埃兰语","value":"ELX","key":"ELX"},{"children":[],"title":"纳瓦霍语","value":"NAV","key":"NAV"},{"children":[],"title":"卢巴—卢拉语","value":"LUA","key":"LUA"},{"children":[],"title":"国际语E","value":"ILE","key":"ILE"},{"children":[],"title":"努比来语诸语言","value":"NUB","key":"NUB"},{"children":[],"title":"希腊语,现代(1453以后)","value":"GRE","key":"GRE"},{"children":[],"title":"爱尔兰语","value":"GLE","key":"GLE"},{"children":[],"title":"索托语,南部","value":"SOT","key":"SOT"},{"children":[],"title":"罗马尼亚语","value":"RUM","key":"RUM"},{"children":[],"title":"萨萨克语","value":"SAS","key":"SAS"},{"children":[],"title":"喜马偕尔语","value":"HIM","key":"HIM"},{"children":[],"title":"苏苏语","value":"SUS","key":"SUS"},{"children":[],"title":"苏格兰语","value":"SCO","key":"SCO"},{"children":[],"title":"藏语","value":"TIB","key":"TIB"},{"children":[],"title":"米南卡保语","value":"MIN","key":"MIN"},{"children":[],"title":"尼泊尔语","value":"NEP","key":"NEP"},{"children":[],"title":"豪萨语","value":"HAU","key":"HAU"},{"children":[],"title":"塔吉克语","value":"TGK","key":"TGK"},{"children":[],"title":"阿劳坎语","value":"ARN","key":"ARN"},{"children":[],"title":"埃克丘克语","value":"EKA","key":"EKA"},{"children":[],"title":"乌加里特语","value":"UGA","key":"UGA"},{"children":[],"title":"列兹金语","value":"LEZ","key":"LEZ"},{"children":[],"title":"马耳他语","value":"MLT","key":"MLT"},{"children":[],"title":"伊洛卡诺语","value":"ILO","key":"ILO"},{"children":[],"title":"尼瓦尔语","value":"NEW","key":"NEW"},{"children":[],"title":"信德语","value":"SND","key":"SND"},{"children":[],"title":"阿瓦尔语","value":"AVA","key":"AVA"},{"children":[],"title":"奇佩维安语","value":"CHP","key":"CHP"},{"children":[],"title":"尼日尔—科尔多凡语诸语言(其他)","value":"NIC","key":"NIC"},{"children":[],"title":"阿拉瓦克语","value":"ARW","key":"ARW"},{"children":[],"title":"荷兰语","value":"DUT","key":"DUT"},{"children":[],"title":"日尔曼诸语言(其他)","value":"GEM","key":"GEM"},{"children":[],"title":"格陵兰语","value":"KAL","key":"KAL"},{"children":[],"title":"科萨语","value":"XHO","key":"XHO"},{"children":[],"title":"阿拉米语","value":"ARC","key":"ARC"},{"children":[],"title":"尼罗—撒哈拉诸语言(其他)","value":"SSA","key":"SSA"},{"children":[],"title":"法语,中古(约1400—1600)","value":"FRM","key":"FRM"},{"children":[],"title":"挪威语","value":"NOR","key":"NOR"},{"children":[],"title":"阿留申语","value":"ALE","key":"ALE"},{"children":[],"title":"僧加罗语","value":"SIN","key":"SIN"},{"children":[],"title":"赞德语","value":"ZND","key":"ZND"},{"children":[],"title":"博杰普里语","value":"BHO","key":"BHO"},{"children":[],"title":"阿姆哈拉语","value":"AMH","key":"AMH"},{"children":[],"title":"林加拉语","value":"LIN","key":"LIN"},{"children":[],"title":"阿法尔语","value":"AAR","key":"AAR"},{"children":[],"title":"桑达韦语","value":"SAD","key":"SAD"},{"children":[],"title":"马尔瓦利语","value":"MWR","key":"MWR"},{"children":[],"title":"阿尔冈昆诸语言","value":"ALG","key":"ALG"},{"children":[],"title":"乌兹别克语","value":"UZB","key":"UZB"},{"children":[],"title":"雅库特语","value":"SAH","key":"SAH"},{"children":[],"title":"卢巴—加丹加语","value":"LUB","key":"LUB"},{"children":[],"title":"白俄罗斯语","value":"BEL","key":"BEL"},{"children":[],"title":"尼奥罗语","value":"NYO","key":"NYO"},{"children":[],"title":"科西嘉语","value":"COS","key":"COS"},{"children":[],"title":"孟—高棉诸语言(其他)","value":"MKH","key":"MKH"},{"children":[],"title":"和阗(和田)语","value":"KHO","key":"KHO"},{"children":[],"title":"壮语","value":"ZHA","key":"ZHA"},{"children":[],"title":"旁遮普语","value":"PAG","key":"PAG"},{"children":[],"title":"祖鲁语","value":"ZUL","key":"ZUL"},{"children":[],"title":"奥克西唐语(1500以后)","value":"OCI","key":"OCI"},{"children":[],"title":"莫霍克语","value":"MOH","key":"MOH"},{"children":[],"title":"古吉拉特语","value":"GUJ","key":"GUJ"},{"children":[],"title":"克里克语","value":"MUS","key":"MUS"},{"children":[],"title":"犹太—阿拉伯语","value":"JRB","key":"JRB"},{"children":[],"title":"加泰隆语","value":"CAT","key":"CAT"},{"children":[],"title":"蒙古语","value":"MON","key":"MON"},{"children":[],"title":"卢伊塞诺语","value":"LUI","key":"LUI"},{"children":[],"title":"刚果语","value":"KON","key":"KON"},{"children":[],"title":"塔塔尔语","value":"TAT","key":"TAT"},{"children":[],"title":"瑞典语","value":"SWE","key":"SWE"},{"children":[],"title":"奥塞梯语","value":"OSS","key":"OSS"},{"children":[],"title":"阿坎语","value":"AKA","key":"AKA"},{"children":[],"title":"托克劳","value":"TKL","key":"TKL"},{"children":[],"title":"利托—罗曼语","value":"ROH","key":"ROH"},{"children":[],"title":"伊班语","value":"IBA","key":"IBA"},{"children":[],"title":"马恩岛语","value":"GLV","key":"GLV"},{"children":[],"title":"巴厘语","value":"BAN","key":"BAN"},{"children":[],"title":"钦西安语","value":"TSI","key":"TSI"},{"children":[],"title":"克佩勒语","value":"KPE","key":"KPE"},{"children":[],"title":"犹太—波斯语","value":"JPR","key":"JPR"},{"children":[],"title":"法语","value":"FRE","key":"FRE"},{"children":[],"title":"英语,中古(1100—1500)","value":"ENM","key":"ENM"},{"children":[],"title":"奇努克混合语","value":"CHN","key":"CHN"},{"children":[],"title":"伊朗诸语言(其他)","value":"IRA","key":"IRA"},{"children":[],"title":"英语","value":"ENG","key":"ENG"},{"children":[],"title":"尼亚斯语","value":"NIA","key":"NIA"},{"children":[],"title":"特威语","value":"TWI","key":"TWI"},{"children":[],"title":"布列塔尼语","value":"BRE","key":"BRE"},{"children":[],"title":"粟特语","value":"SOG","key":"SOG"},{"children":[],"title":"汉藏诸语言(其他)","value":"SIT","key":"SIT"},{"children":[],"title":"巴布亚诸语言(其他)","value":"PAA","key":"PAA"},{"children":[],"title":"玛雅诸语言","value":"MYN","key":"MYN"},{"children":[],"title":"哥特语","value":"GOT","key":"GOT"},{"children":[],"title":"基库尤语","value":"KIK","key":"KIK"},{"children":[],"title":"巽他语","value":"SUN","key":"SUN"},{"children":[],"title":"日语","value":"JPN","key":"JPN"},{"children":[],"title":"基隆迪语","value":"RUN","key":"RUN"},{"children":[],"title":"希利盖农语","value":"HIL","key":"HIL"},{"children":[],"title":"诺尔斯语,古","value":"NON","key":"NON"},{"children":[],"title":"达罗毗荼语","value":"DRA","key":"DRA"},{"children":[],"title":"希腊语,古(1453以前)","value":"GRC","key":"GRC"},{"children":[],"title":"马绍尔语","value":"MAH","key":"MAH"},{"children":[],"title":"宽亚玛语","value":"KUA","key":"KUA"},{"children":[],"title":"普罗旺斯语,古(1500以前)","value":"PRO","key":"PRO"},{"children":[],"title":"富拉语","value":"FUL","key":"FUL"},{"children":[],"title":"班图诸语言(其他)","value":"BNT","key":"BNT"},{"children":[],"title":"库卢克语","value":"KRU","key":"KRU"},{"children":[],"title":"迪尤拉语","value":"DYU","key":"DYU"},{"children":[],"title":"布里亚特语","value":"BUA","key":"BUA"},{"children":[],"title":"阿尔泰诸语言(其他)","value":"TUT","key":"TUT"},{"children":[],"title":"缅甸语","value":"BUR","key":"BUR"},{"children":[],"title":"库密克语","value":"KUM","key":"KUM"},{"children":[],"title":"巴萨语","value":"BAS","key":"BAS"},{"children":[],"title":"克罗地亚语","value":"SCR","key":"SCR"},{"children":[],"title":"古叙利亚语","value":"SYR","key":"SYR"},{"children":[],"title":"索托语,北部","value":"NSO","key":"NSO"},{"children":[],"title":"国际语A","value":"INA","key":"INA"},{"children":[],"title":"德语,古高地(约750—1050)","value":"GOH","key":"GOH"},{"children":[],"title":"马来语","value":"MAY","key":"MAY"},{"children":[],"title":"瓦肖语","value":"WAS","key":"WAS"},{"children":[],"title":"绍纳语","value":"SNA","key":"SNA"},{"children":[],"title":"意大利语","value":"ITA","key":"ITA"},{"children":[],"title":"克里奥尔混合语(其他)","value":"CRP","key":"CRP"},{"children":[],"title":"基尼阿万达语","value":"KIN","key":"KIN"},{"children":[],"title":"恩德贝勒语,南部","value":"NBL","key":"NBL"},{"children":[],"title":"活拉普克语","value":"VOL","key":"VOL"},{"children":[],"title":"丁卡语","value":"DIN","key":"DIN"},{"children":[],"title":"克钦语","value":"KAC","key":"KAC"},{"children":[],"title":"米德勒语","value":"MAI","key":"MAI"},{"children":[],"title":"海达语","value":"HAI","key":"HAI"},{"children":[],"title":"苏美尔语","value":"SUX","key":"SUX"},{"children":[],"title":"阿非利堪斯语","value":"AFR","key":"AFR"},{"children":[],"title":"菲律宾诸语言(其他)","value":"PHI","key":"PHI"},{"children":[],"title":"比尼语","value":"BIN","key":"BIN"},{"children":[],"title":"罗曼诸语言(其他)","value":"ROA","key":"ROA"},{"children":[],"title":"保加利亚语","value":"BUL","key":"BUL"},{"children":[],"title":"伊乔语","value":"IJO","key":"IJO"},{"children":[],"title":"乔克托语","value":"CHO","key":"CHO"},{"children":[],"title":"雅浦语","value":"YAP","key":"YAP"},{"children":[],"title":"吉尔伯特语","value":"GIL","key":"GIL"},{"children":[],"title":"特林吉特语","value":"TLI","key":"TLI"},{"children":[],"title":"盖尔语(苏格兰)","value":"GLA","key":"GLA"},{"children":[],"title":"依努庇克语","value":"IPK","key":"IPK"},{"children":[],"title":"为应用本地语言保留的代码","value":"QAA-QTZ","key":"QAA-QTZ"},{"children":[],"title":"丹麦语","value":"DAN","key":"DAN"},{"children":[],"title":"阿拉伯语","value":"ARA","key":"ARA"},{"children":[],"title":"芳语","value":"FAN","key":"FAN"},{"children":[],"title":"库施特诸语言","value":"CUS","key":"CUS"},{"children":[],"title":"索宁克语","value":"SNK","key":"SNK"},{"children":[],"title":"多语种","value":"MUL","key":"MUL"},{"children":[],"title":"印欧诸语言","value":"INE","key":"INE"},{"children":[],"title":"阿卡德语","value":"AKK","key":"AKK"},{"children":[],"title":"西克西卡语","value":"BLA","key":"BLA"},{"children":[],"title":"沃提克语","value":"VOT","key":"VOT"},{"children":[],"title":"拉贾斯担语","value":"RAJ","key":"RAJ"},{"children":[],"title":"波斯语,古(约公元前600—400)","value":"PEO","key":"PEO"},{"children":[],"title":"夏延语","value":"CHY","key":"CHY"},{"children":[],"title":"提格里尼亚语","value":"TIR","key":"TIR"},{"children":[],"title":"哈萨克语","value":"KAZ","key":"KAZ"},{"children":[],"title":"泰米尔语","value":"TAM","key":"TAM"},{"children":[],"title":"纳瓦特尔语","value":"NAH","key":"NAH"},{"children":[],"title":"瓜拉尼语","value":"GRN","key":"GRN"},{"children":[],"title":"本巴语","value":"BEM","key":"BEM"},{"children":[],"title":"波纳佩语","value":"PON","key":"PON"},{"children":[],"title":"兰巴语","value":"LAM","key":"LAM"},{"children":[],"title":"坎巴语","value":"KAM","key":"KAM"},{"children":[],"title":"卡多语","value":"CAD","key":"CAD"},{"children":[],"title":"他加禄语","value":"TGL","key":"TGL"},{"children":[],"title":"赫雷罗语","value":"HER","key":"HER"},{"children":[],"title":"维吾尔语","value":"UIG","key":"UIG"},{"children":[],"title":"阿帕切诸语言","value":"APA","key":"APA"},{"children":[],"title":"克里奥尔混合语,","value":"CPP","key":"CPP"},{"children":[],"title":"坎纳达语","value":"KAN","key":"KAN"},{"children":[],"title":"多格里布语","value":"DGR","key":"DGR"},{"children":[],"title":"乌克兰语","value":"UKR","key":"UKR"},{"children":[],"title":"希伯来语","value":"HEB","key":"HEB"},{"children":[],"title":"楚瓦什语","value":"CHV","key":"CHV"},{"children":[],"title":"班巴拉语","value":"BAM","key":"BAM"},{"children":[],"title":"波斯语","value":"PER","key":"PER"},{"children":[],"title":"曼达语","value":"MDR","key":"MDR"},{"children":[],"title":"卢萨语","value":"LUS","key":"LUS"},{"children":[],"title":"卡努里语","value":"KAU","key":"KAU"},{"children":[],"title":"人工语言(其他)","value":"ART","key":"ART"},{"children":[],"title":"阿拉帕霍语","value":"ARP","key":"ARP"},{"children":[],"title":"泰卢固语","value":"TEL","key":"TEL"},{"children":[],"title":"拉罗汤加语","value":"RAR","key":"RAR"},{"children":[],"title":"伊努伊特语","value":"IKU","key":"IKU"},{"children":[],"title":"土耳其语,古奥斯曼(1500—1928)","value":"OTA","key":"OTA"},{"children":[],"title":"布吉语","value":"BUG","key":"BUG"},{"children":[],"title":"格列博语","value":"GRB","key":"GRB"},{"children":[],"title":"比斯拉玛语","value":"BIS","key":"BIS"},{"children":[],"title":"巴亚语","value":"GBA","key":"GBA"},{"children":[],"title":"隆达语","value":"LUN","key":"LUN"},{"children":[],"title":"克伦语","value":"KAR","key":"KAR"},{"children":[],"title":"贡德语","value":"GON","key":"GON"},{"children":[],"title":"特拉华语","value":"DEL","key":"DEL"},{"children":[],"title":"斐济语","value":"FIJ","key":"FIJ"},{"children":[],"title":"查加台语","value":"CHG","key":"CHG"},{"children":[],"title":"望加锡语","value":"MAK","key":"MAK"},{"children":[],"title":"约鲁巴语","value":"YOR","key":"YOR"},{"children":[],"title":"索马里语","value":"SOM","key":"SOM"},{"children":[],"title":"帕皮亚门托语","value":"PAP","key":"PAP"},{"children":[],"title":"马诺博诸语言","value":"MNO","key":"MNO"},{"children":[],"title":"克里语","value":"CRE","key":"CRE"},{"children":[],"title":"马加赫语","value":"MAG","key":"MAG"},{"children":[],"title":"奥托米诸语言","value":"OTO","key":"OTO"},{"children":[],"title":"中美洲印第安诸语言(其他)","value":"CAI","key":"CAI"},{"children":[],"title":"金本杜语","value":"KMB","key":"KMB"},{"children":[],"title":"埃翁多语","value":"EWO","key":"EWO"},{"children":[],"title":"澳大利亚诸语言","value":"AUS","key":"AUS"},{"children":[],"title":"芬兰语","value":"FIN","key":"FIN"},{"children":[],"title":"土耳其语","value":"TUR","key":"TUR"},{"children":[],"title":"拉帕努伊语","value":"RAP","key":"RAP"},{"children":[],"title":"老挝语","value":"LAO","key":"LAO"},{"children":[],"title":"塔马奇克语","value":"TMH","key":"TMH"},{"children":[],"title":"斯洛伐克语","value":"SLO","key":"SLO"},{"children":[],"title":"桑海语","value":"SON","key":"SON"},{"children":[],"title":"莫西语","value":"MOS","key":"MOS"},{"children":[],"title":"托克皮辛语","value":"TPI","key":"TPI"},{"children":[],"title":"马萨伊语","value":"MAS","key":"MAS"},{"children":[],"title":"法语,古(842—约1400)","value":"FRO","key":"FRO"},{"children":[],"title":"斯瓦希里语","value":"SWA","key":"SWA"},{"children":[],"title":"阿乔利语","value":"ACH","key":"ACH"},{"children":[],"title":"南美洲印第安诸语言(其他)","value":"SAI","key":"SAI"},{"children":[],"title":"巴斯克语","value":"BAQ","key":"BAQ"},{"children":[],"title":"瑙鲁语","value":"NAU","key":"NAU"},{"children":[],"title":"多格拉语","value":"DOI","key":"DOI"},{"children":[],"title":"丰语","value":"FON","key":"FON"},{"children":[],"title":"芳蒂语","value":"FAT","key":"FAT"},{"children":[],"title":"西班牙语","value":"SPA","key":"SPA"},{"children":[],"title":"汤加语(尼亚萨)","value":"TOG","key":"TOG"},{"children":[],"title":"哥伦打洛语","value":"GOR","key":"GOR"},{"children":[],"title":"宿务语","value":"CEB","key":"CEB"},{"children":[],"title":"阿弗里希利语","value":"AFH","key":"AFH"}]; //语种名称(GB/T 4880.2-2000)
+ export const RA = [{"children":[],"title":"国际职员后备人员考试","value":"91","key":"91"},{"children":[],"title":"注册公用设备工程师(给排水)执业资格考试","value":"12","key":"12"},{"children":[],"title":"中央国家机关公务员录用考试","value":"90","key":"90"},{"children":[],"title":"注册核安全工程师","value":"46","key":"46"},{"children":[],"title":"注册资产评估师执业资格考试","value":"25","key":"25"},{"children":[],"title":"房地产评估师资格考试","value":"55","key":"55"},{"children":[],"title":"国际商务师执业资格考试","value":"02","key":"02"},{"children":[],"title":"造价工程师执业资格考试","value":"23","key":"23"},{"children":[],"title":"计算机技术与软件资格考试","value":"51","key":"51"},{"children":[],"title":"外销员从业资格考试","value":"06","key":"06"},{"children":[],"title":"执业药师资格考试","value":"26","key":"26"},{"children":[],"title":"棉花质量检验师","value":"41","key":"41"},{"children":[],"title":"一级注册结构工程师执业资格考试","value":"03","key":"03"},{"children":[],"title":"二级注册建筑师执业资格考试","value":"28","key":"28"},{"children":[],"title":"土地登记代理人职业资格考试","value":"32","key":"32"},{"children":[],"title":"注册土木工程师(港口与航道)执业资格考试","value":"16","key":"16"},{"children":[],"title":"注册设备监理工程师执业资格考试","value":"35","key":"35"},{"children":[],"title":"注册电气工程师(发输变电)执业资格考试","value":"10","key":"10"},{"children":[],"title":"出版专业技术人员职业资格考试","value":"07","key":"07"},{"children":[],"title":"一级建造师执业资格考试","value":"34","key":"34"},{"children":[],"title":"环境影响评价工程师","value":"45","key":"45"},{"children":[],"title":"审计专业技术资格考试","value":"57","key":"57"},{"children":[],"title":"企业法律顾问执业资格考试","value":"30","key":"30"},{"children":[],"title":"注册咨询工程师执业资格考试","value":"31","key":"31"},{"children":[],"title":"房地产经济人资格考试","value":"54","key":"54"},{"children":[],"title":"会计专业技术资格考试","value":"53","key":"53"},{"children":[],"title":"一级注册建筑师执业资格考试","value":"27","key":"27"},{"children":[],"title":"质量专业技术人员职业资格考试","value":"05","key":"05"},{"children":[],"title":"消防专业考试","value":"82","key":"82"},{"children":[],"title":"注册安全工程师执业资格考试","value":"33","key":"33"},{"children":[],"title":"注册电气工程师(供配电)执业资格考试","value":"11","key":"11"},{"children":[],"title":"价格鉴证师执业资格考试","value":"24","key":"24"},{"children":[],"title":"注册化工工程师执业资格考试","value":"15","key":"15"},{"children":[],"title":"注册土木工程师(岩土)执业资格考试","value":"08","key":"08"},{"children":[],"title":"珠宝鉴定专业技术资格考试","value":"58","key":"58"},{"children":[],"title":"职称外语等级考试","value":"81","key":"81"},{"children":[],"title":"经济专业技术资格考试","value":"01","key":"01"},{"children":[],"title":"注册城市规划师执业资格考试","value":"29","key":"29"},{"children":[],"title":"注册税务师执业资格考试","value":"22","key":"22"},{"children":[],"title":"计算机应用能力考试","value":"92","key":"92"},{"children":[],"title":"注册公用设备工程师(动力)执业资格考试","value":"14","key":"14"},{"children":[],"title":"二级注册结构工程师执业资格考试","value":"04","key":"04"},{"children":[],"title":"监理工程师执业资格考试","value":"21","key":"21"},{"children":[],"title":"卫生专业技术资格考试","value":"52","key":"52"},{"children":[],"title":"注册公用设备工程师(暖通空调)执业资格考试","value":"13","key":"13"},{"children":[],"title":"翻译专业资格(水平)考试","value":"09","key":"09"}]; //人事考试种类(RS-KSZL-2004)
+ export const AQ = [{"children":[],"title":"系统内部荣誉称号","value":"5","key":"5"},{"children":[],"title":"部(委)级荣誉称号","value":"2","key":"2"},{"children":[],"title":"区(县、局)级荣誉称号","value":"4","key":"4"},{"children":[],"title":"省(自治区、直辖市)级荣誉称号","value":"1","key":"1"},{"children":[],"title":"国家级荣誉称号","value":"0","key":"0"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"地(市、厅、局)级荣誉称号","value":"3","key":"3"},{"children":[],"title":"基层企事业单位荣誉称号","value":"6","key":"6"},{"children":[],"title":"国外授予的荣誉称号","value":"7","key":"7"}]; //荣誉称号级别代码(ZRB66―2006/CHJZ)
+ export const A = [{"children":[],"title":"转业文职干部","value":"2","key":"2"},{"children":[],"title":"复员文职干部","value":"4","key":"4"},{"children":[],"title":"复员军官(警官)","value":"3","key":"3"},{"children":[],"title":"转业军官(警官)","value":"1","key":"1"},{"children":[],"title":"转业士官","value":"5","key":"5"},{"children":[],"title":"退伍士兵","value":"7","key":"7"},{"children":[],"title":"复员士官","value":"6","key":"6"}]; //退出现役军人(武警)标识(RB115-2006/TCXYBS)
+ export const RB = [{"children":[{"children":[],"title":"科协","value":"805","key":"805"},{"children":[],"title":"妇联","value":"803","key":"803"},{"children":[],"title":"对外友好协会","value":"812","key":"812"},{"children":[],"title":"侨联","value":"806","key":"806"},{"children":[],"title":"文联","value":"807","key":"807"},{"children":[],"title":"作家协会","value":"808","key":"808"},{"children":[],"title":"台联","value":"809","key":"809"},{"children":[],"title":"贸易促进会","value":"810","key":"810"},{"children":[],"title":"工会","value":"801","key":"801"},{"children":[],"title":"共青团","value":"802","key":"802"},{"children":[],"title":"残疾人联合会","value":"811","key":"811"},{"children":[],"title":"其他人民团体机关","value":"804","key":"804"}],"title":"社会团体系统","value":"8","key":"8"},{"children":[{"children":[],"title":"人大常委会","value":"301","key":"301"}],"title":"人大机关","value":"3","key":"3"},{"children":[{"children":[],"title":"粮食部门","value":"251","key":"251"},{"children":[],"title":"邮电部门","value":"262","key":"262"},{"children":[],"title":"统计部门","value":"214","key":"214"},{"children":[],"title":"文化部门","value":"221","key":"221"},{"children":[],"title":"林业部门","value":"274","key":"274"},{"children":[],"title":"宗教事务部门","value":"277","key":"277"},{"children":[],"title":"经济协作部门","value":"279","key":"279"},{"children":[],"title":"电子部门","value":"265","key":"265"},{"children":[],"title":"水利部门","value":"211","key":"211"},{"children":[],"title":"建设部门","value":"213","key":"213"},{"children":[],"title":"环境保护部门","value":"210","key":"210"},{"children":[],"title":"化工部门","value":"264","key":"264"},{"children":[],"title":"国防工业部门","value":"256","key":"256"},{"children":[],"title":"轻工部门","value":"269","key":"269"},{"children":[],"title":"教育(文教)部门","value":"223","key":"223"},{"children":[],"title":"发改委、计经委","value":"208","key":"208"},{"children":[],"title":"社科院","value":"281","key":"281"},{"children":[],"title":"医药监督管理部门","value":"226","key":"226"},{"children":[],"title":"档案部门","value":"278","key":"278"},{"children":[],"title":"安全部门","value":"245","key":"245"},{"children":[],"title":"人事部门","value":"203","key":"203"},{"children":[],"title":"科技部门","value":"209","key":"209"},{"children":[],"title":"供销社","value":"288","key":"288"},{"children":[],"title":"公安部门","value":"205","key":"205"},{"children":[],"title":"保险部门","value":"289","key":"289"},{"children":[],"title":"煤炭部门","value":"259","key":"259"},{"children":[],"title":"石油部门","value":"260","key":"260"},{"children":[],"title":"监狱部门","value":"243","key":"243"},{"children":[],"title":"财政部门","value":"215","key":"215"},{"children":[],"title":"经济体制改革部门","value":"242","key":"242"},{"children":[],"title":"审计部门","value":"271","key":"271"},{"children":[],"title":"技术监督部门","value":"218","key":"218"},{"children":[],"title":"国内贸易部门","value":"248","key":"248"},{"children":[],"title":"冶金部门","value":"257","key":"257"},{"children":[],"title":"对外经济贸易部门","value":"252","key":"252"},{"children":[],"title":"铁路部门","value":"267","key":"267"},{"children":[],"title":"物价部门","value":"272","key":"272"},{"children":[],"title":"民航部门","value":"266","key":"266"},{"children":[],"title":"科学院","value":"280","key":"280"},{"children":[],"title":"交通部门","value":"212","key":"212"},{"children":[],"title":"农业部门","value":"219","key":"219"},{"children":[],"title":"民政部门","value":"207","key":"207"},{"children":[],"title":"农科院","value":"282","key":"282"},{"children":[],"title":"信息产业部门","value":"229","key":"229"},{"children":[],"title":"新华社","value":"285","key":"285"},{"children":[],"title":"国资委部门","value":"291","key":"291"},{"children":[],"title":"税务部门","value":"216","key":"216"},{"children":[],"title":"电力部门","value":"263","key":"263"},{"children":[],"title":"旅游部门","value":"255","key":"255"},{"children":[],"title":"卫生部门","value":"225","key":"225"},{"children":[],"title":"侨务部门","value":"254","key":"254"},{"children":[],"title":"地矿部门","value":"261","key":"261"},{"children":[],"title":"商业部门","value":"250","key":"250"},{"children":[],"title":"外事部门","value":"253","key":"253"},{"children":[],"title":"纺织部门","value":"268","key":"268"},{"children":[],"title":"新闻、出版部门","value":"224","key":"224"},{"children":[],"title":"民族事务部门","value":"276","key":"276"},{"children":[],"title":"海关部门","value":"273","key":"273"},{"children":[],"title":"证券部门","value":"290","key":"290"},{"children":[],"title":"监察部门","value":"246","key":"246"},{"children":[],"title":"物资部门","value":"249","key":"249"},{"children":[],"title":"计划生育部门","value":"228","key":"228"},{"children":[],"title":"人民武装部","value":"247","key":"247"},{"children":[],"title":"工商行政管理部门","value":"217","key":"217"},{"children":[],"title":"土地管理部门","value":"220","key":"220"},{"children":[],"title":"劳动部门","value":"204","key":"204"},{"children":[],"title":"劳动人事部门","value":"202","key":"202"},{"children":[],"title":"工业部门","value":"270","key":"270"},{"children":[],"title":"机关事务管理部门","value":"241","key":"241"},{"children":[],"title":"知识产权部门","value":"284","key":"284"},{"children":[],"title":"政府其他部门","value":"230","key":"230"},{"children":[],"title":"劳教部门","value":"244","key":"244"},{"children":[],"title":"司法部门","value":"206","key":"206"},{"children":[],"title":"体育运动部门","value":"227","key":"227"},{"children":[],"title":"政府办公厅、室","value":"201","key":"201"},{"children":[],"title":"气象部门","value":"287","key":"287"},{"children":[],"title":"机械部门","value":"258","key":"258"},{"children":[],"title":"地震部门","value":"286","key":"286"},{"children":[],"title":"广电部门","value":"222","key":"222"},{"children":[],"title":"广播事业部门","value":"275","key":"275"},{"children":[],"title":"金融部门","value":"283","key":"283"}],"title":"政府系统","value":"2","key":"2"},{"children":[{"children":[],"title":"民盟","value":"702","key":"702"},{"children":[],"title":"台盟","value":"708","key":"708"},{"children":[],"title":"九三学社","value":"707","key":"707"},{"children":[],"title":"民革","value":"701","key":"701"},{"children":[],"title":"农工党","value":"705","key":"705"},{"children":[],"title":"致公党","value":"706","key":"706"},{"children":[],"title":"民建","value":"703","key":"703"},{"children":[],"title":"民进","value":"704","key":"704"}],"title":"民主党派机关","value":"7","key":"7"},{"children":[{"children":[],"title":"人民法院","value":"501","key":"501"}],"title":"人民法院机关","value":"5","key":"5"},{"children":[],"title":"无主管或其他","value":"9","key":"9"},{"children":[{"children":[],"title":"政协","value":"401","key":"401"}],"title":"政协机关","value":"4","key":"4"},{"children":[{"children":[],"title":"人民检察院","value":"601","key":"601"}],"title":"人民检察院机关","value":"6","key":"6"},{"children":[{"children":[],"title":"党校","value":"106","key":"106"},{"children":[],"title":"党委其它部门","value":"108","key":"108"},{"children":[],"title":"党委组织部","value":"103","key":"103"},{"children":[],"title":"党委宣传部","value":"104","key":"104"},{"children":[],"title":"党委政策研究室","value":"121","key":"121"},{"children":[],"title":"党委老干局","value":"124","key":"124"},{"children":[],"title":"党委政法委员会","value":"122","key":"122"},{"children":[],"title":"机关党委","value":"123","key":"123"},{"children":[],"title":"党的纪委机关","value":"101","key":"101"},{"children":[],"title":"党委办公厅、室","value":"102","key":"102"},{"children":[],"title":"党报、党刊","value":"107","key":"107"},{"children":[],"title":"党委统战部","value":"105","key":"105"}],"title":"党委系统","value":"1","key":"1"}]; //所属(隶属)部门(RS-SSBM-2004)
+ export const RC = [{"children":[{"children":[],"title":"村民小组","value":"81","key":"81"}],"title":"村民小组","value":"8","key":"8"},{"children":[{"children":[],"title":"旗","value":"56","key":"56"},{"children":[],"title":"州辖市","value":"52","key":"52"},{"children":[],"title":"自治县","value":"55","key":"55"},{"children":[],"title":"地辖市","value":"51","key":"51"},{"children":[],"title":"省辖市辖区","value":"54","key":"54"},{"children":[],"title":"县级市","value":"58","key":"58"},{"children":[],"title":"盟辖市","value":"53","key":"53"},{"children":[],"title":"自治旗","value":"57","key":"57"}],"title":"县(市、区、旗)","value":"5","key":"5"},{"children":[{"children":[],"title":"计划单列市","value":"25","key":"25"},{"children":[],"title":"直辖市","value":"23","key":"23"},{"children":[],"title":"自治区","value":"22","key":"22"},{"children":[],"title":"省","value":"21","key":"21"},{"children":[],"title":"副省级市","value":"24","key":"24"}],"title":"省(自治区、直辖市)","value":"2","key":"2"},{"children":[{"children":[],"title":"村民委员会","value":"73","key":"73"},{"children":[],"title":"社区委员会","value":"71","key":"71"},{"children":[],"title":"居民委员会","value":"72","key":"72"}],"title":"社区、居民、村民委员会","value":"7","key":"7"},{"children":[{"children":[],"title":"中央","value":"10","key":"10"}],"title":"中央","value":"1","key":"1"},{"children":[{"children":[],"title":"国有农(牧渔林)场","value":"93","key":"93"},{"children":[],"title":"外国组织机构","value":"92","key":"92"},{"children":[],"title":"开发区","value":"94","key":"94"},{"children":[],"title":"其他","value":"95","key":"95"},{"children":[],"title":"国际组织机构","value":"91","key":"91"}],"title":"其他","value":"9","key":"9"},{"children":[{"children":[],"title":"行署","value":"43","key":"43"},{"children":[],"title":"直辖市辖区","value":"45","key":"45"},{"children":[],"title":"自治州","value":"41","key":"41"},{"children":[],"title":"省辖市","value":"44","key":"44"},{"children":[],"title":"盟","value":"42","key":"42"},{"children":[],"title":"副省级市市辖区","value":"46","key":"46"}],"title":"地(市、州、盟)","value":"4","key":"4"},{"children":[{"children":[],"title":"镇","value":"62","key":"62"},{"children":[],"title":"街道","value":"61","key":"61"},{"children":[],"title":"乡","value":"63","key":"63"}],"title":"乡(镇、街道)","value":"6","key":"6"}]; //单位隶属关系(RS-DWLSGX-2004)
+ export const AR = [{"children":[{"children":[],"title":"严重警告","value":"41","key":"41"},{"children":[],"title":"警告","value":"40","key":"40"},{"children":[],"title":"开除团籍","value":"49","key":"49"},{"children":[],"title":"留团察看","value":"48","key":"48"},{"children":[],"title":"撤销团内职务","value":"47","key":"47"}],"title":"中国共产主义青年团团员纪律处分","value":"4","key":"4"},{"children":[{"children":[],"title":"警告","value":"30","key":"30"},{"children":[],"title":"撤职","value":"37","key":"37"},{"children":[],"title":"严重警告","value":"31","key":"31"},{"children":[],"title":"降一级","value":"34","key":"34"},{"children":[],"title":"记大过","value":"33","key":"33"},{"children":[],"title":"记过","value":"32","key":"32"},{"children":[],"title":"降职","value":"36","key":"36"},{"children":[],"title":"开除军籍","value":"39","key":"39"},{"children":[],"title":"降二级","value":"35","key":"35"}],"title":"中国人民解放军军人纪律处分","value":"3","key":"3"},{"children":[{"children":[],"title":"留用察看","value":"28","key":"28"},{"children":[],"title":"降二级","value":"25","key":"25"},{"children":[],"title":"撤职","value":"27","key":"27"},{"children":[],"title":"记过","value":"22","key":"22"},{"children":[],"title":"警告","value":"20","key":"20"},{"children":[],"title":"记大过","value":"23","key":"23"},{"children":[],"title":"降级","value":"24","key":"24"},{"children":[],"title":"开除","value":"29","key":"29"}],"title":"企业职工纪律处分","value":"2","key":"2"},{"children":[{"children":[],"title":"开除","value":"19","key":"19"},{"children":[],"title":"警告","value":"10","key":"10"},{"children":[],"title":"记大过","value":"13","key":"13"},{"children":[],"title":"撤职","value":"17","key":"17"},{"children":[],"title":"降级","value":"14","key":"14"},{"children":[],"title":"记过","value":"12","key":"12"}],"title":"公务员纪律处分","value":"1","key":"1"},{"children":[{"children":[],"title":"警告","value":"50","key":"50"},{"children":[],"title":"开除党籍","value":"59","key":"59"},{"children":[],"title":"撤销党内职务","value":"57","key":"57"},{"children":[],"title":"严重警告","value":"51","key":"51"},{"children":[],"title":"留党察看","value":"58","key":"58"}],"title":"中国共产党党员纪律处分","value":"5","key":"5"}]; //惩戒(处分)名称 (ZRB67-2006/JLCF)
+ export const RD = [{"children":[],"title":"部、省级","value":"03","key":"03"},{"children":[],"title":"中央","value":"01","key":"01"},{"children":[],"title":"乡、正科级","value":"09","key":"09"},{"children":[],"title":"司、局、地、厅级","value":"05","key":"05"},{"children":[],"title":"副县、副处级","value":"08","key":"08"},{"children":[],"title":"副乡、副科级","value":"10","key":"10"},{"children":[],"title":"县、处级","value":"07","key":"07"},{"children":[],"title":"副部、副省级","value":"04","key":"04"},{"children":[],"title":"正股级","value":"11","key":"11"},{"children":[],"title":"副股级","value":"12","key":"12"},{"children":[],"title":"副司、副局、副地、副厅级","value":"06","key":"06"}]; //单位级别(RS-DWJB-2004)
+ export const AS = [{"children":[{"children":[],"title":"孙媳妇或外孙媳妇","value":"45","key":"45"},{"children":[],"title":"外孙女","value":"44","key":"44"},{"children":[],"title":"孙女","value":"42","key":"42"},{"children":[],"title":"其他孙子、孙女或外孙子、外孙女","value":"49","key":"49"},{"children":[],"title":"曾孙女或曾外孙女","value":"48","key":"48"},{"children":[],"title":"孙子","value":"41","key":"41"},{"children":[],"title":"曾孙子或曾外孙子","value":"47","key":"47"},{"children":[],"title":"孙女婿或外孙女婿","value":"46","key":"46"},{"children":[],"title":"外孙子","value":"43","key":"43"}],"title":"孙子、孙女或外孙子、外孙女","value":"4","key":"4"},{"children":[{"children":[],"title":"夫","value":"11","key":"11"},{"children":[],"title":"妻","value":"12","key":"12"}],"title":"配偶","value":"1","key":"1"},{"children":[{"children":[],"title":"侄子","value":"93","key":"93"},{"children":[],"title":"姑母","value":"90","key":"90"},{"children":[],"title":"其他亲属","value":"97","key":"97"},{"children":[],"title":"非亲属","value":"99","key":"99"},{"children":[],"title":"保姆","value":"98","key":"98"},{"children":[],"title":"外甥女","value":"96","key":"96"},{"children":[],"title":"侄女","value":"94","key":"94"},{"children":[],"title":"表兄弟、表姐妹","value":"92","key":"92"},{"children":[],"title":"外甥","value":"95","key":"95"},{"children":[],"title":"堂兄弟、堂姐妹","value":"91","key":"91"}],"title":"其他二","value":"9","key":"9"},{"children":[{"children":[],"title":"其他子","value":"29","key":"29"},{"children":[],"title":"长子","value":"22","key":"22"},{"children":[],"title":"次子","value":"23","key":"23"},{"children":[],"title":"独生子","value":"21","key":"21"},{"children":[],"title":"四子","value":"25","key":"25"},{"children":[],"title":"五子","value":"26","key":"26"},{"children":[],"title":"养子或继子","value":"27","key":"27"},{"children":[],"title":"女婿","value":"28","key":"28"},{"children":[],"title":"三子","value":"24","key":"24"}],"title":"子","value":"2","key":"2"},{"children":[{"children":[],"title":"妹夫","value":"78","key":"78"},{"children":[],"title":"妹妹","value":"77","key":"77"},{"children":[],"title":"其他兄弟姐妹","value":"79","key":"79"},{"children":[],"title":"姐夫","value":"76","key":"76"},{"children":[],"title":"嫂","value":"72","key":"72"},{"children":[],"title":"弟媳","value":"74","key":"74"},{"children":[],"title":"兄","value":"71","key":"71"},{"children":[],"title":"姐姐","value":"75","key":"75"},{"children":[],"title":"弟","value":"73","key":"73"}],"title":"兄弟姐妹","value":"7","key":"7"},{"children":[{"children":[],"title":"户主","value":"02","key":"02"},{"children":[],"title":"本人","value":"01","key":"01"},{"children":[],"title":"小集体户主","value":"03","key":"03"}],"title":"本人或户主","value":"0","key":"0"},{"children":[{"children":[],"title":"儿媳","value":"38","key":"38"},{"children":[],"title":"五女","value":"36","key":"36"},{"children":[],"title":"独生女","value":"31","key":"31"},{"children":[],"title":"养女","value":"37","key":"37"},{"children":[],"title":"其他女儿","value":"39","key":"39"},{"children":[],"title":"长女","value":"32","key":"32"},{"children":[],"title":"二女","value":"33","key":"33"},{"children":[],"title":"四女","value":"35","key":"35"},{"children":[],"title":"三女","value":"34","key":"34"}],"title":"女","value":"3","key":"3"},{"children":[{"children":[],"title":"外祖母","value":"64","key":"64"},{"children":[],"title":"外祖父","value":"63","key":"63"},{"children":[],"title":"曾祖母","value":"67","key":"67"},{"children":[],"title":"其他祖父母或外祖父母关系","value":"69","key":"69"},{"children":[],"title":"配偶的曾祖父母","value":"68","key":"68"},{"children":[],"title":"祖母","value":"62","key":"62"},{"children":[],"title":"配偶的祖父母或外祖父母","value":"65","key":"65"},{"children":[],"title":"曾祖父","value":"66","key":"66"},{"children":[],"title":"祖父","value":"61","key":"61"}],"title":"祖父母或外祖父母","value":"6","key":"6"},{"children":[{"children":[],"title":"婶母","value":"84","key":"84"},{"children":[],"title":"舅父","value":"85","key":"85"},{"children":[],"title":"舅母","value":"86","key":"86"},{"children":[],"title":"姨母","value":"88","key":"88"},{"children":[],"title":"伯母","value":"82","key":"82"},{"children":[],"title":"伯父","value":"81","key":"81"},{"children":[],"title":"叔父","value":"83","key":"83"},{"children":[],"title":"姑父","value":"89","key":"89"},{"children":[],"title":"姨父","value":"87","key":"87"}],"title":"其他一","value":"8","key":"8"},{"children":[{"children":[],"title":"其他父母关系","value":"59","key":"59"},{"children":[],"title":"岳父","value":"55","key":"55"},{"children":[],"title":"继母或养母","value":"58","key":"58"},{"children":[],"title":"母亲","value":"52","key":"52"},{"children":[],"title":"继父或养父","value":"57","key":"57"},{"children":[],"title":"婆婆","value":"54","key":"54"},{"children":[],"title":"父亲","value":"51","key":"51"},{"children":[],"title":"岳母","value":"56","key":"56"},{"children":[],"title":"公公","value":"53","key":"53"}],"title":"父母","value":"5","key":"5"}]; //家庭关系 (GB/T 4761-1984)
+ export const RE = [{"children":[],"title":"县区国资委监管企业","value":"07","key":"07"},{"children":[],"title":"地市部门管企业","value":"06","key":"06"},{"children":[],"title":"无主管及其他企业","value":"10","key":"10"},{"children":[],"title":"乡镇及以下管理企业","value":"09","key":"09"},{"children":[],"title":"国资委监管中央企业","value":"01","key":"01"},{"children":[],"title":"国家部门管企业","value":"02","key":"02"},{"children":[],"title":"县区部门管企业","value":"08","key":"08"},{"children":[],"title":"地市国资委监管企业","value":"05","key":"05"},{"children":[],"title":"省市区国资委监管企业","value":"03","key":"03"},{"children":[],"title":"省市区部门管企业","value":"04","key":"04"}]; //企业类型(RS-QYLX-2004)
+ export const AT = [{"children":[],"title":"民盟盟员","value":"05","key":"05"},{"children":[],"title":"共青团员","value":"03","key":"03"},{"children":[],"title":"九三学社社员","value":"10","key":"10"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"农工党党员","value":"08","key":"08"},{"children":[],"title":"无党派民主人士","value":"12","key":"12"},{"children":[],"title":"群众","value":"13","key":"13"},{"children":[],"title":"民建会员","value":"06","key":"06"},{"children":[],"title":"民革会员","value":"04","key":"04"},{"children":[],"title":"民进会员","value":"07","key":"07"},{"children":[],"title":"中共预备党员","value":"02","key":"02"},{"children":[],"title":"致公党党员","value":"09","key":"09"},{"children":[],"title":"中共党员","value":"01","key":"01"},{"children":[],"title":"台盟盟员","value":"11","key":"11"}]; //政治面貌 (GB/T 4762-1984)
+ export const RF = [{"children":[],"title":"是","value":"1","key":"1"},{"children":[],"title":"否","value":"0","key":"0"}]; //标识码(RB006-2006/BSM)
+ export const AV = [{"children":[{"children":[],"title":"民革副主席","value":"0412","key":"0412"},{"children":[],"title":"民革省(自治区、直辖市)副主任委员","value":"0422","key":"0422"},{"children":[],"title":"民革地(市、州、盟)副主任委员","value":"0442","key":"0442"},{"children":[],"title":"民革省(自治区、直辖市)主任委员","value":"0421","key":"0421"},{"children":[],"title":"民革地(市、州、盟)常委","value":"0445","key":"0445"},{"children":[],"title":"民革县(市、旗、区)常委","value":"0465","key":"0465"},{"children":[],"title":"民革委员","value":"0416","key":"0416"},{"children":[],"title":"民革省(自治区、直辖市)委员","value":"0426","key":"0426"},{"children":[],"title":"民革执行局副主任","value":"0492","key":"0492"},{"children":[],"title":"民革省(自治区、直辖市)常委","value":"0425","key":"0425"},{"children":[],"title":"民革地(市、州、盟)主任委员","value":"0441","key":"0441"},{"children":[],"title":"民革中央常委","value":"0415","key":"0415"},{"children":[],"title":"民革县(市、旗、区)副主任委员","value":"0462","key":"0462"},{"children":[],"title":"民革县(市、旗、区)委员","value":"0466","key":"0466"},{"children":[],"title":"民革执行局主任","value":"0491","key":"0491"},{"children":[],"title":"民革地(市、州、盟)委员","value":"0446","key":"0446"},{"children":[],"title":"民革县(市、旗、区)主任委员","value":"0461","key":"0461"},{"children":[],"title":"民革执行局委员","value":"0496","key":"0496"}],"title":"民革","value":"04","key":"04"},{"children":[{"children":[],"title":"全国政协常委","value":"0215","key":"0215"},{"children":[],"title":"省(自治区、直辖市)政协常委","value":"0225","key":"0225"},{"children":[],"title":"市(地级)政协常委","value":"0245","key":"0245"},{"children":[],"title":"县(市、旗、区)政协委员","value":"0266","key":"0266"},{"children":[],"title":"市(地级)政协委员","value":"0246","key":"0246"},{"children":[],"title":"全国政协委员","value":"0216","key":"0216"},{"children":[],"title":"省(自治区、直辖市)政协委员","value":"0226","key":"0226"},{"children":[],"title":"县(市、旗、区)政协常委","value":"0265","key":"0265"}],"title":"政协","value":"02","key":"02"},{"children":[{"children":[],"title":"地(市、州、盟)作协理事","value":"6249","key":"6249"},{"children":[],"title":"地(市、州、盟)作协常务理事","value":"6240","key":"6240"},{"children":[],"title":"县(市、旗、区)作协会员","value":"6266","key":"6266"},{"children":[],"title":"省(自治区、直辖市)作协理事","value":"6229","key":"6229"},{"children":[],"title":"地(市、州、盟)作协主席","value":"6241","key":"6241"},{"children":[],"title":"省(自治区、直辖市)作协常务理事","value":"6220","key":"6220"},{"children":[],"title":"地(市、州、盟)作协副主席","value":"6242","key":"6242"},{"children":[],"title":"作协副主席","value":"6212","key":"6212"},{"children":[],"title":"县(市、旗、区)作协理事","value":"6269","key":"6269"},{"children":[],"title":"县(市、旗、区)作协主席","value":"6261","key":"6261"},{"children":[],"title":"县(市、旗、区)作协常务理事","value":"6260","key":"6260"},{"children":[],"title":"作协常务理事","value":"6210","key":"6210"},{"children":[],"title":"省(自治区、直辖市)作协主席","value":"6221","key":"6221"},{"children":[],"title":"省(自治区、直辖市)作协会员","value":"6226","key":"6226"},{"children":[],"title":"作协会员","value":"6216","key":"6216"},{"children":[],"title":"作协理事","value":"6219","key":"6219"},{"children":[],"title":"作协主席","value":"6211","key":"6211"},{"children":[],"title":"地(市、州、盟)作协会员","value":"6246","key":"6246"},{"children":[],"title":"县(市、旗、区)作协副主席","value":"6262","key":"6262"},{"children":[],"title":"省(自治区、直辖市)作协副主席","value":"6222","key":"6222"}],"title":"作协","value":"62","key":"62"},{"children":[{"children":[],"title":"全国总工会执委","value":"4113","key":"4113"},{"children":[],"title":"省(自治区、直辖市)工会常委","value":"4125","key":"4125"},{"children":[],"title":"全国总工会主席团委员","value":"4116","key":"4116"},{"children":[],"title":"县(市、旗、区)工会委员","value":"4166","key":"4166"},{"children":[],"title":"全国总工会候补执委","value":"4114","key":"4114"},{"children":[],"title":"市(地级市)工会委员","value":"4146","key":"4146"},{"children":[],"title":"市(地级市)工会常委","value":"4145","key":"4145"},{"children":[],"title":"省(自治区、直辖市)工会委员","value":"4126","key":"4126"}],"title":"工会","value":"41","key":"41"},{"children":[{"children":[],"title":"全国文联主席","value":"6111","key":"6111"},{"children":[],"title":"县(市、旗、区)文联副主席","value":"6162","key":"6162"},{"children":[],"title":"省(自治区、直辖市)文联委员","value":"6126","key":"6126"},{"children":[],"title":"省(自治区、直辖市)文联主席","value":"6121","key":"6121"},{"children":[],"title":"省(自治区、直辖市)文联副主席","value":"6122","key":"6122"},{"children":[],"title":"县(市、旗、区)文联委员","value":"6166","key":"6166"},{"children":[],"title":"地(市、州、盟)文联委员","value":"6146","key":"6146"},{"children":[],"title":"全国文联主席团委员","value":"6196","key":"6196"},{"children":[],"title":"全国文联委员","value":"6116","key":"6116"},{"children":[],"title":"地(市、州、盟)文联副主席","value":"6142","key":"6142"},{"children":[],"title":"县(市、旗、区)文联主席","value":"6161","key":"6161"},{"children":[],"title":"地(市、州、盟)文联主席","value":"6141","key":"6141"},{"children":[],"title":"全国文联副主席","value":"6112","key":"6112"}],"title":"文联","value":"61","key":"61"},{"children":[{"children":[],"title":"团中央候补委员","value":"4217","key":"4217"},{"children":[],"title":"省共青团(自治区、直辖市)候补委员","value":"4227","key":"4227"},{"children":[],"title":"团中央委员","value":"4216","key":"4216"},{"children":[],"title":"市共青团(地级市)候补委员","value":"4247","key":"4247"},{"children":[],"title":"县共青团(市、旗、区)委员","value":"4266","key":"4266"},{"children":[],"title":"市共青团(地级市)委员","value":"4246","key":"4246"},{"children":[],"title":"县共青团(市、旗、区)候补委员","value":"4267","key":"4267"},{"children":[],"title":"省共青团(自治区、直辖市)委员","value":"4226","key":"4226"}],"title":"共青团","value":"42","key":"42"},{"children":[{"children":[],"title":"民进执行局副主任","value":"0792","key":"0792"},{"children":[],"title":"民进地(市、州、盟)主任委员","value":"0741","key":"0741"},{"children":[],"title":"民进执行局委员","value":"0796","key":"0796"},{"children":[],"title":"民进省(自治区、直辖市)常委","value":"0725","key":"0725"},{"children":[],"title":"民进省(自治区、直辖市)副主任委员","value":"0722","key":"0722"},{"children":[],"title":"民进中央常委","value":"0715","key":"0715"},{"children":[],"title":"民进县(市、旗、区)常委","value":"0765","key":"0765"},{"children":[],"title":"民进执行局主任","value":"0791","key":"0791"},{"children":[],"title":"民进地(市、州、盟)常委","value":"0745","key":"0745"},{"children":[],"title":"民进地(市、州、盟)副主任委员","value":"0742","key":"0742"},{"children":[],"title":"民进县(市、旗、区)副主任委员","value":"0762","key":"0762"},{"children":[],"title":"民进省(自治区、直辖市)主任委员","value":"0721","key":"0721"},{"children":[],"title":"民进委员","value":"0716","key":"0716"},{"children":[],"title":"民进县(市、旗、区)委员","value":"0766","key":"0766"},{"children":[],"title":"民进省(自治区、直辖市)委员","value":"0726","key":"0726"},{"children":[],"title":"民进副主席","value":"0712","key":"0712"},{"children":[],"title":"民进地(市、旗、区)主任委员","value":"0761","key":"0761"},{"children":[],"title":"民进地(市、州、盟)委员","value":"0746","key":"0746"}],"title":"民进","value":"07","key":"07"},{"children":[{"children":[],"title":"全国人大常委","value":"0115","key":"0115"},{"children":[],"title":"县(市、旗、区)人大代表","value":"0168","key":"0168"},{"children":[],"title":"市(地级)人大代表","value":"0148","key":"0148"},{"children":[],"title":"省(自治区、直辖市)人大代表","value":"0128","key":"0128"},{"children":[],"title":"全国人大代表","value":"0118","key":"0118"},{"children":[],"title":"省(自治区、直辖市)人大常委","value":"0125","key":"0125"},{"children":[],"title":"市(地级)人大常委","value":"0145","key":"0145"},{"children":[],"title":"县(市、旗、区)人大常委","value":"0165","key":"0165"}],"title":"人大","value":"01","key":"01"},{"children":[{"children":[],"title":"全国科协委员","value":"6316","key":"6316"},{"children":[],"title":"省(自治区、直辖市)科协常委","value":"6325","key":"6325"},{"children":[],"title":"县(市、旗、区)科协委员","value":"6366","key":"6366"},{"children":[],"title":"地(市、州、盟)科协常委","value":"6345","key":"6345"},{"children":[],"title":"全国科协常委","value":"6315","key":"6315"},{"children":[],"title":"省(自治区、直辖市)科协委员","value":"6326","key":"6326"},{"children":[],"title":"县(市、旗、区)科协常委","value":"6365","key":"6365"},{"children":[],"title":"省(自治区、直辖市)科协副主席","value":"6322","key":"6322"},{"children":[],"title":"地(市、州、盟)科协委员","value":"6346","key":"6346"},{"children":[],"title":"全国科协副主席","value":"6312","key":"6312"},{"children":[],"title":"地(市、州、盟)科协副主席","value":"6342","key":"6342"},{"children":[],"title":"县(市、旗、区)科协副主席","value":"6362","key":"6362"}],"title":"科协","value":"63","key":"63"},{"children":[{"children":[],"title":"台盟地(市、州、盟)主任委员","value":"1141","key":"1141"},{"children":[],"title":"台盟中央常委","value":"1115","key":"1115"},{"children":[],"title":"台盟执行局副主任","value":"1192","key":"1192"},{"children":[],"title":"台盟县(市、旗、区)常委","value":"1165","key":"1165"},{"children":[],"title":"台盟地(市、州、盟)委员","value":"1146","key":"1146"},{"children":[],"title":"台盟委员","value":"1116","key":"1116"},{"children":[],"title":"台盟省(自治区、直辖市)主任委员","value":"1121","key":"1121"},{"children":[],"title":"台盟执行局主任","value":"1191","key":"1191"},{"children":[],"title":"台盟地(市、州、盟)常委","value":"1145","key":"1145"},{"children":[],"title":"台盟执行局委员","value":"1196","key":"1196"},{"children":[],"title":"台盟省(自治区、直辖市)副主任委员","value":"1122","key":"1122"},{"children":[],"title":"台盟地(市、州、盟)副主任委员","value":"1142","key":"1142"},{"children":[],"title":"台盟县(市、旗、区)主任委员","value":"1161","key":"1161"},{"children":[],"title":"台盟省(自治区、直辖市)常委","value":"1125","key":"1125"},{"children":[],"title":"台盟县(市、旗、区)副主任委员","value":"1162","key":"1162"},{"children":[],"title":"台盟副主席","value":"1112","key":"1112"},{"children":[],"title":"台盟省(自治区、直辖市)委员","value":"1126","key":"1126"},{"children":[],"title":"台盟县(市、旗、区)委员","value":"1166","key":"1166"}],"title":"台盟","value":"11","key":"11"},{"children":[{"children":[],"title":"致公党执行局主任","value":"0991","key":"0991"},{"children":[],"title":"致公党副主席","value":"0912","key":"0912"},{"children":[],"title":"致公党执行局副主任","value":"0992","key":"0992"},{"children":[],"title":"致公党县(市、旗、区)副主任委员","value":"0962","key":"0962"},{"children":[],"title":"致公党县(市、旗、区)主任委员","value":"0961","key":"0961"},{"children":[],"title":"致公党地(市、州、盟)委员","value":"0946","key":"0946"},{"children":[],"title":"致公党执行局委员","value":"0996","key":"0996"},{"children":[],"title":"致公党县(市、旗、区)常委","value":"0965","key":"0965"},{"children":[],"title":"致公党省(自治区、直辖市)副主任委员","value":"0922","key":"0922"},{"children":[],"title":"致公党地(市、州、盟)主任委员","value":"0941","key":"0941"},{"children":[],"title":"致公党中央委员","value":"0916","key":"0916"},{"children":[],"title":"致公党县(市、旗、区)委员","value":"0966","key":"0966"},{"children":[],"title":"致公党省(自治区、直辖市)常委","value":"0925","key":"0925"},{"children":[],"title":"致公党省(自治区、直辖市)委员","value":"0926","key":"0926"},{"children":[],"title":"致公党省(自治区、直辖市)主任委员","value":"0921","key":"0921"},{"children":[],"title":"致公党地(市、州、盟)常委","value":"0945","key":"0945"},{"children":[],"title":"致公党地(市、州、盟)副主任委员","value":"0942","key":"0942"},{"children":[],"title":"致公党中央常委","value":"0915","key":"0915"}],"title":"致工党","value":"09","key":"09"},{"children":[{"children":[],"title":"民建地(市、州、盟)主任委员","value":"0641","key":"0641"},{"children":[],"title":"民建县(市、旗、区)委员","value":"0666","key":"0666"},{"children":[],"title":"民建地(市、州、盟)副主任委员","value":"0642","key":"0642"},{"children":[],"title":"民建地(市、州、盟)常委","value":"0645","key":"0645"},{"children":[],"title":"民建委员","value":"0616","key":"0616"},{"children":[],"title":"民建县(市、旗、区)副主任委员","value":"0662","key":"0662"},{"children":[],"title":"民建副主席","value":"0612","key":"0612"},{"children":[],"title":"民建县(市、旗、区)常委","value":"0665","key":"0665"},{"children":[],"title":"民建地(市、州、盟)委员","value":"0646","key":"0646"},{"children":[],"title":"民建省(自治区、直辖市)委员","value":"0626","key":"0626"},{"children":[],"title":"民建中央常委","value":"0615","key":"0615"},{"children":[],"title":"民建县(市、旗、区)主任委员","value":"0661","key":"0661"},{"children":[],"title":"民建省(自治区、直辖市)主任委员","value":"0621","key":"0621"},{"children":[],"title":"民建执行局副主任","value":"0692","key":"0692"},{"children":[],"title":"民建省(自治区、直辖市)常委","value":"0625","key":"0625"},{"children":[],"title":"民建执行局委员","value":"0696","key":"0696"},{"children":[],"title":"民建执行局主任","value":"0691","key":"0691"},{"children":[],"title":"民建省(自治区、直辖市)副主任委员","value":"0622","key":"0622"}],"title":"民建","value":"06","key":"06"},{"children":[{"children":[],"title":"中国科学院和社会科学院学部委员","value":"6416","key":"6416"}],"title":"中国科学院、中国社会科学院","value":"64","key":"64"},{"children":[{"children":[],"title":"省(自治区、直辖市)妇联常委","value":"4325","key":"4325"},{"children":[],"title":"市(地级)妇联副主席","value":"4342","key":"4342"},{"children":[],"title":"省(自治区、直辖市)妇联执委","value":"4323","key":"4323"},{"children":[],"title":"全国妇联执委","value":"4313","key":"4313"},{"children":[],"title":"县(市、旗、区)妇联常委","value":"4365","key":"4365"},{"children":[],"title":"县(市、旗、区)妇联副主任","value":"4362","key":"4362"},{"children":[],"title":"市(地级)妇联常委","value":"4345","key":"4345"},{"children":[],"title":"市(地级)妇联执委","value":"4343","key":"4343"},{"children":[],"title":"全国妇联副主席","value":"4312","key":"4312"},{"children":[],"title":"省(自治区、直辖市)妇联副主席","value":"4322","key":"4322"},{"children":[],"title":"全国妇联常委","value":"4315","key":"4315"}],"title":"妇联","value":"43","key":"43"},{"children":[{"children":[],"title":"地(市、州、盟)侨联副主席","value":"5142","key":"5142"},{"children":[],"title":"县(市、旗、区)侨联常委","value":"5165","key":"5165"},{"children":[],"title":"县(市、旗、区)侨联副主席","value":"5162","key":"5162"},{"children":[],"title":"地(市、州、盟)侨联常委","value":"5145","key":"5145"},{"children":[],"title":"全国侨联常委","value":"5115","key":"5115"},{"children":[],"title":"省(自治区、直辖市)侨联委员","value":"5126","key":"5126"},{"children":[],"title":"地(市、州、盟)侨联委员","value":"5146","key":"5146"},{"children":[],"title":"全国侨联委员","value":"5116","key":"5116"},{"children":[],"title":"省(自治区、直辖市)侨联副主席","value":"5122","key":"5122"},{"children":[],"title":"省(自治区、直辖市)侨联常委","value":"5125","key":"5125"},{"children":[],"title":"全国侨联副主席","value":"5112","key":"5112"},{"children":[],"title":"县(市、旗、区)侨联委员","value":"5166","key":"5166"}],"title":"侨联","value":"51","key":"51"},{"children":[{"children":[],"title":"民盟地(市、州、盟)委员","value":"0546","key":"0546"},{"children":[],"title":"民盟省(自治区、直辖市)常委","value":"0525","key":"0525"},{"children":[],"title":"民盟委员","value":"0516","key":"0516"},{"children":[],"title":"民盟县(市、旗、区)副主任委员","value":"0562","key":"0562"},{"children":[],"title":"民盟县(市、旗、区)主任委员","value":"0561","key":"0561"},{"children":[],"title":"民盟省(自治区、直辖市)委员","value":"0526","key":"0526"},{"children":[],"title":"民盟县(市、旗、区)常委","value":"0565","key":"0565"},{"children":[],"title":"民盟地(市、州、盟)常委","value":"0545","key":"0545"},{"children":[],"title":"民盟副主席","value":"0512","key":"0512"},{"children":[],"title":"民盟地(市、州、盟)主任委员","value":"0541","key":"0541"},{"children":[],"title":"民盟中央常委","value":"0515","key":"0515"},{"children":[],"title":"民盟省(自治区、直辖市)主任委员","value":"0521","key":"0521"},{"children":[],"title":"民盟执行局副主任","value":"0592","key":"0592"},{"children":[],"title":"民盟省(自治区、直辖市)副主任委员","value":"0522","key":"0522"},{"children":[],"title":"民盟执行局委员","value":"0596","key":"0596"},{"children":[],"title":"民盟地(市、州、盟)副主任委员","value":"0542","key":"0542"},{"children":[],"title":"民盟县(市、旗、区)委员","value":"0566","key":"0566"},{"children":[],"title":"民盟执行局主任","value":"0591","key":"0591"}],"title":"民盟","value":"05","key":"05"},{"children":[{"children":[],"title":"农工党县(市、旗、区)委员","value":"0866","key":"0866"},{"children":[],"title":"农工党副主席","value":"0812","key":"0812"},{"children":[],"title":"农工党委员","value":"0816","key":"0816"},{"children":[],"title":"农工党省(自治区、直辖市)委员","value":"0826","key":"0826"},{"children":[],"title":"农工党中央常委","value":"0815","key":"0815"},{"children":[],"title":"农工党县(市、旗、区)主任委员","value":"0861","key":"0861"},{"children":[],"title":"农工党执行局委员","value":"0896","key":"0896"},{"children":[],"title":"农工党执行局主任","value":"0891","key":"0891"},{"children":[],"title":"农工党省(自治区、直辖市)常委","value":"0825","key":"0825"},{"children":[],"title":"农工党地(市、州、盟)委员","value":"0846","key":"0846"},{"children":[],"title":"农工党县(市、旗、区)常委","value":"0865","key":"0865"},{"children":[],"title":"农工党省(自治区、直辖市)主任委员","value":"0821","key":"0821"},{"children":[],"title":"农工党省(自治区、直辖市)副主任委员","value":"0822","key":"0822"},{"children":[],"title":"农工党县(市、旗、区)副主任委员","value":"0862","key":"0862"},{"children":[],"title":"农工党地(市、州、盟)副主任委员","value":"0842","key":"0842"},{"children":[],"title":"农工党执行局副主任","value":"0892","key":"0892"},{"children":[],"title":"农工党地(市、州、盟)主任委员","value":"0841","key":"0841"},{"children":[],"title":"农工党地(市、州、盟)常委","value":"0845","key":"0845"}],"title":"农工党","value":"08","key":"08"},{"children":[{"children":[],"title":"九三学社地(市、州、盟)委员","value":"1046","key":"1046"},{"children":[],"title":"九三学社地(市、州、盟)副主任委员","value":"1042","key":"1042"},{"children":[],"title":"九三学社省(自治区、直辖市)委员","value":"1026","key":"1026"},{"children":[],"title":"九三学社地(市、州、盟)常委","value":"1045","key":"1045"},{"children":[],"title":"九三学社省(自治区、直辖市)常委","value":"1025","key":"1025"},{"children":[],"title":"九三学社执行局主任","value":"1091","key":"1091"},{"children":[],"title":"九三学社县(市、旗、区)主任委员","value":"1061","key":"1061"},{"children":[],"title":"九三学社省(自治区、直辖市)副主任委员","value":"1022","key":"1022"},{"children":[],"title":"九三学社省(自治区、直辖市)主任委员","value":"1021","key":"1021"},{"children":[],"title":"九三学社中央常委","value":"1015","key":"1015"},{"children":[],"title":"九三学社执行局委员","value":"1096","key":"1096"},{"children":[],"title":"九三学社县(市、旗、区)委员","value":"1066","key":"1066"},{"children":[],"title":"九三学社县(市、旗、区)常委","value":"1065","key":"1065"},{"children":[],"title":"九三学社地(市、州、盟)主任委员","value":"1041","key":"1041"},{"children":[],"title":"九三学社委员","value":"1016","key":"1016"},{"children":[],"title":"九三学社副主席","value":"1012","key":"1012"},{"children":[],"title":"九三学社执行局副主任","value":"1092","key":"1092"},{"children":[],"title":"九三学社县(市、旗、区)副主任委员","value":"1062","key":"1062"}],"title":"九三学社","value":"10","key":"10"}]; //社会兼职(GB/T 12408-1990)
+ export const RH = [{"children":[],"title":"垂直管理机构","value":"51","key":"51"},{"children":[],"title":"直属特设机构","value":"12","key":"12"},{"children":[],"title":"办事机构","value":"32","key":"32"},{"children":[],"title":"直属事业单位","value":"71","key":"71"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"驻外办事处","value":"61","key":"61"},{"children":[],"title":"组成部门","value":"01","key":"01"},{"children":[],"title":"议事协调机构","value":"31","key":"31"},{"children":[],"title":"部门管理机构","value":"21","key":"21"},{"children":[],"title":"直属机构","value":"11","key":"11"},{"children":[],"title":"临时机构","value":"41","key":"41"},{"children":[],"title":"下属事业单位","value":"72","key":"72"}]; //机构类别(RS-JGLB-2004)
+ export const AW = [{"children":[{"children":[],"title":"科员:十级","value":"1110","key":"1110"},{"children":[],"title":"科员:十二级","value":"1112","key":"1112"},{"children":[],"title":"科员:九级","value":"1109","key":"1109"},{"children":[],"title":"科员:十一级","value":"1111","key":"1111"},{"children":[],"title":"科员:十四级","value":"1114","key":"1114"},{"children":[],"title":"科员:十三级","value":"1113","key":"1113"}],"title":"科员级","value":"11","key":"11"},{"children":[{"children":[],"title":"部级正职,省级正职:四级","value":"0304","key":"0304"},{"children":[],"title":"部级正职,省级正职:三级","value":"0303","key":"0303"}],"title":"部级正职,省级正职级","value":"03","key":"03"},{"children":[{"children":[],"title":"处级正职,县级正职,调研员:十级","value":"0710","key":"0710"},{"children":[],"title":"处级正职,县级正职,调研员:七级","value":"0707","key":"0707"},{"children":[],"title":"处级正职,县级正职,调研员:九级","value":"0709","key":"0709"},{"children":[],"title":"处级正职,县级正职,调研员:八级","value":"0708","key":"0708"}],"title":"处级正职,县级正职,调研员级","value":"07","key":"07"},{"children":[{"children":[],"title":"司级副级,厅级副职,助理巡视员:八级","value":"0608","key":"0608"},{"children":[],"title":"司级副级,厅级副职,助理巡视员:六级","value":"0606","key":"0606"},{"children":[],"title":"司级副级,厅级副职,助理巡视员:七级","value":"0607","key":"0607"}],"title":"司级副职,厅级副职,助理巡视员级","value":"06","key":"06"},{"children":[{"children":[],"title":"国务院总理:一级","value":"0101","key":"0101"}],"title":"国务院总理级","value":"01","key":"01"},{"children":[{"children":[],"title":"司级正职,厅级正职,巡视员:六级","value":"0506","key":"0506"},{"children":[],"title":"司级正职,厅级正职,巡视员:七级","value":"0507","key":"0507"},{"children":[],"title":"司级正职,厅级正职,巡视员:五级","value":"0505","key":"0505"}],"title":"司级正职,厅级正职,巡视员级","value":"05","key":"05"},{"children":[{"children":[],"title":"科级正职,乡级正职,主任科员:九级","value":"0909","key":"0909"},{"children":[],"title":"科级正职,乡级正职,主任科员:十级","value":"0910","key":"0910"},{"children":[],"title":"科级正职,乡级正职,主任科员:十一级","value":"0911","key":"0911"},{"children":[],"title":"科级正职,乡级正职,主任科员:十二级","value":"0912","key":"0912"}],"title":"科级正职,乡级正职,主任科员级","value":"09","key":"09"},{"children":[{"children":[],"title":"处级副职,县级副职,助理调研员:九级","value":"0809","key":"0809"},{"children":[],"title":"处级副职,县级副职,助理调研员:八级","value":"0808","key":"0808"},{"children":[],"title":"处级副职,县级副职,助理调研员:十一级","value":"0811","key":"0811"},{"children":[],"title":"处级副职,县级副职,助理调研员:十级","value":"0810","key":"0810"}],"title":"处级副职,县级副职,助理调研员级","value":"08","key":"08"},{"children":[{"children":[],"title":"国务院副总理,国务委员:二级","value":"0202","key":"0202"},{"children":[],"title":"国务院副总理,国务委员:三级","value":"0203","key":"0203"}],"title":"国务院副总理,国务委员级","value":"02","key":"02"},{"children":[{"children":[],"title":"办事员:十二级","value":"1212","key":"1212"},{"children":[],"title":"办事员:十一级","value":"1211","key":"1211"},{"children":[],"title":"办事员:十四级","value":"1214","key":"1214"},{"children":[],"title":"办事员:十五级","value":"1215","key":"1215"},{"children":[],"title":"办事员:十级","value":"1210","key":"1210"},{"children":[],"title":"办事员:十三级","value":"1213","key":"1213"}],"title":"办事员级","value":"12","key":"12"},{"children":[{"children":[],"title":"科级副职,乡级副职,副主任科员:十级","value":"1010","key":"1010"},{"children":[],"title":"科级副职,乡级副职,副主任科员:十二级","value":"1012","key":"1012"},{"children":[],"title":"科级副职,乡级副职,副主任科员:十一级","value":"1011","key":"1011"},{"children":[],"title":"科级副职,乡级副职,副主任科员:十三级","value":"1013","key":"1013"},{"children":[],"title":"科级副职,乡级副职,副主任科员:九级","value":"1009","key":"1009"}],"title":"科级副职,乡级副职,副主任科员级","value":"10","key":"10"},{"children":[{"children":[],"title":"部级副职,省级副职:五级","value":"0405","key":"0405"},{"children":[],"title":"部级副职,省级副职:四级","value":"0404","key":"0404"}],"title":"部级副职,省级副职级","value":"04","key":"04"}]; //职位分类(GB/T 14946-2002 A.6)
+ export const RI = [{"children":[],"title":"特大型","value":"1","key":"1"},{"children":[],"title":"小型","value":"4","key":"4"},{"children":[{"children":[],"title":"中型2","value":"32","key":"32"},{"children":[],"title":"中型1","value":"31","key":"31"}],"title":"中型","value":"3","key":"3"},{"children":[{"children":[],"title":"大型2","value":"22","key":"22"},{"children":[],"title":"大型1","value":"21","key":"21"}],"title":"大型","value":"2","key":"2"},{"children":[],"title":"个体","value":"9","key":"9"}]; //企业规模(RS-QYGM-2004)
+ export const AX = [{"children":[],"title":"未说明的性别","value":"9","key":"9"},{"children":[],"title":"女性","value":"2","key":"2"},{"children":[],"title":"男性","value":"1","key":"1"},{"children":[],"title":"未知的性别","value":"0","key":"0"}]; //人的性别代码 (GB/T 2261.1-2003)
+ export const RK = [{"children":[],"title":"集体相对控制(控股)","value":"4","key":"4"},{"children":[],"title":"国有相对控制(控股)","value":"2","key":"2"},{"children":[],"title":"集体绝对控制(控股)","value":"3","key":"3"},{"children":[],"title":"国有绝对控制(控股)","value":"1","key":"1"}]; //控制(控股)情况(RS-KZKGQK-2004)
+ export const AZ = [{"children":[],"title":"处分","value":"3","key":"3"},{"children":[],"title":"荣誉称号","value":"2","key":"2"},{"children":[],"title":"奖励","value":"1","key":"1"}]; //奖惩类别(GB/T 14946-2002 A.20)
+ export const RL = [{"children":[{"children":[],"title":"党委(党组)负责人","value":"202","key":"202"},{"children":[],"title":"经理人","value":"201","key":"201"}],"title":"企业负责人","value":"2","key":"2"},{"children":[],"title":"部门负责人","value":"3","key":"3"},{"children":[{"children":[],"title":"监事","value":"102","key":"102"},{"children":[],"title":"董事","value":"101","key":"101"}],"title":"出资人代表","value":"1","key":"1"},{"children":[{"children":[],"title":"其他","value":"499","key":"499"},{"children":[],"title":"财务审计","value":"405","key":"405"},{"children":[],"title":"生产管理","value":"406","key":"406"},{"children":[],"title":"法律事务","value":"408","key":"408"},{"children":[],"title":"行政管理","value":"410","key":"410"},{"children":[],"title":"科技管理","value":"407","key":"407"},{"children":[],"title":"人力资源管理","value":"402","key":"402"},{"children":[],"title":"市场营销","value":"403","key":"403"},{"children":[],"title":"质量安全环保","value":"409","key":"409"},{"children":[],"title":"规划计划","value":"401","key":"401"},{"children":[],"title":"资本运营","value":"404","key":"404"}],"title":"其他经营管理人员","value":"4","key":"4"}]; //企业管理人员岗位类别(RS-GLJYGL-2004)
+ export const RM = [{"children":[],"title":"市场化选聘","value":"3","key":"3"},{"children":[],"title":"选任","value":"2","key":"2"},{"children":[],"title":"委任和直接聘任","value":"1","key":"1"}]; //配置方式(RS-PZFS-2004)
+ export const RN = [{"children":[],"title":"企事业转入到企事业","value":"4","key":"4"},{"children":[],"title":"机关转出到机关","value":"5","key":"5"},{"children":[],"title":"企事业转出到机关","value":"7","key":"7"},{"children":[],"title":"机关转入到机关","value":"1","key":"1"},{"children":[],"title":"机关转出到企事业","value":"6","key":"6"},{"children":[],"title":"企事业转入到机关","value":"3","key":"3"},{"children":[],"title":"机关转入到企事业","value":"2","key":"2"},{"children":[],"title":"企事业转出到企事业","value":"8","key":"8"}]; //整建制划转情况(RS-ZJZHZ-2004)
+ export const RP = [{"children":[],"title":"中国化学工程总公司","value":"000000075","key":"000000075"},{"children":[],"title":"中国普天信息产业集团公司","value":"000000108","key":"000000108"},{"children":[],"title":"中国地质工程集团公司","value":"000000097","key":"000000097"},{"children":[],"title":"彩虹集团公司","value":"000000175","key":"000000175"},{"children":[],"title":"中国建筑工程总公司","value":"000000048","key":"000000048"},{"children":[],"title":"中国水电工程顾问集团公司","value":"000000155","key":"000000155"},{"children":[],"title":"武汉钢铁(集团)公司","value":"000000037","key":"000000037"},{"children":[],"title":"中国纺织物资(集团)总公司","value":"000000084","key":"000000084"},{"children":[],"title":"中国唱片总公司","value":"000000129","key":"000000129"},{"children":[],"title":"中国华电集团公司","value":"000000019","key":"000000019"},{"children":[],"title":"中国远洋运输(集团)总公司","value":"000000039","key":"000000039"},{"children":[],"title":"长江口航道建设有限公司","value":"000000171","key":"000000171"},{"children":[],"title":"中国汽车工业总公司","value":"000000066","key":"000000066"},{"children":[],"title":"中国包装总公司","value":"000000058","key":"000000058"},{"children":[],"title":"中国建筑材料科学研究院","value":"000000089","key":"000000089"},{"children":[],"title":"中国有色矿业建设集团有限公司","value":"000000090","key":"000000090"},{"children":[],"title":"中国水利电力对外公司","value":"000000113","key":"000000113"},{"children":[],"title":"中国种子集团公司","value":"000000118","key":"000000118"},{"children":[],"title":"中国卫星通信集团公司","value":"000000111","key":"000000111"},{"children":[],"title":"中国水利水电建设集团公司","value":"000000156","key":"000000156"},{"children":[],"title":"中国港湾建设(集团)总公司","value":"000000105","key":"000000105"},{"children":[],"title":"北京矿冶研究总院","value":"000000092","key":"000000092"},{"children":[],"title":"中国华星集团公司","value":"000000063","key":"000000063"},{"children":[],"title":"中国节能投资公司","value":"000000054","key":"000000054"},{"children":[],"title":"中国农业机械化科学研究院","value":"000000069","key":"000000069"},{"children":[],"title":"中国煤炭地质总局","value":"000000149","key":"000000149"},{"children":[],"title":"中国长城计算机集团公司","value":"000000110","key":"000000110"},{"children":[],"title":"中国化工建设总公司","value":"000000077","key":"000000077"},{"children":[],"title":"中国电子科技集团公司","value":"000000011","key":"000000011"},{"children":[],"title":"中国长江航运(集团)总公司","value":"000000170","key":"000000170"},{"children":[],"title":"中国粮油食品进出口(集团)有限公司","value":"000000045","key":"000000045"},{"children":[],"title":"中国北方机车车辆工业集团公司","value":"000000100","key":"000000100"},{"children":[],"title":"中国民航信息集团公司","value":"000000151","key":"000000151"},{"children":[],"title":"中国恒天集团公司","value":"000000085","key":"000000085"},{"children":[],"title":"中国寰球工程公司","value":"000000143","key":"000000143"},{"children":[],"title":"中国铁通集团有限公司","value":"000000187","key":"000000187"},{"children":[],"title":"中国林业国际合作集团公司","value":"000000130","key":"000000130"},{"children":[],"title":"中国电力投资集团公司","value":"000000021","key":"000000021"},{"children":[],"title":"中国机械装备(集团)公司","value":"000000067","key":"000000067"},{"children":[],"title":"中国生物技术集团公司","value":"000000127","key":"000000127"},{"children":[],"title":"中国出国人员服务总公司","value":"000000126","key":"000000126"},{"children":[],"title":"中国外轮理货总公司","value":"000000107","key":"000000107"},{"children":[],"title":"中国工艺品进出口总公司","value":"000000120","key":"000000120"},{"children":[],"title":"中国船舶工业集团公司","value":"000000007","key":"000000007"},{"children":[],"title":"中讯邮电咨询设计院","value":"000000182","key":"000000182"},{"children":[],"title":"中国中钢集团公司","value":"000000070","key":"000000070"},{"children":[],"title":"中国建筑科学研究院","value":"000000099","key":"000000099"},{"children":[],"title":"中机国际工程咨询设计总院","value":"000000181","key":"000000181"},{"children":[],"title":"国家电网公司","value":"000000015","key":"000000015"},{"children":[],"title":"中国寰岛(集团)公司","value":"000000169","key":"000000169"},{"children":[],"title":"中国五矿集团公司","value":"000000046","key":"000000046"},{"children":[],"title":"中国对外贸易运输(集团)总公司","value":"000000121","key":"000000121"},{"children":[],"title":"中国纺织科学研究院","value":"000000086","key":"000000086"},{"children":[],"title":"中国国旅集团公司","value":"000000133","key":"000000133"},{"children":[],"title":"中国化工供销(集团)总公司","value":"000000076","key":"000000076"},{"children":[],"title":"中国航天科技集团公司","value":"000000003","key":"000000003"},{"children":[],"title":"中国铁路通信信号集团公司","value":"000000102","key":"000000102"},{"children":[],"title":"中国旅游商贸服务总公司","value":"000000134","key":"000000134"},{"children":[],"title":"中国移动通信集团公司","value":"000000027","key":"000000027"},{"children":[],"title":"中国乐凯胶片集团公司","value":"000000164","key":"000000164"},{"children":[],"title":"中国核工业建设集团公司","value":"000000002","key":"000000002"},{"children":[],"title":"中国网络通信集团公司","value":"000000025","key":"000000025"},{"children":[],"title":"中国中化集团公司","value":"000000044","key":"000000044"},{"children":[],"title":"冶金自动化研究设计院","value":"000000073","key":"000000073"},{"children":[],"title":"中国成套设备进出口(集团)总公","value":"000000125","key":"000000125"},{"children":[],"title":"神华集团有限责任公司","value":"000000023","key":"000000023"},{"children":[],"title":"中国纺织工业设计院","value":"000000146","key":"000000146"},{"children":[],"title":"三九企业集团(深圳南方制药厂)","value":"000000185","key":"000000185"},{"children":[],"title":"中国国际工程咨询公司","value":"000000056","key":"000000056"},{"children":[],"title":"中国大唐集团公司","value":"000000018","key":"000000018"},{"children":[],"title":"哈尔滨电站设备集团公司","value":"000000033","key":"000000033"},{"children":[],"title":"香港中旅(集团)有限公司","value":"000000053","key":"000000053"},{"children":[],"title":"中国新兴(集团)总公司","value":"000000136","key":"000000136"},{"children":[],"title":"中国中煤能源集团公司","value":"000000064","key":"000000064"},{"children":[],"title":"中国农业发展(集团)总公司","value":"000000115","key":"000000115"},{"children":[],"title":"中国轻工业对外经济技术合作公司","value":"000000079","key":"000000079"},{"children":[],"title":"中国东方航空集团公司","value":"000000042","key":"000000042"},{"children":[],"title":"国家开发投资公司","value":"000000050","key":"000000050"},{"children":[],"title":"中国海运(集团)总公司","value":"000000040","key":"000000040"},{"children":[],"title":"中国工艺美术(集团)公司","value":"000000081","key":"000000081"},{"children":[],"title":"中国有色工程设计研究总院","value":"000000147","key":"000000147"},{"children":[],"title":"中国电力工程顾问集团公司","value":"000000154","key":"000000154"},{"children":[],"title":"中国进口汽车贸易中心","value":"000000059","key":"000000059"},{"children":[],"title":"中国第二重型机械集团公司","value":"000000032","key":"000000032"},{"children":[],"title":"中国第一汽车集团公司","value":"000000029","key":"000000029"},{"children":[],"title":"中国轻工业品进出口总公司","value":"000000124","key":"000000124"},{"children":[],"title":"珠海振戎公司","value":"000000139","key":"000000139"},{"children":[],"title":"中国南方航空集团公司","value":"000000043","key":"000000043"},{"children":[],"title":"中国华录集团有限公司","value":"000000173","key":"000000173"},{"children":[],"title":"上海贝尔阿尔卡特股份有限公司","value":"000000174","key":"000000174"},{"children":[],"title":"华联发展集团有限公司","value":"000000167","key":"000000167"},{"children":[],"title":"中商企业集团公司","value":"000000060","key":"000000060"},{"children":[],"title":"中国铁路物资总公司","value":"000000186","key":"000000186"},{"children":[],"title":"中国铁道建筑总公司","value":"000000104","key":"000000104"},{"children":[],"title":"邯邢冶金矿山管理局","value":"000000161","key":"000000161"},{"children":[],"title":"中国南方机车车辆工业集团公司","value":"000000101","key":"000000101"},{"children":[],"title":"天津水泥工业设计研究院","value":"000000180","key":"000000180"},{"children":[],"title":"中国电子信息产业集团公司","value":"000000028","key":"000000028"},{"children":[],"title":"中国东方电气集团公司","value":"000000034","key":"000000034"},{"children":[],"title":"中国电子工程设计院","value":"000000142","key":"000000142"},{"children":[],"title":"鞍山钢铁集团公司","value":"000000035","key":"000000035"},{"children":[],"title":"中国铝业公司","value":"000000038","key":"000000038"},{"children":[],"title":"中国海洋航空集团公司","value":"000000140","key":"000000140"},{"children":[],"title":"中国石油化工集团公司","value":"000000013","key":"000000013"},{"children":[],"title":"中国航空集团公司","value":"000000041","key":"000000041"},{"children":[],"title":"中国农垦(集团)总公司","value":"000000116","key":"000000116"},{"children":[],"title":"中国国际技术智力合作公司","value":"000000093","key":"000000093"},{"children":[],"title":"东风汽车公司","value":"000000030","key":"000000030"},{"children":[],"title":"中国房地产开发集团公司","value":"000000098","key":"000000098"},{"children":[],"title":"中国黄金集团公司","value":"000000157","key":"000000157"},{"children":[],"title":"中国通用技术(集团)控股有限责任公司","value":"000000047","key":"000000047"},{"children":[],"title":"招商局集团有限公司","value":"000000051","key":"000000051"},{"children":[],"title":"中国轻工业机械总公司","value":"000000080","key":"000000080"},{"children":[],"title":"中国轻工集团公司","value":"000000078","key":"000000078"},{"children":[],"title":"中国电信集团公司","value":"000000024","key":"000000024"},{"children":[],"title":"北京有色金属研究总院","value":"000000091","key":"000000091"},{"children":[],"title":"中国化工集团公司","value":"000000074","key":"000000074"},{"children":[],"title":"中国联合通信有限公司","value":"000000026","key":"000000026"},{"children":[],"title":"中国海诚国际工程投资总院","value":"000000145","key":"000000145"},{"children":[],"title":"中国水利投资公司","value":"000000114","key":"000000114"},{"children":[],"title":"华诚投资管理有限公司","value":"000000083","key":"000000083"},{"children":[],"title":"中国航天科工集团公司","value":"000000004","key":"000000004"},{"children":[],"title":"中国航空油料集团公司","value":"000000152","key":"000000152"},{"children":[],"title":"武汉邮电科学研究院","value":"000000176","key":"000000176"},{"children":[],"title":"中国牧工商(集团)总公司","value":"000000117","key":"000000117"},{"children":[],"title":"攀枝花钢铁(集团)公司","value":"000000160","key":"000000160"},{"children":[],"title":"中国经济技术投资担保有限公司","value":"000000096","key":"000000096"},{"children":[],"title":"中国长江三峡工程开发总公司","value":"000000022","key":"000000022"},{"children":[],"title":"华润(集团)有限公司","value":"000000052","key":"000000052"},{"children":[],"title":"中国核工业集团公司","value":"000000001","key":"000000001"},{"children":[],"title":"中国铁路工程总公司","value":"000000103","key":"000000103"},{"children":[],"title":"中国国际企业合作公司","value":"000000095","key":"000000095"},{"children":[],"title":"上海医药工业研究院","value":"000000177","key":"000000177"},{"children":[],"title":"中国航空工业第一集团公司","value":"000000005","key":"000000005"},{"children":[],"title":"中国冶金建设集团公司","value":"000000071","key":"000000071"},{"children":[],"title":"新兴铸管集团有限公司","value":"000000150","key":"000000150"},{"children":[],"title":"中国第一重型机械集团公司","value":"000000031","key":"000000031"},{"children":[],"title":"中国华能集团公司","value":"000000017","key":"000000017"},{"children":[],"title":"中国石油天然气集团公司","value":"000000012","key":"000000012"},{"children":[],"title":"中国丝绸进出口总公司","value":"000000123","key":"000000123"},{"children":[],"title":"机械科学研究院","value":"000000068","key":"000000068"},{"children":[],"title":"中国建筑材料集团公司","value":"000000088","key":"000000088"},{"children":[],"title":"中国储备棉管理总公司","value":"000000158","key":"000000158"},{"children":[],"title":"沈阳化工研究院","value":"000000165","key":"000000165"},{"children":[],"title":"华侨城集团公司","value":"000000178","key":"000000178"},{"children":[],"title":"电信科学技术研究院","value":"000000112","key":"000000112"},{"children":[],"title":"中国材料工业科工集团公司","value":"000000087","key":"000000087"},{"children":[],"title":"中国航空器材进出口集团公司","value":"000000153","key":"000000153"},{"children":[],"title":"煤炭科学研究总院","value":"000000065","key":"000000065"},{"children":[],"title":"上海船舶运输科学研究所","value":"000000172","key":"000000172"},{"children":[],"title":"中国保利集团公司","value":"000000137","key":"000000137"},{"children":[],"title":"上海宝钢集团公司","value":"000000036","key":"000000036"},{"children":[],"title":"中国土产畜产进出口总公司","value":"000000122","key":"000000122"},{"children":[],"title":"中煤国际工程设计研究总院","value":"000000144","key":"000000144"},{"children":[],"title":"中国冶金地质勘查工程总局","value":"000000148","key":"000000148"},{"children":[],"title":"中国广东核电集团有限公司","value":"000000168","key":"000000168"},{"children":[],"title":"中国航空工业第二集团公司","value":"000000006","key":"000000006"},{"children":[],"title":"中国建筑设计研究院","value":"000000141","key":"000000141"},{"children":[],"title":"中国华源集团有限公司","value":"000000166","key":"000000166"},{"children":[],"title":"中国路桥(集团)总公司","value":"000000106","key":"000000106"},{"children":[],"title":"中国国电集团公司","value":"000000020","key":"000000020"},{"children":[],"title":"中谷粮油集团公司","value":"000000057","key":"000000057"},{"children":[],"title":"中国医疗卫生器材进出口公司","value":"000000128","key":"000000128"},{"children":[],"title":"中国远东国际贸易总公司","value":"000000094","key":"000000094"},{"children":[],"title":"中国中旅(集团)公司","value":"000000135","key":"000000135"},{"children":[],"title":"中国船舶重工集团公司","value":"000000008","key":"000000008"},{"children":[],"title":"中国纺织品进出口总公司","value":"000000119","key":"000000119"},{"children":[],"title":"中国高新投资集团公司","value":"000000055","key":"000000055"},{"children":[],"title":"中国储备粮管理总公司","value":"000000049","key":"000000049"},{"children":[],"title":"中国兵器工业集团公司","value":"000000009","key":"000000009"},{"children":[],"title":"中国华孚贸易发展集团公司","value":"000000061","key":"000000061"},{"children":[],"title":"中国海洋石油总公司","value":"000000014","key":"000000014"},{"children":[],"title":"中国印刷集团公司","value":"000000159","key":"000000159"},{"children":[],"title":"西安电力机械制造公司","value":"000000183","key":"000000183"},{"children":[],"title":"钢铁研究总院","value":"000000072","key":"000000072"},{"children":[],"title":"南光(集团)有限公司","value":"000000179","key":"000000179"},{"children":[],"title":"中国福马林业机械集团有限公司","value":"000000131","key":"000000131"},{"children":[],"title":"中国葛洲坝集团公司","value":"000000184","key":"000000184"},{"children":[],"title":"中国医药集团总公司","value":"000000132","key":"000000132"},{"children":[],"title":"中国邮电器材集团公司","value":"000000109","key":"000000109"},{"children":[],"title":"中国诚通控股公司","value":"000000062","key":"000000062"},{"children":[],"title":"鲁中冶金矿业集团公司","value":"000000162","key":"000000162"},{"children":[],"title":"中国新时代控股(集团)公司","value":"000000138","key":"000000138"},{"children":[],"title":"中国兵器装备集团公司","value":"000000010","key":"000000010"},{"children":[],"title":"中国南方电网有限责任公司","value":"000000016","key":"000000016"},{"children":[],"title":"长沙矿冶研究院","value":"000000163","key":"000000163"},{"children":[],"title":"中国盐业总公司","value":"000000082","key":"000000082"}]; //国资委监管企业代码(RS-GZWJG-2004)
+ export const RQ = [{"children":[],"title":"停产企业","value":"4","key":"4"},{"children":[],"title":"经营亏损企业","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"破产倒闭企业","value":"5","key":"5"},{"children":[],"title":"盈利企业","value":"1","key":"1"},{"children":[],"title":"半停产企业","value":"3","key":"3"}]; //企业经营状况(RS-QYJYZK-2004)
+ export const RR = [{"children":[],"title":"工作站分站","value":"10","key":"10"},{"children":[],"title":"博士后科研流动站","value":"06","key":"06"},{"children":[],"title":"流动站设站单位学院(系)","value":"07","key":"07"},{"children":[],"title":"博士后管理协调委员会办公室","value":"02","key":"02"},{"children":[],"title":"试点省市","value":"03","key":"03"},{"children":[],"title":"博士后管理协调委员会","value":"01","key":"01"},{"children":[],"title":"工作站设站单位","value":"05","key":"05"},{"children":[],"title":"非设站单位","value":"09","key":"09"},{"children":[],"title":"流动站设站单位二级系","value":"08","key":"08"},{"children":[],"title":"流动站设站单位","value":"04","key":"04"},{"children":[],"title":"工作站下属机构","value":"11","key":"11"}]; //管理单位类型(RS-GLDWLX-2004)
+ export const BB = [{"children":[],"title":"国际领先水平","value":"1","key":"1"},{"children":[],"title":"国内领先水平","value":"2","key":"2"},{"children":[],"title":"国际先进水平","value":"3","key":"3"},{"children":[],"title":"省(部)先进水平","value":"5","key":"5"},{"children":[],"title":"国内先进水平","value":"4","key":"4"}]; //成果水平(GB/T 14946-2002 A.31)
+ export const RS = [{"children":[],"title":"国务院侨办","value":"18","key":"18"},{"children":[],"title":"中共中央党校","value":"25","key":"25"},{"children":[],"title":"国家体育总局","value":"15","key":"15"},{"children":[],"title":"国有资产监督管理委员会","value":"19","key":"19"},{"children":[],"title":"中国社会科学院","value":"28","key":"28"},{"children":[],"title":"卫生部","value":"23","key":"23"},{"children":[],"title":"总政治部","value":"29","key":"29"},{"children":[],"title":"文化部","value":"24","key":"24"},{"children":[],"title":"地方省市","value":"11","key":"11"},{"children":[],"title":"国家民族事务委员会","value":"14","key":"14"},{"children":[],"title":"农业部","value":"21","key":"21"},{"children":[],"title":"水利部","value":"22","key":"22"},{"children":[],"title":"国防科学技术工业委员会","value":"12","key":"12"},{"children":[],"title":"交通部","value":"20","key":"20"},{"children":[],"title":"中国建筑科学研究院","value":"26","key":"26"},{"children":[],"title":"中国科学院","value":"27","key":"27"},{"children":[],"title":"国家中医药管理局","value":"16","key":"16"},{"children":[],"title":"国家教育部","value":"13","key":"13"},{"children":[],"title":"国土资源部","value":"17","key":"17"}]; //设站单位所属管理部门(RS-SSGLBM-2004)
+ export const BC = [{"children":[],"title":"其他","value":"9","key":"9"},{"children":[{"children":[],"title":"国外投资股份有限(公司)","value":"34","key":"34"},{"children":[],"title":"外资","value":"33","key":"33"},{"children":[],"title":"中外合作","value":"32","key":"32"},{"children":[],"title":"其他国外投资","value":"39","key":"39"},{"children":[],"title":"中外合资","value":"31","key":"31"}],"title":"国外投资","value":"3","key":"3"},{"children":[{"children":[],"title":"股份合作","value":"13","key":"13"},{"children":[],"title":"私有","value":"17","key":"17"},{"children":[],"title":"其他内资","value":"19","key":"19"},{"children":[],"title":"有限责任(公司)","value":"15","key":"15"},{"children":[],"title":"联营","value":"14","key":"14"},{"children":[],"title":"国有全资","value":"11","key":"11"},{"children":[],"title":"股份有限(公司)","value":"16","key":"16"},{"children":[],"title":"集体全资","value":"12","key":"12"}],"title":"内资","value":"1","key":"1"},{"children":[{"children":[],"title":"港、澳、台投资股份有限(公司)","value":"24","key":"24"},{"children":[],"title":"港、澳、台独资","value":"23","key":"23"},{"children":[],"title":"内地和港、澳、台合资","value":"21","key":"21"},{"children":[],"title":"内地和港、澳、台合作","value":"22","key":"22"},{"children":[],"title":"其他港、澳、台投资","value":"29","key":"29"}],"title":"港、澳、台投资","value":"2","key":"2"}]; //经济类型分类与代码(GB/T 12402-2000)
+ export const RT = [{"children":[],"title":"企业法律顾问","value":"20","key":"20"},{"children":[],"title":"土地登记代理人","value":"33","key":"33"},{"children":[],"title":"注册安全工程师","value":"30","key":"30"},{"children":[],"title":"执业药师","value":"10","key":"10"},{"children":[],"title":"矿产储量评估价师","value":"22","key":"22"},{"children":[],"title":"造价工程师","value":"16","key":"16"},{"children":[],"title":"房地产估价师","value":"14","key":"14"},{"children":[{"children":[],"title":"一级建造师","value":"321","key":"321"},{"children":[],"title":"二级建造师","value":"322","key":"322"}],"title":"建造师","value":"32","key":"32"},{"children":[],"title":"拍卖师","value":"19","key":"19"},{"children":[],"title":"注册设备监理师","value":"34","key":"34"},{"children":[],"title":"矿业权评估师","value":"26","key":"26"},{"children":[],"title":"棉花质量检验师","value":"25","key":"25"},{"children":[],"title":"假肢与矫形器制作师","value":"21","key":"21"},{"children":[],"title":"计算机技术与软件专业技术资格","value":"38","key":"38"},{"children":[],"title":"翻译专业资格","value":"35","key":"35"},{"children":[],"title":"环境影响评价工程师","value":"39","key":"39"},{"children":[],"title":"注册税务师","value":"18","key":"18"},{"children":[],"title":"注册城市规划师","value":"23","key":"23"},{"children":[],"title":"质量专业技术人员职业资格","value":"37","key":"37"},{"children":[],"title":"注册核安全工程师","value":"31","key":"31"},{"children":[],"title":"珠宝玉石质量检验师","value":"17","key":"17"},{"children":[],"title":"注册咨询工程师","value":"27","key":"27"},{"children":[],"title":"注册建筑师","value":"11","key":"11"},{"children":[],"title":"国际商务专业人员","value":"29","key":"29"},{"children":[],"title":"价格鉴证师","value":"24","key":"24"},{"children":[],"title":"房地产经纪人","value":"28","key":"28"},{"children":[],"title":"注册资产评估师","value":"15","key":"15"},{"children":[{"children":[],"title":"注册结构工程师","value":"121","key":"121"},{"children":[],"title":"注册化工工程师","value":"126","key":"126"},{"children":[],"title":"注册电气工程师","value":"125","key":"125"},{"children":[],"title":"注册土木工程师(岩土专业)","value":"122","key":"122"},{"children":[],"title":"注册土木工程师(港口与航道专业)","value":"123","key":"123"},{"children":[],"title":"注册公用设备工程师","value":"124","key":"124"}],"title":"勘察设计注册工程师","value":"12","key":"12"},{"children":[],"title":"监理工程师","value":"13","key":"13"},{"children":[],"title":"出版专业技术人员职业资格","value":"36","key":"36"}]; //职(执)业资格名称(RS-ZYZG-2004)
+ export const RU = [{"children":[],"title":"事业单位法人证书","value":"2","key":"2"},{"children":[],"title":"企业法人营业执照","value":"1","key":"1"},{"children":[],"title":"社会团休(协会、基金会)法人登记证书","value":"3","key":"3"},{"children":[],"title":"民办非企业单位登记证书","value":"4","key":"4"},{"children":[],"title":"其他","value":"9","key":"9"}]; //法人登记证类型(RS-DJZLX-2005)
+ export const RV = [{"children":[],"title":"8000以上","value":"6","key":"6"},{"children":[],"title":"2000-4000","value":"4","key":"4"},{"children":[],"title":"1000-2000","value":"3","key":"3"},{"children":[],"title":"面议","value":"1","key":"1"},{"children":[],"title":"1000以下","value":"2","key":"2"},{"children":[],"title":"5000-8000","value":"5","key":"5"}]; //月薪(RS-YX-2005)
+ export const RW = [{"children":[],"title":"职务晋升","value":"4","key":"4"},{"children":[],"title":"挂职锻炼","value":"6","key":"6"},{"children":[],"title":"因其他原因职务发生变化","value":"9","key":"9"},{"children":[],"title":"职务降低","value":"5","key":"5"},{"children":[],"title":"机关外调入","value":"2","key":"2"},{"children":[],"title":"新录用人员试用期满合格","value":"1","key":"1"},{"children":[],"title":"被选举","value":"7","key":"7"},{"children":[],"title":"转换职位任职","value":"3","key":"3"}]; //任职原因(RS-RZYY-2005)
+ export const BG = [{"children":[],"title":"未婚","value":"1","key":"1"},{"children":[],"title":"未说明","value":"9","key":"9"},{"children":[{"children":[],"title":"复婚","value":"23","key":"23"},{"children":[],"title":"初婚","value":"21","key":"21"},{"children":[],"title":"再婚","value":"22","key":"22"}],"title":"已婚","value":"2","key":"2"},{"children":[],"title":"离婚","value":"4","key":"4"},{"children":[],"title":"丧偶","value":"3","key":"3"}]; //婚姻状况代码 (GB/T 2261.2-2003)
+ export const BH = [{"children":[],"title":"长期职工","value":"1","key":"1"},{"children":[],"title":"临时职工","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"}]; //用工期限(GB/T 14946-2002 A.60)
+ export const RX = [{"children":[],"title":"不聘","value":"2","key":"2"},{"children":[],"title":"解聘","value":"4","key":"4"},{"children":[],"title":"缓聘","value":"3","key":"3"},{"children":[{"children":[],"title":"低聘","value":"13","key":"13"},{"children":[],"title":"平聘","value":"12","key":"12"},{"children":[],"title":"高聘","value":"11","key":"11"}],"title":"聘任","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"}]; //聘任情况(RS-PRQK-2004)
+ export const RY = [{"children":[],"title":"特定考核","value":"2","key":"2"},{"children":[],"title":"平时考核","value":"1","key":"1"},{"children":[{"children":[],"title":"届中","value":"32","key":"32"},{"children":[],"title":"年度考核","value":"31","key":"31"},{"children":[],"title":"届末","value":"33","key":"33"}],"title":"定期考核","value":"3","key":"3"}]; //考察(考核)类别(RS-KCKHLB-2005)
+ export const BI = [{"children":[],"title":"固定职工","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"计划外用工","value":"4","key":"4"},{"children":[],"title":"临时职工","value":"3","key":"3"},{"children":[],"title":"合同制职工","value":"2","key":"2"}]; //用工形式(GB/T 14946-2002 A.52)
+ export const BJ = [{"children":[],"title":"大学英语四级","value":"22","key":"22"},{"children":[],"title":"熟练","value":"02","key":"02"},{"children":[],"title":"大学英语四、六级考试口语考试C等","value":"33","key":"33"},{"children":[],"title":"大学英语四、六级考试口语考试B等","value":"32","key":"32"},{"children":[],"title":"大学英语四、六级考试口语考试A等","value":"31","key":"31"},{"children":[],"title":"英语专业八级","value":"11","key":"11"},{"children":[],"title":"全国职称外语考试A级","value":"41","key":"41"},{"children":[],"title":"大学英语六级","value":"21","key":"21"},{"children":[],"title":"全国职称外语考试C级","value":"43","key":"43"},{"children":[],"title":"全国职称外语考试B级","value":"42","key":"42"},{"children":[],"title":"英语专业四级","value":"12","key":"12"},{"children":[],"title":"精通","value":"01","key":"01"},{"children":[],"title":"一般","value":"04","key":"04"},{"children":[],"title":"良好","value":"03","key":"03"}]; //语种熟练程度和考试等级代码(GB/T 6865-2003)
+ export const RZ = [{"children":[{"children":[],"title":"事业.高定薪级","value":"23","key":"23"}],"title":"事业工资例外","value":"2","key":"2"},{"children":[{"children":[],"title":"机关.低定档次","value":"13","key":"13"},{"children":[],"title":"机关.低定级别","value":"14","key":"14"},{"children":[],"title":"机关.高定级别","value":"12","key":"12"},{"children":[],"title":"机关.高定档次","value":"11","key":"11"}],"title":"机关工资例外","value":"1","key":"1"}]; //特殊套改处理情形
+ export const BK = [{"children":[],"title":"本市农村劳动力","value":"21","key":"21"},{"children":[],"title":"外埠农村劳动力","value":"24","key":"24"},{"children":[],"title":"外埠城镇职员","value":"13","key":"13"},{"children":[],"title":"其他","value":"27","key":"27"},{"children":[],"title":"自行缴费","value":"25","key":"25"},{"children":[],"title":"本市城镇职员","value":"11","key":"11"},{"children":[],"title":"无保险人员","value":"17","key":"17"}]; //从业状况(个人身份)(GB/T 2261.4-2003)
+ export const BM = [{"children":[],"title":"全脱产","value":"1","key":"1"},{"children":[],"title":"半脱产","value":"2","key":"2"},{"children":[],"title":"不脱产","value":"3","key":"3"}]; //学习方式(GB/T 14946-2002 A.25)
+ export const BN = [{"children":[],"title":"进入本单位","value":"1","key":"1"},{"children":[],"title":"内部变动","value":"3","key":"3"},{"children":[],"title":"离开本单位","value":"2","key":"2"}]; //进出状态(GB/T 14946-2002 A.14)
+ export const BO = [{"children":[],"title":"支援国家重点建设项目","value":"01","key":"01"},{"children":[],"title":"调整所学非所用","value":"13","key":"13"},{"children":[],"title":"人员调整安置","value":"12","key":"12"},{"children":[],"title":"落实政策","value":"31","key":"31"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"充实基层生产第一线","value":"05","key":"05"},{"children":[],"title":"加强国家重点建设部门","value":"02","key":"02"},{"children":[],"title":"加强乡镇一级党政机关","value":"04","key":"04"},{"children":[],"title":"解决夫妻分居","value":"21","key":"21"},{"children":[],"title":"机构调整","value":"11","key":"11"},{"children":[],"title":"支援边远地区","value":"03","key":"03"},{"children":[],"title":"照顾家庭困难","value":"22","key":"22"}]; //流动原因(GB/T 14946-2002 A.16)
+ export const SA = [{"children":[{"children":[],"title":"军队干休所","value":"70P","key":"70P"},{"children":[],"title":"军机关附属单位","value":"70D","key":"70D"},{"children":[],"title":"军队其他单位","value":"70Z","key":"70Z"},{"children":[],"title":"军机关","value":"70C","key":"70C"},{"children":[],"title":"卫戍区、警备区系统","value":"70H","key":"70H"},{"children":[],"title":"军队院校","value":"70J","key":"70J"},{"children":[],"title":"营以下部队","value":"70F","key":"70F"},{"children":[],"title":"军队科研机构","value":"70N","key":"70N"},{"children":[],"title":"后勤分部","value":"70L","key":"70L"},{"children":[],"title":"省军区系统","value":"70G","key":"70G"},{"children":[],"title":"师、团机关及附属单位","value":"70E","key":"70E"},{"children":[],"title":"军队仓库","value":"70M","key":"70M"},{"children":[],"title":"军队医院、疗养院","value":"70K","key":"70K"},{"children":[],"title":"兵团以上机关","value":"70A","key":"70A"},{"children":[],"title":"兵团以上机关附属单位","value":"70B","key":"70B"}],"title":"军队","value":"7","key":"7"},{"children":[{"children":[],"title":"民主党派机关","value":"17","key":"17"},{"children":[],"title":"政协机关","value":"14","key":"14"},{"children":[],"title":"政府机关","value":"12","key":"12"},{"children":[],"title":"其他机关","value":"19","key":"19"},{"children":[],"title":"检察院机关","value":"18","key":"18"},{"children":[],"title":"人民团体机关","value":"16","key":"16"},{"children":[],"title":"党委机关","value":"10","key":"10"},{"children":[],"title":"法检机关","value":"15","key":"15"},{"children":[],"title":"人大机关","value":"13","key":"13"},{"children":[],"title":"党的纪检机关","value":"11","key":"11"}],"title":"机关","value":"1","key":"1"},{"children":[{"children":[],"title":"在港(澳、台)单位","value":"93","key":"93"},{"children":[],"title":"民办非企业","value":"91","key":"91"},{"children":[],"title":"个体工商户","value":"92","key":"92"}],"title":"其他单位","value":"9","key":"9"},{"children":[{"children":[],"title":"差额拨款事业单位","value":"402","key":"402"},{"children":[],"title":"其他事业单位","value":"499","key":"499"},{"children":[],"title":"自收自支事业单位","value":"403","key":"403"},{"children":[],"title":"全额拨款事业单位","value":"401","key":"401"}],"title":"事业单位","value":"4","key":"4"},{"children":[{"children":[],"title":"专业性社会团体","value":"602","key":"602"},{"children":[],"title":"其他社会团体","value":"699","key":"699"},{"children":[],"title":"联合性社会团体","value":"604","key":"604"},{"children":[],"title":"行业性社会团体","value":"603","key":"603"},{"children":[],"title":"学术性社会团体","value":"601","key":"601"}],"title":"社会团体","value":"6","key":"6"},{"children":[{"children":[],"title":"国有联营企业","value":"512","key":"512"},{"children":[],"title":"私营独资企业","value":"531","key":"531"},{"children":[],"title":"国有与集体联营企业","value":"551","key":"551"},{"children":[],"title":"外资企业","value":"573","key":"573"},{"children":[],"title":"中外合资经营企业","value":"571","key":"571"},{"children":[],"title":"国有企业","value":"511","key":"511"},{"children":[],"title":"股份有限公司","value":"561","key":"561"},{"children":[],"title":"私营有限责任公司","value":"533","key":"533"},{"children":[],"title":"国有与私人联营企业","value":"552","key":"552"},{"children":[],"title":"中外合作经营企业","value":"572","key":"572"},{"children":[],"title":"与港、澳、台合作经营企业","value":"582","key":"582"},{"children":[],"title":"集体企业","value":"521","key":"521"},{"children":[],"title":"集体联营企业","value":"522","key":"522"},{"children":[],"title":"租凭企业","value":"591","key":"591"},{"children":[],"title":"其他企业","value":"599","key":"599"},{"children":[],"title":"港、澳、台独资企业","value":"583","key":"583"},{"children":[],"title":"集体与私人联营企业","value":"553","key":"553"},{"children":[],"title":"私人合伙企业","value":"532","key":"532"},{"children":[],"title":"国有、集体与私人联营企业","value":"554","key":"554"},{"children":[],"title":"有限责任公司","value":"562","key":"562"},{"children":[],"title":"与港、澳、台合资经营企业","value":"581","key":"581"}],"title":"企业","value":"5","key":"5"},{"children":[],"title":"宗教团体","value":"8","key":"8"}]; //单位性质类别代码(ZRB04―2006/DWXZ)
+ export const SB = [{"children":[],"title":"评审","value":"1","key":"1"},{"children":[],"title":"特批","value":"3","key":"3"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"考试","value":"2","key":"2"}]; //获得专业技术职务任职资格途径(ZB24-94/HDTJ)
+ export const BQ = [{"children":[],"title":"行政职务","value":"2","key":"2"},{"children":[],"title":"社会团体职务","value":"4","key":"4"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"党内职务","value":"1","key":"1"},{"children":[],"title":"其他党派职务","value":"3","key":"3"}]; //职务类别(GB/T 14946-2002 A.53)
+ export const SC = [{"children":[],"title":"延长任职","value":"32","key":"32"},{"children":[],"title":"同职连任","value":"31","key":"31"},{"children":[],"title":"新定职","value":"11","key":"11"},{"children":[],"title":"挂职","value":"37","key":"37"},{"children":[],"title":"提前逐级晋升","value":"22","key":"22"},{"children":[],"title":"全免现职","value":"42","key":"42"},{"children":[],"title":"降一级任职","value":"51","key":"51"},{"children":[],"title":"免去挂职","value":"43","key":"43"},{"children":[],"title":"越二级及二级以上晋升","value":"24","key":"24"},{"children":[],"title":"平级调任","value":"35","key":"35"},{"children":[],"title":"保留原级别任职","value":"36","key":"36"},{"children":[],"title":"向下兼职","value":"34","key":"34"},{"children":[],"title":"未免原职务、晋升新职务","value":"25","key":"25"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"按期逐级晋升","value":"21","key":"21"},{"children":[],"title":"降二级任职","value":"52","key":"52"},{"children":[],"title":"免减兼职","value":"41","key":"41"},{"children":[],"title":"平级增职","value":"33","key":"33"},{"children":[],"title":"降三级任职","value":"53","key":"53"},{"children":[],"title":"越一级晋升","value":"23","key":"23"}]; //职务变动类别(ZB13-94/ZWBD)
+ export const BR = [{"children":[],"title":"旅游","value":"60","key":"60"},{"children":[],"title":"引进技术和设备","value":"20","key":"20"},{"children":[],"title":"常驻国外其他组织","value":"04","key":"04"},{"children":[],"title":"参加国际性的各类比赛","value":"14","key":"14"},{"children":[],"title":"会友","value":"62","key":"62"},{"children":[],"title":"就业","value":"65","key":"65"},{"children":[],"title":"党政代表团出访","value":"10","key":"10"},{"children":[],"title":"继承财产","value":"64","key":"64"},{"children":[],"title":"随船工作","value":"37","key":"37"},{"children":[],"title":"军事代表团出访","value":"11","key":"11"},{"children":[],"title":"航空、邮电、海运、公路等国际联运业务","value":"36","key":"36"},{"children":[],"title":"经济贸易和财务方面代表团出访与洽谈","value":"12","key":"12"},{"children":[],"title":"参加交易会和展览会","value":"15","key":"15"},{"children":[],"title":"常驻国际组织及其代表机构","value":"02","key":"02"},{"children":[],"title":"学术、文艺、体育代表团和其他团体出访","value":"13","key":"13"},{"children":[],"title":"科技合作项目","value":"39","key":"39"},{"children":[],"title":"其它原因","value":"99","key":"99"},{"children":[],"title":"考察","value":"40","key":"40"},{"children":[],"title":"讲学","value":"44","key":"44"},{"children":[],"title":"实习","value":"22","key":"22"},{"children":[],"title":"公派留学","value":"45","key":"45"},{"children":[],"title":"自费公派留学","value":"47","key":"47"},{"children":[],"title":"参加各种会议","value":"42","key":"42"},{"children":[],"title":"短期派驻国外其他组织","value":"08","key":"08"},{"children":[],"title":"自费留学","value":"46","key":"46"},{"children":[],"title":"短期派驻国际组织及其他代表机构","value":"06","key":"06"},{"children":[],"title":"短期派驻国外使馆、领事馆","value":"05","key":"05"},{"children":[],"title":"领奖","value":"41","key":"41"},{"children":[],"title":"探亲","value":"61","key":"61"},{"children":[],"title":"劳务出口","value":"33","key":"33"},{"children":[],"title":"援外技术工作","value":"30","key":"30"},{"children":[],"title":"援建工作","value":"31","key":"31"},{"children":[],"title":"常驻国外使馆、领事馆","value":"01","key":"01"},{"children":[],"title":"合营工程","value":"34","key":"34"},{"children":[],"title":"监造","value":"23","key":"23"},{"children":[],"title":"援外培训工作","value":"32","key":"32"},{"children":[],"title":"特殊任务","value":"70","key":"70"},{"children":[],"title":"进修","value":"43","key":"43"},{"children":[],"title":"商务出国","value":"21","key":"21"},{"children":[],"title":"结婚","value":"63","key":"63"},{"children":[],"title":"定居","value":"66","key":"66"}]; //出国目的 (GB 10301-1988)
+ export const BS = [{"children":[],"title":"电视大学","value":"05","key":"05"},{"children":[],"title":"函授","value":"07","key":"07"},{"children":[],"title":"高等教育自学考试","value":"02","key":"02"},{"children":[],"title":"正规高等院校","value":"01","key":"01"},{"children":[],"title":"培训","value":"11","key":"11"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"研修班","value":"08","key":"08"},{"children":[],"title":"业余大学","value":"06","key":"06"},{"children":[],"title":"高等学校进修","value":"09","key":"09"},{"children":[],"title":"职工大学","value":"04","key":"04"},{"children":[],"title":"夜大学","value":"03","key":"03"}]; //学习形式(GB/T 14946-2002 A.3)
+ export const BT = [{"children":[],"title":"转任","value":"32","key":"32"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"招聘","value":"18","key":"18"},{"children":[],"title":"招收录用","value":"17","key":"17"},{"children":[],"title":"轮换","value":"33","key":"33"},{"children":[],"title":"调任","value":"31","key":"31"},{"children":[],"title":"回避","value":"36","key":"36"},{"children":[],"title":"辞职","value":"86","key":"86"},{"children":[],"title":"考试录用","value":"30","key":"30"},{"children":[],"title":"职位轮岗","value":"35","key":"35"},{"children":[],"title":"挂职锻炼","value":"34","key":"34"}]; //流动类别(GB/T 14946-2002 A.15)
+ export const BU = [{"children":[],"title":"中共","value":"01","key":"01"},{"children":[],"title":"民建","value":"06","key":"06"},{"children":[],"title":"民进","value":"07","key":"07"},{"children":[],"title":"民革","value":"04","key":"04"},{"children":[],"title":"台盟","value":"11","key":"11"},{"children":[],"title":"民盟","value":"05","key":"05"},{"children":[],"title":"致工党","value":"09","key":"09"},{"children":[],"title":"九三学社","value":"10","key":"10"},{"children":[],"title":"农工党","value":"08","key":"08"},{"children":[],"title":"无党派","value":"12","key":"12"}]; //党、派代码(GB/T 4763-1984)
+ export const SG = [{"children":[],"title":"不在任","value":"0","key":"0"},{"children":[],"title":"挂任","value":"2","key":"2"},{"children":[],"title":"在任","value":"1","key":"1"}]; //任职状态(ZB14-94/RZZT)
+ export const SH = [{"children":[],"title":"非技术干部","value":"215","key":"215"},{"children":[],"title":"技术1级","value":"201","key":"201"},{"children":[],"title":"技术13级","value":"213","key":"213"},{"children":[],"title":"技术3级","value":"203","key":"203"},{"children":[],"title":"技术8级","value":"208","key":"208"},{"children":[],"title":"技术2级","value":"202","key":"202"},{"children":[],"title":"技术7级","value":"207","key":"207"},{"children":[],"title":"技术9级","value":"209","key":"209"},{"children":[],"title":"技术4级","value":"204","key":"204"},{"children":[],"title":"技术11级","value":"211","key":"211"},{"children":[],"title":"技术6级","value":"206","key":"206"},{"children":[],"title":"技术14级","value":"214","key":"214"},{"children":[],"title":"技术10级","value":"210","key":"210"},{"children":[],"title":"技术12级","value":"212","key":"212"},{"children":[],"title":"技术5级","value":"205","key":"205"}]; //部队技术级
+ export const BX = [{"children":[],"title":"罢免","value":"3","key":"3"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"届满","value":"4","key":"4"},{"children":[],"title":"落选","value":"1","key":"1"},{"children":[],"title":"解聘","value":"2","key":"2"}]; //免职方式(GB/T 14946-2002 A.9)
+ export const SI = [{"children":[],"title":"军委领导","value":"101","key":"101"},{"children":[],"title":"副师职","value":"107","key":"107"},{"children":[],"title":"正连职","value":"112","key":"112"},{"children":[],"title":"副排职","value":"115","key":"115"},{"children":[],"title":"正排职","value":"114","key":"114"},{"children":[],"title":"副处级","value":"159","key":"159"},{"children":[],"title":"副部级","value":"155","key":"155"},{"children":[],"title":"正处级","value":"158","key":"158"},{"children":[],"title":"正局级","value":"156","key":"156"},{"children":[],"title":"副科级","value":"161","key":"161"},{"children":[],"title":"正部级","value":"154","key":"154"},{"children":[],"title":"正师职","value":"106","key":"106"},{"children":[],"title":"大区副职","value":"103","key":"103"},{"children":[],"title":"办事员","value":"164","key":"164"},{"children":[],"title":"正团职","value":"108","key":"108"},{"children":[],"title":"正军职","value":"104","key":"104"},{"children":[],"title":"正营职","value":"110","key":"110"},{"children":[],"title":"副军职","value":"105","key":"105"},{"children":[],"title":"正科级","value":"160","key":"160"},{"children":[],"title":"副团职","value":"109","key":"109"},{"children":[],"title":"一级科员","value":"162","key":"162"},{"children":[],"title":"大区正职","value":"102","key":"102"},{"children":[],"title":"副营职","value":"111","key":"111"},{"children":[],"title":"副局级","value":"157","key":"157"},{"children":[],"title":"二级科员","value":"163","key":"163"},{"children":[],"title":"副连职","value":"113","key":"113"}]; //部队职务等级
+ export const SJ = [{"children":[],"title":"原昆明军区","value":"1","key":"1"},{"children":[],"title":"公安现役部队","value":"U","key":"U"},{"children":[],"title":"国防大学","value":"S","key":"S"},{"children":[],"title":"沈阳军区","value":"J","key":"J"},{"children":[],"title":"总参谋部","value":"B","key":"B"},{"children":[],"title":"国防科大","value":"T","key":"T"},{"children":[],"title":"原武汉军区","value":"2","key":"2"},{"children":[],"title":"南京军区","value":"N","key":"N"},{"children":[],"title":"军事科学院","value":"R","key":"R"},{"children":[],"title":"总装备部","value":"E","key":"E"},{"children":[],"title":"原福州军区","value":"3","key":"3"},{"children":[],"title":"广州军区","value":"P","key":"P"},{"children":[],"title":"成都军区","value":"Q","key":"Q"},{"children":[],"title":"总政治部","value":"C","key":"C"},{"children":[],"title":"第二炮兵","value":"H","key":"H"},{"children":[],"title":"空军","value":"G","key":"G"},{"children":[],"title":"军委办公厅","value":"A","key":"A"},{"children":[],"title":"济南军区","value":"M","key":"M"},{"children":[],"title":"海军","value":"F","key":"F"},{"children":[],"title":"兰州军区","value":"L","key":"L"},{"children":[],"title":"其他","value":"4","key":"4"},{"children":[],"title":"总后勤部","value":"D","key":"D"},{"children":[],"title":"武警部队","value":"W","key":"W"},{"children":[],"title":"北京军区","value":"K","key":"K"}]; //原大单位名称
+ export const SK = [{"children":[],"title":"一级上将","value":"11","key":"11"},{"children":[],"title":"上尉","value":"31","key":"31"},{"children":[],"title":"中将","value":"13","key":"13"},{"children":[],"title":"上将","value":"12","key":"12"},{"children":[],"title":"上校","value":"22","key":"22"},{"children":[],"title":"7级","value":"57","key":"57"},{"children":[],"title":"5级","value":"55","key":"55"},{"children":[],"title":"0级","value":"59","key":"59"},{"children":[],"title":"大校","value":"21","key":"21"},{"children":[],"title":"大尉","value":"62","key":"62"},{"children":[],"title":"准尉","value":"61","key":"61"},{"children":[],"title":"1级","value":"51","key":"51"},{"children":[],"title":"中校","value":"23","key":"23"},{"children":[],"title":"特级","value":"50","key":"50"},{"children":[],"title":"2级","value":"52","key":"52"},{"children":[],"title":"6级","value":"56","key":"56"},{"children":[],"title":"3级","value":"53","key":"53"},{"children":[],"title":"少尉","value":"33","key":"33"},{"children":[],"title":"少校","value":"24","key":"24"},{"children":[],"title":"少将","value":"14","key":"14"},{"children":[],"title":"4级","value":"54","key":"54"},{"children":[],"title":"8级","value":"58","key":"58"},{"children":[],"title":"中尉","value":"32","key":"32"}]; //军衔、文职级
+ export const BZ = [{"children":[],"title":"高级技师","value":"5","key":"5"},{"children":[],"title":"中级技术工人","value":"2","key":"2"},{"children":[],"title":"高级技术工人","value":"3","key":"3"},{"children":[],"title":"学徒工","value":"9","key":"9"},{"children":[],"title":"技师","value":"4","key":"4"},{"children":[],"title":"技术员","value":"0","key":"0"},{"children":[],"title":"初级技术工人","value":"1","key":"1"}]; //工人技术等级职务(GB/T 14946-94)
+ export const SL = [{"children":[{"children":[],"title":"科技","value":"1801","key":"1801"}],"title":"科研类","value":"18","key":"18"},{"children":[{"children":[],"title":"技术防范","value":"1311","key":"1311"},{"children":[],"title":"训犬","value":"1306","key":"1306"},{"children":[],"title":"技侦","value":"1301","key":"1301"},{"children":[],"title":"痕检","value":"1308","key":"1308"},{"children":[],"title":"预审","value":"1305","key":"1305"},{"children":[],"title":"法医","value":"1307","key":"1307"},{"children":[],"title":"犯罪信息","value":"1310","key":"1310"},{"children":[],"title":"经侦","value":"1303","key":"1303"},{"children":[],"title":"物证","value":"1309","key":"1309"},{"children":[],"title":"刑侦","value":"1302","key":"1302"},{"children":[],"title":"缉毒","value":"1304","key":"1304"}],"title":"侦查类","value":"13","key":"13"},{"children":[{"children":[],"title":"文秘","value":"0306","key":"0306"},{"children":[],"title":"调研","value":"0302","key":"0302"},{"children":[],"title":"信访","value":"0305","key":"0305"},{"children":[],"title":"统计","value":"0303","key":"0303"},{"children":[],"title":"保密","value":"0308","key":"0308"},{"children":[],"title":"档案","value":"0304","key":"0304"},{"children":[],"title":"保卫","value":"0309","key":"0309"},{"children":[],"title":"史志","value":"0307","key":"0307"},{"children":[],"title":"信息指挥","value":"0301","key":"0301"}],"title":"综合类","value":"03","key":"03"},{"children":[{"children":[],"title":"幼教","value":"9001","key":"9001"},{"children":[],"title":"其他","value":"9009","key":"9009"}],"title":"附属类","value":"90","key":"90"},{"children":[{"children":[],"title":"强制戒毒","value":"1007","key":"1007"},{"children":[],"title":"治安管理","value":"1001","key":"1001"},{"children":[],"title":"治安拘留","value":"1005","key":"1005"},{"children":[],"title":"治安","value":"1002","key":"1002"},{"children":[],"title":"防暴","value":"1003","key":"1003"},{"children":[],"title":"收容教育","value":"1006","key":"1006"},{"children":[],"title":"巡警","value":"1004","key":"1004"}],"title":"治安","value":"10","key":"10"},{"children":[{"children":[],"title":"离退管理","value":"0207","key":"0207"},{"children":[],"title":"培训","value":"0204","key":"0204"},{"children":[],"title":"人事","value":"0201","key":"0201"},{"children":[],"title":"报刊","value":"0206","key":"0206"},{"children":[],"title":"工会","value":"0208","key":"0208"},{"children":[],"title":"宣传","value":"0203","key":"0203"},{"children":[],"title":"文体","value":"0205","key":"0205"},{"children":[],"title":"组织","value":"0202","key":"0202"}],"title":"政工类","value":"02","key":"02"},{"children":[{"children":[],"title":"法规","value":"0601","key":"0601"}],"title":"法制类","value":"06","key":"06"},{"children":[{"children":[],"title":"纪检","value":"0501","key":"0501"},{"children":[],"title":"监察","value":"0502","key":"0502"}],"title":"纪检类","value":"05","key":"05"},{"children":[{"children":[],"title":"出入境、外国人管理","value":"0902","key":"0902"},{"children":[],"title":"专职翻译","value":"0903","key":"0903"},{"children":[],"title":"外事","value":"0901","key":"0901"}],"title":"外事类","value":"09","key":"09"},{"children":[{"children":[],"title":"车辆管理","value":"1202","key":"1202"},{"children":[],"title":"交通管理","value":"1201","key":"1201"}],"title":"交通类","value":"12","key":"12"},{"children":[],"title":"警卫","value":"19","key":"19"},{"children":[],"title":"消防","value":"20","key":"20"},{"children":[{"children":[],"title":"看守","value":"1402","key":"1402"},{"children":[],"title":"监所管理","value":"1401","key":"1401"}],"title":"监管类","value":"14","key":"14"},{"children":[{"children":[],"title":"户政管理","value":"1101","key":"1101"},{"children":[],"title":"身份证制作","value":"1103","key":"1103"},{"children":[],"title":"户籍","value":"1102","key":"1102"}],"title":"户政类","value":"11","key":"11"},{"children":[],"title":"边防","value":"21","key":"21"},{"children":[{"children":[],"title":"文保","value":"0803","key":"0803"},{"children":[],"title":"经保","value":"0802","key":"0802"},{"children":[],"title":"政保","value":"0801","key":"0801"}],"title":"经文保类","value":"08","key":"08"},{"children":[{"children":[],"title":"膳食","value":"0405","key":"0405"},{"children":[],"title":"被装","value":"0404","key":"0404"},{"children":[],"title":"医务","value":"0406","key":"0406"},{"children":[],"title":"基建","value":"0402","key":"0402"},{"children":[],"title":"专职驾驶员","value":"0408","key":"0408"},{"children":[],"title":"装备","value":"0403","key":"0403"},{"children":[],"title":"财会","value":"0401","key":"0401"},{"children":[],"title":"工勤人员","value":"0407","key":"0407"}],"title":"后勤类","value":"04","key":"04"},{"children":[{"children":[],"title":"计算机安全监察","value":"1501","key":"1501"}],"title":"计算机安全监察类","value":"15","key":"15"},{"children":[{"children":[],"title":"审计","value":"0701","key":"0701"}],"title":"审计类","value":"07","key":"07"},{"children":[{"children":[],"title":"教学","value":"1702","key":"1702"},{"children":[],"title":"教学管理","value":"1701","key":"1701"}],"title":"公安院校类","value":"17","key":"17"},{"children":[],"title":"单位领导","value":"01","key":"01"},{"children":[{"children":[],"title":"有线通信","value":"1601","key":"1601"},{"children":[],"title":"计算机","value":"1604","key":"1604"},{"children":[],"title":"无线通信","value":"1602","key":"1602"},{"children":[],"title":"机要通信","value":"1603","key":"1603"}],"title":"通信","value":"16","key":"16"}]; //部队岗位类别
+ export const SM = [{"children":[{"children":[],"title":"大将","value":"12002","key":"12002"},{"children":[],"title":"上尉","value":"14202","key":"14202"},{"children":[],"title":"学员衔","value":"18802","key":"18802"},{"children":[],"title":"中尉","value":"14302","key":"14302"},{"children":[],"title":"军衔未授衔","value":"19902","key":"19902"},{"children":[],"title":"中校","value":"13302","key":"13302"},{"children":[],"title":"少尉","value":"14402","key":"14402"},{"children":[],"title":"三级士官","value":"15222","key":"15222"},{"children":[],"title":"中将","value":"12302","key":"12302"},{"children":[],"title":"二级士官","value":"15232","key":"15232"},{"children":[],"title":"一级士官","value":"15242","key":"15242"},{"children":[],"title":"中华人民共和国元帅","value":"11102","key":"11102"},{"children":[],"title":"六级士官","value":"15210","key":"15210"},{"children":[],"title":"五级士官","value":"15211","key":"15211"},{"children":[],"title":"上等兵","value":"17102","key":"17102"},{"children":[],"title":"准尉","value":"14502","key":"14502"},{"children":[],"title":"四级士官","value":"15212","key":"15212"},{"children":[],"title":"少将","value":"12402","key":"12402"},{"children":[],"title":"上校","value":"13202","key":"13202"},{"children":[],"title":"少校","value":"13402","key":"13402"},{"children":[],"title":"一级上将","value":"12102","key":"12102"},{"children":[],"title":"列兵","value":"17202","key":"17202"},{"children":[],"title":"大尉","value":"14102","key":"14102"},{"children":[],"title":"上将","value":"12202","key":"12202"},{"children":[],"title":"大校","value":"13102","key":"13102"},{"children":[],"title":"中华人民共和国大元帅","value":"11002","key":"11002"}],"title":"军衔","value":"1","key":"1"},{"children":[{"children":[],"title":"级警司","value":"23012","key":"23012"},{"children":[],"title":"一级警督","value":"22012","key":"22012"},{"children":[],"title":"三级警监","value":"21032","key":"21032"},{"children":[],"title":"一级警监(技术)","value":"26012","key":"26012"},{"children":[],"title":"三级警督(技术)","value":"27032","key":"27032"},{"children":[],"title":"二级警监","value":"21022","key":"21022"},{"children":[],"title":"一级警员","value":"24012","key":"24012"},{"children":[],"title":"二级警司(技术)","value":"28022","key":"28022"},{"children":[],"title":"未授衔","value":"29992","key":"29992"},{"children":[],"title":"二级警监(技术)","value":"26022","key":"26022"},{"children":[],"title":"三级警司","value":"23032","key":"23032"},{"children":[],"title":"三级警督","value":"22032","key":"22032"},{"children":[],"title":"一级警监","value":"21012","key":"21012"},{"children":[],"title":"二级警司","value":"23022","key":"23022"},{"children":[],"title":"-级警督(技术)","value":"27012","key":"27012"},{"children":[],"title":"-级警司(技术)","value":"28012","key":"28012"},{"children":[],"title":"二级警员(技术)","value":"29022","key":"29022"},{"children":[],"title":"二级警督(技术)","value":"27022","key":"27022"},{"children":[],"title":"三级警监(技术)","value":"26032","key":"26032"},{"children":[],"title":"二级警员","value":"24022","key":"24022"},{"children":[],"title":"一级警员(技术)","value":"29012","key":"29012"},{"children":[],"title":"二级警督","value":"22022","key":"22022"},{"children":[],"title":"三级警司(技术)","value":"28032","key":"28032"},{"children":[],"title":"副总警监","value":"20122","key":"20122"},{"children":[],"title":"总警监","value":"20112","key":"20112"}],"title":"警衔","value":"2","key":"2"}]; //部队衔称
+ export const SN = [{"children":[{"children":[],"title":"看守所","value":"F002","key":"F002"},{"children":[],"title":"安康医院","value":"F006","key":"F006"},{"children":[],"title":"收容教育所","value":"F004","key":"F004"},{"children":[],"title":"监所管理","value":"F001","key":"F001"},{"children":[],"title":"治安拘留所","value":"F003","key":"F003"},{"children":[],"title":"强制戒毒所","value":"F005","key":"F005"}],"title":"监所管理","value":"F0","key":"F0"},{"children":[],"title":"反法轮功","value":"R0","key":"R0"},{"children":[{"children":[],"title":"宣传","value":"3004","key":"3004"},{"children":[],"title":"训练","value":"3005","key":"3005"},{"children":[],"title":"机关党委","value":"3007","key":"3007"},{"children":[],"title":"离退休管理","value":"3006","key":"3006"},{"children":[],"title":"干部","value":"3001","key":"3001"},{"children":[],"title":"组织","value":"3002","key":"3002"},{"children":[],"title":"人事","value":"3003","key":"3003"}],"title":"政工","value":"30","key":"30"},{"children":[{"children":[],"title":"统计","value":"2004","key":"2004"},{"children":[],"title":"保卫","value":"2007","key":"2007"},{"children":[],"title":"文秘","value":"2003","key":"2003"},{"children":[],"title":"信访","value":"2008","key":"2008"},{"children":[],"title":"机要","value":"2002","key":"2002"},{"children":[],"title":"调研","value":"2001","key":"2001"},{"children":[],"title":"信息指挥","value":"2009","key":"2009"},{"children":[],"title":"保密","value":"2006","key":"2006"},{"children":[],"title":"档案","value":"2005","key":"2005"},{"children":[],"title":"其他","value":"2099","key":"2099"}],"title":"综合","value":"20","key":"20"},{"children":[],"title":"机关附属单位","value":"Z001","key":"Z001"},{"children":[],"title":"公安院校","value":"M0","key":"M0"},{"children":[],"title":"公安医院","value":"N0","key":"N0"},{"children":[{"children":[],"title":"机要通信","value":"9003","key":"9003"},{"children":[],"title":"计算机管理","value":"9004","key":"9004"},{"children":[],"title":"无线通信","value":"9002","key":"9002"},{"children":[],"title":"有线通信","value":"9001","key":"9001"}],"title":"信息通信","value":"90","key":"90"},{"children":[],"title":"反恐局","value":"U0","key":"U0"},{"children":[{"children":[],"title":"出入境管理","value":"7001","key":"7001"},{"children":[],"title":"边检站","value":"7002","key":"7002"}],"title":"出入境管理","value":"70","key":"70"},{"children":[{"children":[],"title":"经济犯罪侦察","value":"I001","key":"I001"}],"title":"经济犯罪侦察","value":"I0","key":"I0"},{"children":[{"children":[],"title":"经保","value":"C001","key":"C001"},{"children":[],"title":"文保","value":"C002","key":"C002"}],"title":"经文保","value":"C0","key":"C0"},{"children":[],"title":"消防","value":"P0","key":"P0"},{"children":[],"title":"边防","value":"Q0","key":"Q0"},{"children":[{"children":[],"title":"水上派出所","value":"L003","key":"L003"},{"children":[],"title":"治安派出所","value":"L002","key":"L002"},{"children":[],"title":"户籍派出所","value":"L001","key":"L001"},{"children":[],"title":"综合派出所","value":"L004","key":"L004"}],"title":"派出所","value":"L0","key":"L0"},{"children":[{"children":[],"title":"网络管理","value":"8001","key":"8001"},{"children":[],"title":"网络临察","value":"8002","key":"8002"}],"title":"信息网络管理","value":"80","key":"80"},{"children":[{"children":[],"title":"禁毒管理","value":"J001","key":"J001"},{"children":[],"title":"缉毒队","value":"J002","key":"J002"}],"title":"禁毒","value":"J0","key":"J0"},{"children":[{"children":[],"title":"外国人管理","value":"6001","key":"6001"}],"title":"外事","value":"60","key":"60"},{"children":[{"children":[],"title":"国内安全保卫","value":"B001","key":"B001"}],"title":"国内安全保卫","value":"B0","key":"B0"},{"children":[{"children":[],"title":"户政管理","value":"E001","key":"E001"},{"children":[],"title":"身份证制作","value":"E002","key":"E002"}],"title":"户政","value":"E0","key":"E0"},{"children":[{"children":[],"title":"行动技术","value":"H001","key":"H001"}],"title":"技术侦察","value":"H0","key":"H0"},{"children":[{"children":[],"title":"巡逻","value":"D005","key":"D005"},{"children":[],"title":"治安检查站","value":"D003","key":"D003"},{"children":[],"title":"治安队","value":"D002","key":"D002"},{"children":[],"title":"治安管理","value":"D001","key":"D001"},{"children":[],"title":"水上管理","value":"D006","key":"D006"},{"children":[],"title":"防暴","value":"D004","key":"D004"}],"title":"治安","value":"D0","key":"D0"},{"children":[{"children":[],"title":"刑事侦察管理","value":"G001","key":"G001"},{"children":[],"title":"刑警队","value":"G004","key":"G004"},{"children":[],"title":"预审","value":"G002","key":"G002"},{"children":[],"title":"刑事技术","value":"G003","key":"G003"},{"children":[],"title":"警犬技术","value":"G005","key":"G005"}],"title":"刑事侦察","value":"G0","key":"G0"},{"children":[{"children":[],"title":"被装","value":"4004","key":"4004"},{"children":[],"title":"医务","value":"4006","key":"4006"},{"children":[],"title":"膳食","value":"4005","key":"4005"},{"children":[],"title":"基建","value":"4002","key":"4002"},{"children":[],"title":"财会","value":"4001","key":"4001"},{"children":[],"title":"装备","value":"4003","key":"4003"}],"title":"后勤","value":"40","key":"40"},{"children":[],"title":"警卫","value":"O0","key":"O0"},{"children":[{"children":[],"title":"纪检","value":"1001","key":"1001"},{"children":[],"title":"审计","value":"1003","key":"1003"},{"children":[],"title":"监察","value":"1002","key":"1002"},{"children":[],"title":"督察","value":"1004","key":"1004"}],"title":"纪检监察","value":"10","key":"10"},{"children":[{"children":[],"title":"法制","value":"5001","key":"5001"}],"title":"法制","value":"50","key":"50"},{"children":[],"title":"其它","value":"Z0","key":"Z0"},{"children":[{"children":[],"title":"科技管理","value":"A001","key":"A001"},{"children":[],"title":"科研","value":"A002","key":"A002"}],"title":"科研","value":"A0","key":"A0"},{"children":[{"children":[],"title":"交通队","value":"K003","key":"K003"},{"children":[],"title":"车辆管理","value":"K002","key":"K002"},{"children":[],"title":"交通管理","value":"K001","key":"K001"}],"title":"交通","value":"K0","key":"K0"}]; //部队职能类别
+ export const SO = [{"children":[{"children":[],"title":"一级科员","value":"6282","key":"6282"},{"children":[],"title":"正处级","value":"6262","key":"6262"},{"children":[],"title":"二级科员","value":"6284","key":"6284"},{"children":[],"title":"副科级","value":"6274","key":"6274"},{"children":[],"title":"办事员","value":"6292","key":"6292"},{"children":[],"title":"正科级","value":"6272","key":"6272"},{"children":[],"title":"副局级","value":"6254","key":"6254"},{"children":[],"title":"副处级","value":"6264","key":"6264"},{"children":[],"title":"正局级","value":"6252","key":"6252"}],"title":"非专业技术文职干部职务级别","value":"62","key":"62"},{"children":[],"title":"军队干部职别","value":"60","key":"60"},{"children":[{"children":[],"title":"高级专业技术职务(教授级)","value":"4011","key":"4011"},{"children":[],"title":"中级专业技术职务","value":"4023","key":"4023"},{"children":[],"title":"高级专业技术职务","value":"4012","key":"4012"},{"children":[],"title":"初级专业技术职务","value":"4035","key":"4035"},{"children":[],"title":"未定级的专业技术人员","value":"4049","key":"4049"},{"children":[],"title":"初级专业技术职务(助教级)","value":"4034","key":"4034"},{"children":[],"title":"初级专业技术职务(小教三级)","value":"4036","key":"4036"}],"title":"技术人员级别","value":"40","key":"40"},{"children":[{"children":[],"title":"副团职","value":"6163","key":"6163"},{"children":[],"title":"正连职","value":"6181","key":"6181"},{"children":[],"title":"正师职","value":"6151","key":"6151"},{"children":[],"title":"准兵团级","value":"6135","key":"6135"},{"children":[],"title":"正军职","value":"6141","key":"6141"},{"children":[],"title":"准师级","value":"6155","key":"6155"},{"children":[],"title":"副军职","value":"6143","key":"6143"},{"children":[],"title":"正兵团职","value":"6131","key":"6131"},{"children":[],"title":"副营职","value":"6173","key":"6173"},{"children":[],"title":"副大军区职","value":"6123","key":"6123"},{"children":[],"title":"副兵团职","value":"6133","key":"6133"},{"children":[],"title":"正排职","value":"6191","key":"6191"},{"children":[],"title":"正团职(副旅职)","value":"6161","key":"6161"},{"children":[],"title":"正营职","value":"6171","key":"6171"},{"children":[],"title":"军委主席职","value":"6101","key":"6101"},{"children":[],"title":"正大军区职","value":"6121","key":"6121"},{"children":[],"title":"军委委员职","value":"6106","key":"6106"},{"children":[],"title":"军委副秘书长","value":"6104","key":"6104"},{"children":[],"title":"军委常委","value":"6105","key":"6105"},{"children":[],"title":"军委秘书长","value":"6103","key":"6103"},{"children":[],"title":"军委副主席职","value":"6102","key":"6102"},{"children":[],"title":"准军级","value":"6145","key":"6145"},{"children":[],"title":"副师职(正旅职)","value":"6153","key":"6153"},{"children":[],"title":"副连职","value":"6183","key":"6183"},{"children":[],"title":"准团级","value":"6165","key":"6165"}],"title":"军事、政治、后勤军官职别","value":"61","key":"61"},{"children":[{"children":[],"title":"技术十五级","value":"630F","key":"630F"},{"children":[],"title":"技术五级","value":"6305","key":"6305"},{"children":[],"title":"技术三级","value":"6303","key":"6303"},{"children":[],"title":"技术十三级","value":"630D","key":"630D"},{"children":[],"title":"技术十四级","value":"630E","key":"630E"},{"children":[],"title":"技术二级","value":"6302","key":"6302"},{"children":[],"title":"技术一级","value":"6301","key":"6301"},{"children":[],"title":"技术六级","value":"6306","key":"6306"},{"children":[],"title":"技术七级","value":"6307","key":"6307"},{"children":[],"title":"技术十二级","value":"630C","key":"630C"},{"children":[],"title":"技术四级","value":"6304","key":"6304"},{"children":[],"title":"技术十一级","value":"630B","key":"630B"},{"children":[],"title":"未定级的军队专业技术干部","value":"630G","key":"630G"},{"children":[],"title":"技术九级","value":"6309","key":"6309"},{"children":[],"title":"技术八级","value":"6308","key":"6308"},{"children":[],"title":"技术十级","value":"630A","key":"630A"}],"title":"专业技术军官和专业技术文职干部","value":"63","key":"63"}]; //部队职务级别
+ export const CA = [{"children":[],"title":"重新入党","value":"02","key":"02"},{"children":[],"title":"自动脱党","value":"31","key":"31"},{"children":[],"title":"延期转正","value":"11","key":"11"},{"children":[],"title":"未予登记","value":"21","key":"21"},{"children":[],"title":"暂缓登记","value":"22","key":"22"},{"children":[],"title":"入团转党","value":"01","key":"01"},{"children":[],"title":"开除党籍","value":"34","key":"34"},{"children":[],"title":"取消预备党员资格","value":"33","key":"33"},{"children":[],"title":"除名","value":"32","key":"32"},{"children":[],"title":"其他","value":"99","key":"99"}]; //政治面貌异常类别(GB/T 14946-2002 A.17)
+ export const _33 = [{"children":[],"title":"合同终止","value":"03","key":"03"},{"children":[],"title":"待签","value":"01","key":"01"},{"children":[],"title":"合同解除","value":"04","key":"04"},{"children":[],"title":"已签","value":"02","key":"02"}]; //合同状态
+ export const _34 = [{"children":[],"title":"有固定期限","value":"1","key":"1"},{"children":[],"title":"无固定期限","value":"2","key":"2"},{"children":[],"title":"已任务为限","value":"3","key":"3"}]; //合同类型
+ export const CE = [{"children":[],"title":"学历教育","value":"1","key":"1"},{"children":[],"title":"非学历教育","value":"2","key":"2"}]; //教育培训性质(GB/T 14946-2002 A.24)
+ export const _35 = [{"children":[],"title":"续签","value":"3","key":"3"},{"children":[],"title":"变更","value":"2","key":"2"},{"children":[],"title":"新签","value":"1","key":"1"}]; //签订方式
+ export const CH = [{"children":[],"title":"国家出资","value":"1","key":"1"},{"children":[],"title":"外方资助","value":"3","key":"3"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"单位出资","value":"2","key":"2"},{"children":[],"title":"自费","value":"4","key":"4"}]; //经费来源(GB/T 14946-2002 A.28)
+ export const CI = [{"children":[],"title":"国家攻关项目","value":"01","key":"01"},{"children":[],"title":"国家重点基金项目","value":"03","key":"03"},{"children":[],"title":"国家级科技成果重点推广计划项目","value":"07","key":"07"},{"children":[],"title":"国家火炬计划项目","value":"05","key":"05"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"国家星火计划项目","value":"06","key":"06"},{"children":[],"title":"省部级科技成果重点推广计划项目","value":"12","key":"12"},{"children":[],"title":"省部级重点项目","value":"11","key":"11"},{"children":[],"title":"国家重大基础研究项目","value":"02","key":"02"},{"children":[],"title":"地市级重点项目","value":"22","key":"22"},{"children":[],"title":"国家八六三计划项目","value":"04","key":"04"},{"children":[],"title":"国际合作研究项目","value":"31","key":"31"}]; //科技项目类别(GB/T 14946-2002 A.29)
+ export const CK = [{"children":[],"title":"正常晋档","value":"01","key":"01"},{"children":[],"title":"定级工资","value":"14","key":"14"},{"children":[],"title":"调动工作","value":"24","key":"24"},{"children":[],"title":"工资套改","value":"21","key":"21"},{"children":[],"title":"落实政策","value":"41","key":"41"},{"children":[],"title":"滚动晋级","value":"05","key":"05"},{"children":[],"title":"工资改革","value":"31","key":"31"},{"children":[],"title":"正常晋级并晋档","value":"07","key":"07"},{"children":[],"title":"调整工资区","value":"33","key":"33"},{"children":[],"title":"见习、临时工资","value":"13","key":"13"},{"children":[],"title":"职务变动","value":"11","key":"11"},{"children":[],"title":"考工升级","value":"15","key":"15"},{"children":[],"title":"职称工资兑现","value":"12","key":"12"},{"children":[],"title":"处分降级","value":"04","key":"04"},{"children":[],"title":"滚动晋级并晋档","value":"06","key":"06"},{"children":[],"title":"离退休","value":"42","key":"42"},{"children":[],"title":"工资集体转制","value":"22","key":"22"},{"children":[],"title":"正常晋级","value":"02","key":"02"},{"children":[],"title":"奖励升级","value":"03","key":"03"},{"children":[],"title":"日常工资计算","value":"99","key":"99"},{"children":[],"title":"军人转业复退","value":"23","key":"23"},{"children":[],"title":"提高工资标准","value":"32","key":"32"}]; //工资变动原因(GB/T 14946-2002 A.32)
+ export const CM = [{"children":[],"title":"大校","value":"24","key":"24"},{"children":[],"title":"中尉","value":"12","key":"12"},{"children":[],"title":"少校","value":"21","key":"21"},{"children":[],"title":"上校","value":"23","key":"23"},{"children":[],"title":"一级上将","value":"34","key":"34"},{"children":[],"title":"上将","value":"33","key":"33"},{"children":[],"title":"少将","value":"31","key":"31"},{"children":[],"title":"中校","value":"22","key":"22"},{"children":[],"title":"上尉","value":"13","key":"13"},{"children":[],"title":"中将","value":"32","key":"32"},{"children":[],"title":"少尉","value":"11","key":"11"}]; //军衔(GB/T 14946-2002 A.35)
+ export const CO = [{"children":[],"title":"正本、副本","value":"6","key":"6"},{"children":[],"title":"副本、缩微胶片","value":"8","key":"8"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"正本","value":"2","key":"2"},{"children":[],"title":"副本","value":"3","key":"3"},{"children":[],"title":"正本、缩微胶片","value":"7","key":"7"},{"children":[],"title":"缩微胶片","value":"4","key":"4"},{"children":[],"title":"正本、副本、缩微胶片","value":"5","key":"5"},{"children":[],"title":"无档案","value":"1","key":"1"}]; //人事档案版本类型(GB/T 14946-2002 A.36)
+ export const V1 = [{"children":[],"title":"电子","value":"02","key":"02"},{"children":[],"title":"科技","value":"01","key":"01"},{"children":[],"title":"外单位代扣缴","value":"04","key":"04"},{"children":[],"title":"外省市缴纳","value":"03","key":"03"}]; //单位标
+ export const VA = [{"children":[{"children":[],"title":"工人岗位","value":"22","key":"22"},{"children":[],"title":"干部岗位","value":"21","key":"21"}],"title":"事业单位工作岗位","value":"2","key":"2"},{"children":[{"children":[],"title":"生产服务岗位","value":"33","key":"33"},{"children":[],"title":"经营管理岗位","value":"31","key":"31"},{"children":[],"title":"专业技术岗位","value":"32","key":"32"}],"title":"企业工作岗位","value":"3","key":"3"},{"children":[{"children":[],"title":"行政岗位","value":"11","key":"11"},{"children":[],"title":"其他岗位","value":"12","key":"12"}],"title":"机关工作岗位","value":"1","key":"1"}]; //岗位分类代码
+ export const FL = [{"children":[],"title":"查阅","value":"4","key":"4"},{"children":[],"title":"回件","value":"5","key":"5"},{"children":[],"title":"归档","value":"6","key":"6"},{"children":[],"title":"汇总","value":"3","key":"3"},{"children":[],"title":"申请","value":"2","key":"2"},{"children":[],"title":"审批","value":"7","key":"7"},{"children":[],"title":"起草","value":"1","key":"1"}]; //工作流节点类型
+ export const X0 = [{"children":[],"title":"副经理","value":"4","key":"4"},{"children":[],"title":"副总经理","value":"2","key":"2"},{"children":[],"title":"主管","value":"5","key":"5"},{"children":[],"title":"普通员工","value":"7","key":"7"},{"children":[],"title":"总经理","value":"1","key":"1"},{"children":[],"title":"试用期","value":"8","key":"8"},{"children":[],"title":"经理","value":"3","key":"3"},{"children":[],"title":"大项目经理","value":"6","key":"6"}]; //职务
+ export const X1 = [{"children":[],"title":"退休","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"死亡","value":"5","key":"5"},{"children":[],"title":"辞退","value":"3","key":"3"},{"children":[],"title":"调出","value":"6","key":"6"},{"children":[],"title":"辞去公职","value":"2","key":"2"},{"children":[],"title":"开除","value":"4","key":"4"}]; //公务员减少方式(RB104-2006/GWYJS)
+ export const X2 = [{"children":[],"title":"延长试用期","value":"3","key":"3"},{"children":[],"title":"取消录(聘)用","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"予以任职","value":"1","key":"1"}]; //考试录用人员试用结果(RB008-2006/SYJG)
+ export const X3 = [{"children":[],"title":"提前退休","value":"3","key":"3"},{"children":[],"title":"离休","value":"1","key":"1"},{"children":[],"title":"退休","value":"2","key":"2"}]; //离退类别(RB112-2006/LTLB)
+ export const X4 = [{"children":[],"title":"销售费用","value":"3","key":"3"},{"children":[],"title":"管理费用","value":"1","key":"1"},{"children":[],"title":"研发费用","value":"2","key":"2"}]; //离退类别(RB112-2006/LTLB)
+ export const X5 = [{"children":[],"title":"公开选拔","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"竞争上岗","value":"1","key":"1"}]; //任职形式(RB114-2006/RZXS)
+ export const X6 = [{"children":[{"children":[],"title":"县处级正职","value":"0131","key":"0131"},{"children":[],"title":"厅局级正职","value":"0121","key":"0121"},{"children":[],"title":"乡科级副职","value":"0142","key":"0142"},{"children":[],"title":"办事员","value":"0160","key":"0160"},{"children":[],"title":"国家级副职","value":"0102","key":"0102"},{"children":[],"title":"未定职公务员","value":"0199","key":"0199"},{"children":[],"title":"县处级副职","value":"0132","key":"0132"},{"children":[],"title":"省部级正职","value":"0111","key":"0111"},{"children":[],"title":"乡科级正职","value":"0141","key":"0141"},{"children":[],"title":"省部级副职","value":"0112","key":"0112"},{"children":[],"title":"科员","value":"0150","key":"0150"},{"children":[],"title":"厅局级副职","value":"0122","key":"0122"},{"children":[],"title":"国家级正职","value":"0101","key":"0101"}],"title":"公务员领导职务和综合管理类非领导职务层次","value":"0","key":"0"}]; //职务层次代码(ZRB09―2006/ZWJB)
+ export const X8 = [{"children":[],"title":"按副地厅司局级管理","value":"4","key":"4"},{"children":[],"title":"按副乡科级管理","value":"8","key":"8"},{"children":[],"title":"按正省部级管理","value":"1","key":"1"},{"children":[],"title":"未按上述级别管理","value":"9","key":"9"},{"children":[],"title":"按正乡科级管理","value":"7","key":"7"},{"children":[],"title":"按正地厅司局级管理","value":"3","key":"3"},{"children":[],"title":"按正县处级管理","value":"5","key":"5"},{"children":[],"title":"按副县处级管理","value":"6","key":"6"},{"children":[],"title":"按副省部级管理","value":"2","key":"2"}]; //职务层次管理(RB010-2006/ZWCCGL)
+ export const X9 = [{"children":[],"title":"副经理或主管","value":"3","key":"3"},{"children":[],"title":"经理","value":"2","key":"2"},{"children":[],"title":"总经理或副总","value":"1","key":"1"},{"children":[],"title":"普通员工","value":"4","key":"4"}]; //岗位级别
+ export const XA = [{"children":[{"children":[],"title":"引咎辞职","value":"53","key":"53"},{"children":[],"title":"因公辞职","value":"51","key":"51"},{"children":[],"title":"自愿辞职","value":"52","key":"52"},{"children":[],"title":"责令辞职","value":"54","key":"54"},{"children":[],"title":"其他原因辞职","value":"5Z","key":"5Z"}],"title":"辞职","value":"5","key":"5"},{"children":[{"children":[],"title":"因判刑撤销职务","value":"34","key":"34"},{"children":[],"title":"因出国不归撤职","value":"31","key":"31"},{"children":[],"title":"因受处分撤职","value":"32","key":"32"},{"children":[],"title":"其他原因撤职","value":"3Z","key":"3Z"},{"children":[],"title":"因故罢免","value":"33","key":"33"}],"title":"撤职类","value":"3","key":"3"},{"children":[{"children":[],"title":"因离职学习免职","value":"22","key":"22"},{"children":[],"title":"其他因故免职","value":"2Z","key":"2Z"},{"children":[],"title":"因调出免职","value":"23","key":"23"},{"children":[],"title":"因病免职","value":"21","key":"21"}],"title":"因故免职类","value":"2","key":"2"},{"children":[{"children":[],"title":"其他原因降职","value":"4Z","key":"4Z"},{"children":[],"title":"因工作需要降职","value":"42","key":"42"},{"children":[],"title":"因故停职","value":"41","key":"41"},{"children":[],"title":"因受处分降职","value":"43","key":"43"},{"children":[],"title":"考核不称职降职","value":"44","key":"44"}],"title":"降职","value":"4","key":"4"},{"children":[{"children":[],"title":"其他自然免职","value":"1Z","key":"1Z"},{"children":[],"title":"去世","value":"1A","key":"1A"},{"children":[],"title":"退休免职","value":"13","key":"13"},{"children":[],"title":"单位撤销免职","value":"16","key":"16"},{"children":[],"title":"离休免职","value":"12","key":"12"},{"children":[],"title":"届满免职","value":"15","key":"15"},{"children":[],"title":"单位变更免职","value":"17","key":"17"},{"children":[],"title":"到龄免职","value":"14","key":"14"},{"children":[],"title":"任新职免原职","value":"11","key":"11"},{"children":[],"title":"牺牲","value":"1B","key":"1B"},{"children":[],"title":"挂职终止","value":"18","key":"18"}],"title":"自然免职类","value":"1","key":"1"}]; //免职原因类别代码(ZRB16―2006/MZYY)
+ export const XB = [{"children":[],"title":"担任县(市)委书记、县(市)长和乡(镇)党委书记、乡(镇)长任职满5年并考核合格","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"累计5年定期考核为称职以上等次","value":"1","key":"1"},{"children":[],"title":"职务晋升","value":"3","key":"3"}]; //晋级原因(RB105-2006/JIJYY)XB
+ export const XC = [{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"受撤职处分","value":"1","key":"1"},{"children":[],"title":"降职","value":"3","key":"3"},{"children":[],"title":"受降级处分","value":"2","key":"2"}]; //降级原因(RB106-2006/JAJYY)
+ export const XD = [{"children":[],"title":"24个月","value":"4","key":"4"},{"children":[],"title":"18个月","value":"3","key":"3"},{"children":[],"title":"6个月","value":"1","key":"1"},{"children":[],"title":"12个月","value":"2","key":"2"}]; //延长晋级时间(RB107-2006/YCJJSJ)
+ export const XE = [{"children":[],"title":"各级检察机关人员","value":"6","key":"6"},{"children":[],"title":"中国共产党各级机关人员","value":"1","key":"1"},{"children":[],"title":"各民主党派和工商联的各级机关人员","value":"7","key":"7"},{"children":[],"title":"中国人民政治协商会议各级委员会机关人员","value":"4","key":"4"},{"children":[],"title":"各级审判机关人员","value":"5","key":"5"},{"children":[],"title":"各级人民代表大会及其常务委员会机关人员","value":"2","key":"2"},{"children":[],"title":"各级行政机关人员","value":"3","key":"3"}]; //列入公务员法实施范围管理类别标识(RB117-2006/SSGLLB)
+ export const XF = [{"children":[],"title":"任职回避","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"地域回避","value":"2","key":"2"},{"children":[],"title":"公务回避","value":"3","key":"3"}]; //回避类别(RB108-2006/HBLB)
+ export const XG = [{"children":[{"children":[],"title":"从留学回国人员中聘用","value":"37","key":"37"},{"children":[],"title":"聘用应届高校大专生","value":"33","key":"33"},{"children":[],"title":"聘用应届高校本科生","value":"32","key":"32"},{"children":[],"title":"从其他人员中聘用","value":"39","key":"39"},{"children":[],"title":"从事业单位管理及专业技术人员中聘用","value":"35","key":"35"},{"children":[],"title":"从国有企业管理及专业技术人员中聘用","value":"36","key":"36"},{"children":[],"title":"聘用应届高校研究生","value":"31","key":"31"},{"children":[],"title":"聘用应届中专(中技)毕业生","value":"34","key":"34"}],"title":"企事业单位聘用","value":"3","key":"3"},{"children":[{"children":[],"title":"军转干部安置","value":"94","key":"94"},{"children":[],"title":"机关整建制转入","value":"91","key":"91"},{"children":[],"title":"从其他人员中进入","value":"99","key":"99"},{"children":[],"title":"事业单位整建制转入","value":"92","key":"92"},{"children":[],"title":"复员军人安置","value":"95","key":"95"},{"children":[],"title":"国有企业整建制转入","value":"93","key":"93"}],"title":"转入及其他增加","value":"9","key":"9"},{"children":[{"children":[],"title":"从国有企业调任(入)","value":"13","key":"13"},{"children":[],"title":"从其他单位调入","value":"19","key":"19"},{"children":[],"title":"从其他机关调入","value":"11","key":"11"},{"children":[],"title":"从事业单位调任(入)","value":"12","key":"12"}],"title":"调入","value":"1","key":"1"},{"children":[{"children":[],"title":"从留学回国人员中录用","value":"28","key":"28"},{"children":[],"title":"录用应届高校大专生","value":"24","key":"24"},{"children":[],"title":"录用应届中专(中技)毕业生","value":"25","key":"25"},{"children":[],"title":"录用应届高校博士研究生","value":"21","key":"21"},{"children":[],"title":"从事业单位管理及专业技术人员中录用","value":"26","key":"26"},{"children":[],"title":"从其他人员中录用","value":"29","key":"29"},{"children":[],"title":"录用应届高校硕士研究生","value":"22","key":"22"},{"children":[],"title":"从国有企业管理及专业技术人员中录用","value":"27","key":"27"},{"children":[],"title":"录用应届高校本科生","value":"23","key":"23"}],"title":"录用","value":"2","key":"2"}]; //单位增员类别代码(ZRB77―2006/ZYLB)
+ export const XH = [{"children":[{"children":[],"title":"辞职","value":"92","key":"92"},{"children":[],"title":"辞聘","value":"96","key":"96"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"开除","value":"94","key":"94"},{"children":[],"title":"退休","value":"91","key":"91"},{"children":[],"title":"辞退","value":"93","key":"93"},{"children":[],"title":"死亡","value":"95","key":"95"},{"children":[],"title":"解聘","value":"97","key":"97"}],"title":"其他减少","value":"9","key":"9"},{"children":[{"children":[],"title":"整建制转到事业单位","value":"22","key":"22"},{"children":[],"title":"整建制转到机关","value":"21","key":"21"},{"children":[],"title":"整建制转到国有企业","value":"23","key":"23"},{"children":[],"title":"整建制转到其他单位","value":"29","key":"29"}],"title":"转出","value":"2","key":"2"},{"children":[{"children":[],"title":"调到事业单位","value":"12","key":"12"},{"children":[],"title":"调到其他单位","value":"19","key":"19"},{"children":[],"title":"调到其他机关","value":"11","key":"11"},{"children":[],"title":"调到国有企业","value":"13","key":"13"}],"title":"调出","value":"1","key":"1"}]; //单位减员类别代码(RB019-2006/DCLB)
+ export const XJ = [{"children":[],"title":"录用的公务员在试用期间,应对其进行考核,但在年度考核时只写评语,不定等次","value":"1","key":"1"},{"children":[],"title":"接受立案审查尚未结案的公务员,只进行年度考核,暂不写评语、不定等次,待问题查清后再行确定","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"受记过、记大过、降级、撤职处分的公务员,对其进行考核,但在受处分期间只写评语,不定等次","value":"3","key":"3"}]; //考核不定等次原因(RB109-2006/KHBDDC)
+ export const XK = [{"children":[{"children":[],"title":"公务员工作成绩奖励","value":"11","key":"11"}],"title":"工作成绩奖励","value":"1","key":"1"}]; //奖励代码(ZRB65―2006/JLDM)
+ export const XL = [{"children":[{"children":[],"title":"警告","value":"10","key":"10"},{"children":[],"title":"降级","value":"14","key":"14"},{"children":[],"title":"记过","value":"12","key":"12"},{"children":[],"title":"开除","value":"19","key":"19"},{"children":[],"title":"撤职","value":"17","key":"17"},{"children":[],"title":"记大过","value":"13","key":"13"}],"title":"公务员处分","value":"1","key":"1"}]; //纪律处分代码(ZRB67―2006/JLCF)
+ export const XM = [{"children":[{"children":[],"title":"滥用职权,侵害公民、法人或者其他组织的合法权益","value":"29","key":"29"},{"children":[],"title":"玩忽职守,贻误工作","value":"23","key":"23"},{"children":[],"title":"组织或者参加非法组织,组织或者参加罢工","value":"22","key":"22"},{"children":[],"title":"违反纪律的其他行为","value":"2Z","key":"2Z"},{"children":[],"title":"压制批评,打击报复","value":"25","key":"25"},{"children":[],"title":"在对外交往中损害国家荣誉和利益","value":"2B","key":"2B"},{"children":[],"title":"弄虚作假,误导、欺骗领导和公众","value":"26","key":"26"},{"children":[],"title":"泄露国家秘密或者工作秘密","value":"2A","key":"2A"},{"children":[],"title":"旷工或者因公外出、请假期满无正当理由逾期不归","value":"2F","key":"2F"},{"children":[],"title":"散布有损国家声誉的言论,组织或者参加旨在反对国家的集会、游行、示威等活动","value":"21","key":"21"},{"children":[],"title":"从事或者参与营利性活动,在企业或者其他营利性组织中兼任职务","value":"2E","key":"2E"},{"children":[],"title":"贪污、行贿、受贿,利用职务之便为自己或者他人谋取私利","value":"27","key":"27"},{"children":[],"title":"违反财经纪律,浪费国家资财","value":"28","key":"28"},{"children":[],"title":"参与或者支持色情、吸毒、赌博、迷信等活动","value":"2C","key":"2C"},{"children":[],"title":"拒绝执行上级依法作出的决定和命令","value":"24","key":"24"},{"children":[],"title":"违反职业道德、社会公德","value":"2D","key":"2D"}],"title":"惩戒原因","value":"2","key":"2"},{"children":[{"children":[],"title":"忠于职守,积极工作,成绩显著","value":"11","key":"11"},{"children":[],"title":"在抢险、救灾等特定环境中奋不顾身,做出贡献","value":"17","key":"17"},{"children":[],"title":"有其他突出功绩","value":"1Z","key":"1Z"},{"children":[],"title":"为增进民族团结、维护社会稳定做出突出贡献","value":"14","key":"14"},{"children":[],"title":"在对外交往中为国家争得荣誉和利益","value":"19","key":"19"},{"children":[],"title":"在工作中有发明创造或者提出合理化建议,取得显著经济效益或者社会效益","value":"13","key":"13"},{"children":[],"title":"爱护公共财产,节约国家资财有突出成绩","value":"15","key":"15"},{"children":[],"title":"遵守纪律,廉洁奉公,作风正派,办事公道,模范作用突出","value":"12","key":"12"},{"children":[],"title":"同违法违纪行为作斗争有功绩","value":"18","key":"18"},{"children":[],"title":"防止或者消除事故有功,使国家和人民群众利益免受或者减少损失","value":"16","key":"16"}],"title":"奖励原因","value":"1","key":"1"}]; //公务员奖惩原因(RB113-2006/GWYJCYY)
+ export const XN = [{"children":[],"title":"撤消原处理决定或者建议原处理机关撤消原处理决定","value":"2","key":"2"},{"children":[],"title":"维持原处理决定","value":"1","key":"1"},{"children":[],"title":"直接变更原处理决定或者建议原处理机关予以变更","value":"4","key":"4"},{"children":[],"title":"建议原处理机关重新审理","value":"3","key":"3"}]; //公务员申诉处理结果(RB026-2006/SSCLJG)XN
+ export const XO = [{"children":[],"title":"申诉","value":"1","key":"1"},{"children":[],"title":"再申诉","value":"2","key":"2"}]; //申诉类别(RB110-2006/SSLB)
+ export const XP = [{"children":[],"title":"不予登记","value":"3","key":"3"},{"children":[],"title":"登记","value":"1","key":"1"},{"children":[],"title":"暂缓登记","value":"2","key":"2"}]; //公务员登记标识(RB102-2006/DJBS)
+ export const XQ = [{"children":[],"title":"待调整人员","value":"7","key":"7"},{"children":[],"title":"调整工资","value":"1","key":"1"},{"children":[],"title":"新入职人员","value":"2","key":"2"},{"children":[],"title":"奖金","value":"8","key":"8"},{"children":[],"title":"专项免税调整","value":"9","key":"9"},{"children":[],"title":"社保、公积金调整","value":"4","key":"4"},{"children":[],"title":"辞职人员且社保、公积金调整","value":"6","key":"6"},{"children":[],"title":"辞职人员","value":"3","key":"3"},{"children":[],"title":"新入职人员且社保、公积金调整","value":"5","key":"5"}]; //标
+ export const XR = [{"children":[{"children":[],"title":"全日制中专","value":"13","key":"13"},{"children":[],"title":"全日制中学","value":"12","key":"12"},{"children":[],"title":"全日制高等学校","value":"14","key":"14"},{"children":[],"title":"全日制小学","value":"11","key":"11"}],"title":"全日制学校","value":"1","key":"1"},{"children":[{"children":[],"title":"其他基层党校","value":"79","key":"79"},{"children":[],"title":"县委党校","value":"74","key":"74"},{"children":[],"title":"企业党校","value":"76","key":"76"},{"children":[],"title":"地、市委党校","value":"73","key":"73"},{"children":[],"title":"省委党校","value":"72","key":"72"},{"children":[],"title":"乡、镇党校","value":"75","key":"75"},{"children":[],"title":"中央党校","value":"71","key":"71"},{"children":[],"title":"高等院校党校","value":"77","key":"77"}],"title":"党校","value":"7","key":"7"},{"children":[],"title":"企业","value":"5","key":"5"},{"children":[{"children":[],"title":"省行政学院","value":"42","key":"42"},{"children":[],"title":"其它行政学院(校)","value":"49","key":"49"},{"children":[],"title":"国家行政学院","value":"41","key":"41"}],"title":"行政学院","value":"4","key":"4"},{"children":[{"children":[],"title":"乡、镇机关","value":"65","key":"65"},{"children":[],"title":"地、市级机关","value":"63","key":"63"},{"children":[],"title":"县级机关","value":"64","key":"64"},{"children":[],"title":"省级机关","value":"62","key":"62"},{"children":[],"title":"中央国家机关","value":"61","key":"61"}],"title":"机关","value":"6","key":"6"},{"children":[{"children":[],"title":"军队(武警)中等专科学校","value":"82","key":"82"},{"children":[],"title":"军队(武警)党校","value":"83","key":"83"},{"children":[],"title":"军队(武警)高等学校","value":"81","key":"81"},{"children":[],"title":"军队(武警)医院","value":"85","key":"85"},{"children":[],"title":"军队(武警)科研机构","value":"84","key":"84"}],"title":"军队(武警)院校","value":"8","key":"8"},{"children":[{"children":[],"title":"刊授学校","value":"26","key":"26"},{"children":[],"title":"工训班","value":"2E","key":"2E"},{"children":[],"title":"广播电视教学","value":"27","key":"27"},{"children":[],"title":"业余大学","value":"24","key":"24"},{"children":[],"title":"培训中心","value":"2F","key":"2F"},{"children":[],"title":"管理干部学院","value":"2B","key":"2B"},{"children":[],"title":"职工大学","value":"21","key":"21"},{"children":[],"title":"职工夜大学","value":"22","key":"22"},{"children":[],"title":"函授学校","value":"25","key":"25"},{"children":[],"title":"自学考试","value":"28","key":"28"},{"children":[],"title":"干训班","value":"2D","key":"2D"},{"children":[],"title":"干校","value":"2C","key":"2C"}],"title":"成人教育培训机构","value":"2","key":"2"},{"children":[{"children":[],"title":"其他事业单位","value":"39","key":"39"},{"children":[],"title":"研究所(院)","value":"31","key":"31"},{"children":[],"title":"研究中心","value":"32","key":"32"},{"children":[],"title":"医院","value":"34","key":"34"}],"title":"事业单位","value":"3","key":"3"},{"children":[{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"学会(协会)","value":"91","key":"91"}],"title":"其他","value":"9","key":"9"}]; //从学单位类别代码(ZRB27―2006/CXDW)
+ export const XS = [{"children":[],"title":"在职培训","value":"4","key":"4"},{"children":[],"title":"任职培训(晋升培训)","value":"2","key":"2"},{"children":[{"children":[],"title":"博士研究生","value":"71","key":"71"},{"children":[],"title":"高中","value":"76","key":"76"},{"children":[],"title":"本科","value":"73","key":"73"},{"children":[],"title":"大专","value":"74","key":"74"},{"children":[],"title":"硕士研究生","value":"72","key":"72"},{"children":[],"title":"中专","value":"75","key":"75"}],"title":"学历学位教育","value":"7","key":"7"},{"children":[],"title":"函授培训","value":"C","key":"C"},{"children":[{"children":[],"title":"其他出国出境培训","value":"D9","key":"D9"},{"children":[],"title":"短期培训班","value":"D1","key":"D1"},{"children":[],"title":"学历教育班","value":"D2","key":"D2"}],"title":"参加出国出境培训","value":"D","key":"D"},{"children":[],"title":"专门业务培训","value":"3","key":"3"},{"children":[],"title":"后备领导人员培训","value":"8","key":"8"},{"children":[],"title":"岗位培训","value":"A","key":"A"},{"children":[],"title":"其他培训","value":"9","key":"9"},{"children":[],"title":"专业技术培训","value":"5","key":"5"},{"children":[],"title":"专题研究培训","value":"B","key":"B"},{"children":[],"title":"初任培训(新录用人员培训)","value":"1","key":"1"}]; //培训类别代码(RB027-2006/PXLB)
+ export const HC = [{"children":[],"title":"部队","value":"4","key":"4"},{"children":[],"title":"运动员","value":"6","key":"6"},{"children":[],"title":"企业","value":"3","key":"3"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[{"children":[],"title":"行员试用期","value":"55","key":"55"}],"title":"行员","value":"5","key":"5"},{"children":[{"children":[],"title":"职员","value":"21","key":"21"},{"children":[],"title":"事业普通工人","value":"24","key":"24"},{"children":[],"title":"事业技术工人","value":"23","key":"23"},{"children":[],"title":"试用期行政管理人员","value":"25","key":"25"},{"children":[],"title":"见习期专业技术人员","value":"26","key":"26"},{"children":[],"title":"专业技术","value":"22","key":"22"},{"children":[],"title":"学徒期技术工人","value":"27","key":"27"},{"children":[],"title":"熟练期普通工人","value":"28","key":"28"}],"title":"事业单位","value":"2","key":"2"},{"children":[{"children":[],"title":"公务员","value":"11","key":"11"},{"children":[],"title":"试用期公务员","value":"15","key":"15"},{"children":[],"title":"机关普通工人","value":"14","key":"14"},{"children":[],"title":"机关技术工人","value":"13","key":"13"},{"children":[],"title":"熟练期普通工人","value":"18","key":"18"},{"children":[],"title":"学徒期工人","value":"17","key":"17"}],"title":"行政机关","value":"1","key":"1"}]; //工资类别(GB/T 14946-2002 A.57)
+ export const HD = [{"children":[],"title":"退休","value":"2","key":"2"},{"children":[],"title":"离休","value":"1","key":"1"}]; //离退休类别(GB/T 14946-2002 A.62)
+ export const HK = [{"children":[],"title":"差额拨款","value":"2","key":"2"},{"children":[],"title":"全额拨款","value":"1","key":"1"},{"children":[],"title":"自收自支","value":"3","key":"3"},{"children":[],"title":"企业化管理","value":"4","key":"4"}]; //拨款形式(GB/T 14946-2002 A.50)
+ export const HN = [{"children":[],"title":"分流","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"上岗","value":"1","key":"1"}]; //岗位变化情况(GB/T 14946-2002 A.79)
+ export const HT = [{"children":[],"title":"监察机关直接给予的标识","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"}]; //监察机关直接给予的标识(GB/T 14946-2002 A.72)
+ export const HU = [{"children":[],"title":"三年至不满四年","value":"15","key":"15"},{"children":[],"title":"五年至不满十年","value":"19","key":"19"},{"children":[],"title":"半年至不满一年","value":"09","key":"09"},{"children":[],"title":"四年至不满五年","value":"17","key":"17"},{"children":[],"title":"二年至不满三年","value":"13","key":"13"},{"children":[],"title":"十年以上","value":"21","key":"21"},{"children":[],"title":"二个月至不满三个月","value":"05","key":"05"},{"children":[],"title":"三个月至不满半年","value":"07","key":"07"},{"children":[],"title":"不满一个月","value":"01","key":"01"},{"children":[],"title":"一年至不满二年","value":"11","key":"11"},{"children":[],"title":"一个月至不满二个月","value":"03","key":"03"}]; //时间期限(GB/T 14946-2002 A.68)
+ export const HX = [{"children":[],"title":"五级","value":"05","key":"05"},{"children":[],"title":"十八级","value":"18","key":"18"},{"children":[],"title":"十一级","value":"11","key":"11"},{"children":[],"title":"七级","value":"07","key":"07"},{"children":[],"title":"十三级","value":"13","key":"13"},{"children":[],"title":"二十三级","value":"23","key":"23"},{"children":[],"title":"二十级","value":"20","key":"20"},{"children":[],"title":"二十一级","value":"21","key":"21"},{"children":[],"title":"二十六级","value":"26","key":"26"},{"children":[],"title":"二级","value":"02","key":"02"},{"children":[],"title":"十级","value":"10","key":"10"},{"children":[],"title":"四级","value":"04","key":"04"},{"children":[],"title":"二十二级","value":"22","key":"22"},{"children":[],"title":"十二级","value":"12","key":"12"},{"children":[],"title":"九级","value":"09","key":"09"},{"children":[],"title":"十九级","value":"19","key":"19"},{"children":[],"title":"十七级","value":"17","key":"17"},{"children":[],"title":"六级","value":"06","key":"06"},{"children":[],"title":"十五级","value":"15","key":"15"},{"children":[],"title":"二十五级","value":"25","key":"25"},{"children":[],"title":"十六级","value":"16","key":"16"},{"children":[],"title":"十四级","value":"14","key":"14"},{"children":[],"title":"二十四级","value":"24","key":"24"},{"children":[],"title":"二十七级","value":"27","key":"27"},{"children":[],"title":"八级","value":"08","key":"08"},{"children":[],"title":"三级","value":"03","key":"03"},{"children":[],"title":"一级","value":"01","key":"01"}]; //工资级别(GB/T 14946-2002 A.58)
+ export const HY = [{"children":[],"title":"肄业","value":"4","key":"4"},{"children":[],"title":"未结业","value":"3","key":"3"},{"children":[],"title":"毕业","value":"1","key":"1"},{"children":[],"title":"结业","value":"2","key":"2"}]; //教育培训结果(GB/T 14946-2002 A.27)
+ export const Z0 = [{"children":[],"title":"国有","value":"1","key":"1"},{"children":[],"title":"集体","value":"2","key":"2"}]; //登记注册类型
+ export const Z1 = [{"children":[{"children":[],"title":"工资制度改革","value":"11","key":"11"},{"children":[],"title":"调整工资标准","value":"12","key":"12"}],"title":"工资自变化","value":"1","key":"1"},{"children":[{"children":[],"title":"换岗转制","value":"22","key":"22"},{"children":[],"title":"新进人员","value":"21","key":"21"},{"children":[],"title":"考核奖惩","value":"24","key":"24"},{"children":[],"title":"其它","value":"29","key":"29"},{"children":[],"title":"职务变化","value":"23","key":"23"}],"title":"人事变动引起的变化","value":"2","key":"2"}]; //工资变动及原因
+ export const IA = [{"children":[],"title":"四档","value":"04","key":"04"},{"children":[],"title":"五档","value":"05","key":"05"},{"children":[],"title":"二十档","value":"20","key":"20"},{"children":[],"title":"十八档","value":"18","key":"18"},{"children":[],"title":"二档","value":"02","key":"02"},{"children":[],"title":"八档","value":"08","key":"08"},{"children":[],"title":"十九档","value":"19","key":"19"},{"children":[],"title":"十六档","value":"16","key":"16"},{"children":[],"title":"七档","value":"07","key":"07"},{"children":[],"title":"十五档","value":"15","key":"15"},{"children":[],"title":"六档","value":"06","key":"06"},{"children":[],"title":"十三档","value":"13","key":"13"},{"children":[],"title":"十档","value":"10","key":"10"},{"children":[],"title":"十七档","value":"17","key":"17"},{"children":[],"title":"三档","value":"03","key":"03"},{"children":[],"title":"九档","value":"09","key":"09"},{"children":[],"title":"十二档","value":"12","key":"12"},{"children":[],"title":"十一档","value":"11","key":"11"},{"children":[],"title":"一档","value":"01","key":"01"},{"children":[],"title":"十四档","value":"14","key":"14"}]; //职务工资档次(GB/T 14946-2002 A.59)
+ export const Z2 = [{"children":[],"title":"初中","value":"9","key":"9"},{"children":[],"title":"双学士、研究生班及未获硕士研究生","value":"3","key":"3"},{"children":[],"title":"中专","value":"6","key":"6"},{"children":[],"title":"大专","value":"5","key":"5"},{"children":[],"title":"本科","value":"4","key":"4"},{"children":[],"title":"高中","value":"8","key":"8"},{"children":[],"title":"中技","value":"7","key":"7"},{"children":[],"title":"博士","value":"1","key":"1"},{"children":[],"title":"硕士研究生","value":"2","key":"2"}]; //学历等级
+ export const Z3 = [{"children":[],"title":"十一级","value":"11","key":"11"},{"children":[],"title":"九级","value":"09","key":"09"},{"children":[],"title":"十三级","value":"13","key":"13"},{"children":[],"title":"七级","value":"07","key":"07"},{"children":[],"title":"八级","value":"08","key":"08"},{"children":[],"title":"三级","value":"03","key":"03"},{"children":[],"title":"一级","value":"01","key":"01"},{"children":[],"title":"十二级","value":"12","key":"12"},{"children":[],"title":"二级","value":"02","key":"02"},{"children":[],"title":"十级","value":"10","key":"10"},{"children":[],"title":"五级","value":"05","key":"05"},{"children":[],"title":"四级","value":"04","key":"04"},{"children":[],"title":"六级","value":"06","key":"06"}]; //岗位等级
+ export const IB = [{"children":[],"title":"调到省内国有事、企业单位","value":"63","key":"63"},{"children":[],"title":"从中央国家机关系统调进的","value":"13","key":"13"},{"children":[],"title":"部门外国有事、企业单位调入","value":"43","key":"43"},{"children":[],"title":"调到部门外国有事、企业单位","value":"62","key":"62"},{"children":[],"title":"从省内政府及党群机关调入","value":"35","key":"35"},{"children":[],"title":"从省外政府及党群机关调入","value":"36","key":"36"},{"children":[],"title":"部门内国有事、企业单位调入","value":"42","key":"42"},{"children":[],"title":"从非政府机关调入","value":"31","key":"31"},{"children":[],"title":"国有事、企业单位工人调入","value":"41","key":"41"},{"children":[],"title":"调往外省单位的","value":"28","key":"28"},{"children":[],"title":"调往中央单位的","value":"27","key":"27"},{"children":[],"title":"省外国有事、企业单位调入","value":"45","key":"45"},{"children":[],"title":"调往中央国家机关系统的","value":"23","key":"23"},{"children":[],"title":"调往地方单位的","value":"22","key":"22"},{"children":[],"title":"调往政府及党群机关","value":"51","key":"51"},{"children":[],"title":"省内国有事、企业单位调入","value":"44","key":"44"},{"children":[],"title":"其他","value":"99","key":"99"},{"children":[],"title":"调往中央党群系统的","value":"24","key":"24"},{"children":[],"title":"调往省内党群系统的","value":"29","key":"29"},{"children":[],"title":"调往省内非政府机关","value":"55","key":"55"},{"children":[],"title":"机关改为事、企业单位","value":"15","key":"15"},{"children":[],"title":"从中央单位调进的","value":"17","key":"17"},{"children":[],"title":"从政府及党群机关调入","value":"34","key":"34"},{"children":[],"title":"事、企业单位改为机关","value":"25","key":"25"},{"children":[],"title":"调往非政府机关","value":"52","key":"52"},{"children":[],"title":"从地方单位调进的","value":"12","key":"12"},{"children":[],"title":"从省内党群系统调进的","value":"19","key":"19"},{"children":[],"title":"从省内非政府机关调入","value":"32","key":"32"},{"children":[],"title":"单位领导体制变化减少的","value":"21","key":"21"},{"children":[],"title":"从本系统内调进的","value":"16","key":"16"},{"children":[],"title":"从外省单位调进的","value":"18","key":"18"},{"children":[],"title":"从中央党群系统调进的","value":"14","key":"14"},{"children":[],"title":"调往本系统单位的","value":"26","key":"26"},{"children":[],"title":"从省外非政府机关调入","value":"33","key":"33"},{"children":[],"title":"调往省内政府及党群机关","value":"53","key":"53"},{"children":[],"title":"调往省外政府及党群机关","value":"54","key":"54"},{"children":[],"title":"单位领导体制变化增加的","value":"11","key":"11"},{"children":[],"title":"调到部门内国有事、企业单位","value":"61","key":"61"},{"children":[],"title":"调往省外非政府机关","value":"56","key":"56"},{"children":[],"title":"调到省外国有事、企业单位","value":"64","key":"64"}]; //流动方向(GB/T 14946-2002 A.64)
+ export const Z4 = [{"children":[],"title":"10级","value":"10","key":"10"},{"children":[],"title":"40级","value":"40","key":"40"},{"children":[],"title":"9级","value":"09","key":"09"},{"children":[],"title":"32级","value":"32","key":"32"},{"children":[],"title":"39级","value":"39","key":"39"},{"children":[],"title":"34级","value":"34","key":"34"},{"children":[],"title":"52级","value":"52","key":"52"},{"children":[],"title":"46级","value":"46","key":"46"},{"children":[],"title":"49级","value":"49","key":"49"},{"children":[],"title":"57级","value":"57","key":"57"},{"children":[],"title":"37级","value":"37","key":"37"},{"children":[],"title":"1级","value":"01","key":"01"},{"children":[],"title":"65级","value":"65","key":"65"},{"children":[],"title":"50级","value":"50","key":"50"},{"children":[],"title":"41级","value":"41","key":"41"},{"children":[],"title":"11级","value":"11","key":"11"},{"children":[],"title":"31级","value":"31","key":"31"},{"children":[],"title":"23级","value":"23","key":"23"},{"children":[],"title":"5级","value":"05","key":"05"},{"children":[],"title":"47级","value":"47","key":"47"},{"children":[],"title":"64级","value":"64","key":"64"},{"children":[],"title":"56级","value":"56","key":"56"},{"children":[],"title":"8级","value":"08","key":"08"},{"children":[],"title":"24级","value":"24","key":"24"},{"children":[],"title":"61级","value":"61","key":"61"},{"children":[],"title":"7级","value":"07","key":"07"},{"children":[],"title":"27级","value":"27","key":"27"},{"children":[],"title":"2级","value":"02","key":"02"},{"children":[],"title":"51级","value":"51","key":"51"},{"children":[],"title":"42级","value":"42","key":"42"},{"children":[],"title":"21级","value":"21","key":"21"},{"children":[],"title":"17级","value":"17","key":"17"},{"children":[],"title":"35级","value":"35","key":"35"},{"children":[],"title":"54级","value":"54","key":"54"},{"children":[],"title":"33级","value":"33","key":"33"},{"children":[],"title":"26级","value":"26","key":"26"},{"children":[],"title":"58级","value":"58","key":"58"},{"children":[],"title":"60级","value":"60","key":"60"},{"children":[],"title":"20级","value":"20","key":"20"},{"children":[],"title":"28级","value":"28","key":"28"},{"children":[],"title":"36级","value":"36","key":"36"},{"children":[],"title":"53级","value":"53","key":"53"},{"children":[],"title":"29级","value":"29","key":"29"},{"children":[],"title":"62级","value":"62","key":"62"},{"children":[],"title":"44级","value":"44","key":"44"},{"children":[],"title":"55级","value":"55","key":"55"},{"children":[],"title":"43级","value":"43","key":"43"},{"children":[],"title":"3级","value":"03","key":"03"},{"children":[],"title":"22级","value":"22","key":"22"},{"children":[],"title":"4级","value":"04","key":"04"},{"children":[],"title":"19级","value":"19","key":"19"},{"children":[],"title":"25级","value":"25","key":"25"},{"children":[],"title":"59级","value":"59","key":"59"},{"children":[],"title":"16级","value":"16","key":"16"},{"children":[],"title":"12级","value":"12","key":"12"},{"children":[],"title":"13级","value":"13","key":"13"},{"children":[],"title":"14级","value":"14","key":"14"},{"children":[],"title":"15级","value":"15","key":"15"},{"children":[],"title":"6级","value":"06","key":"06"},{"children":[],"title":"63级","value":"63","key":"63"},{"children":[],"title":"18级","value":"18","key":"18"},{"children":[],"title":"48级","value":"48","key":"48"},{"children":[],"title":"38级","value":"38","key":"38"},{"children":[],"title":"30级","value":"30","key":"30"},{"children":[],"title":"45级","value":"45","key":"45"}]; //薪级
+ export const Z5 = [{"children":[],"title":"48年以上","value":"020","key":"020"},{"children":[],"title":"43-44年","value":"018","key":"018"},{"children":[],"title":"40-42年","value":"017","key":"017"},{"children":[],"title":"6-7年","value":"003","key":"003"},{"children":[],"title":"13-14年","value":"006","key":"006"},{"children":[],"title":"8-9年","value":"004","key":"004"},{"children":[],"title":"35-37年","value":"015","key":"015"},{"children":[],"title":"15-17年","value":"007","key":"007"},{"children":[],"title":"10-12年","value":"005","key":"005"},{"children":[],"title":"18-19年","value":"008","key":"008"},{"children":[],"title":"30-32年","value":"013","key":"013"},{"children":[],"title":"20-22年","value":"009","key":"009"},{"children":[],"title":"33-34年","value":"014","key":"014"},{"children":[],"title":"45-47年","value":"019","key":"019"},{"children":[],"title":"4-5年","value":"002","key":"002"},{"children":[],"title":"28-29年","value":"012","key":"012"},{"children":[],"title":"3年以下","value":"001","key":"001"},{"children":[],"title":"23-24年","value":"010","key":"010"},{"children":[],"title":"25-27年","value":"011","key":"011"},{"children":[],"title":"38-39年","value":"016","key":"016"}]; //公务员套改年限
+ export const Z6 = [{"children":[],"title":"1-5年","value":"001","key":"001"},{"children":[],"title":"11-15年","value":"003","key":"003"},{"children":[],"title":"16年以上","value":"004","key":"004"},{"children":[],"title":"6-10年","value":"002","key":"002"}]; //公务员任职年限
+ export const Z7 = [{"children":[],"title":"4年以下","value":"001","key":"001"},{"children":[],"title":"25-26年","value":"010","key":"010"},{"children":[],"title":"5-6年","value":"002","key":"002"},{"children":[],"title":"27-29年","value":"011","key":"011"},{"children":[],"title":"10-11年","value":"004","key":"004"},{"children":[],"title":"22-24年","value":"009","key":"009"},{"children":[],"title":"17-19年","value":"007","key":"007"},{"children":[],"title":"42年以上","value":"017","key":"017"},{"children":[],"title":"32-34年","value":"013","key":"013"},{"children":[],"title":"37-39年","value":"015","key":"015"},{"children":[],"title":"30-31年","value":"012","key":"012"},{"children":[],"title":"7-9年","value":"003","key":"003"},{"children":[],"title":"15-16年","value":"006","key":"006"},{"children":[],"title":"40-41年","value":"016","key":"016"},{"children":[],"title":"20-21年","value":"008","key":"008"},{"children":[],"title":"35-36年","value":"014","key":"014"},{"children":[],"title":"12-14年","value":"005","key":"005"}]; //机关工人套改年限
+ export const Z8 = [{"children":[],"title":"5-8年","value":"002","key":"002"},{"children":[],"title":"9年以上","value":"003","key":"003"},{"children":[],"title":"1-4年","value":"001","key":"001"}]; //机关工人在岗年限
+ export const Z9 = [{"children":[],"title":"3年以下","value":"001","key":"001"},{"children":[],"title":"24年","value":"014","key":"014"},{"children":[],"title":"9年","value":"005","key":"005"},{"children":[],"title":"5-6年","value":"003","key":"003"},{"children":[],"title":"29年","value":"017","key":"017"},{"children":[],"title":"40-41年","value":"024","key":"024"},{"children":[],"title":"44年","value":"026","key":"026"},{"children":[],"title":"32-33年","value":"019","key":"019"},{"children":[],"title":"34年","value":"020","key":"020"},{"children":[],"title":"37-38年","value":"022","key":"022"},{"children":[],"title":"14年","value":"008","key":"008"},{"children":[],"title":"39年","value":"023","key":"023"},{"children":[],"title":"17-18年","value":"010","key":"010"},{"children":[],"title":"25-26年","value":"015","key":"015"},{"children":[],"title":"10-11年","value":"006","key":"006"},{"children":[],"title":"20-21年","value":"012","key":"012"},{"children":[],"title":"35-36年","value":"021","key":"021"},{"children":[],"title":"12-13年","value":"007","key":"007"},{"children":[],"title":"4年","value":"002","key":"002"},{"children":[],"title":"22-23年","value":"013","key":"013"},{"children":[],"title":"15-16年","value":"009","key":"009"},{"children":[],"title":"7-8年","value":"004","key":"004"},{"children":[],"title":"47年以上","value":"028","key":"028"},{"children":[],"title":"42-43年","value":"025","key":"025"},{"children":[],"title":"30-31年","value":"018","key":"018"},{"children":[],"title":"27-28年","value":"016","key":"016"},{"children":[],"title":"19年","value":"011","key":"011"},{"children":[],"title":"45-46年","value":"027","key":"027"}]; //事业管理人员套改年限
+ export const II = [{"children":[],"title":"八级","value":"8","key":"8"},{"children":[],"title":"七级","value":"7","key":"7"},{"children":[],"title":"四级","value":"4","key":"4"},{"children":[],"title":"三级","value":"3","key":"3"},{"children":[],"title":"六级","value":"6","key":"6"},{"children":[],"title":"五级","value":"5","key":"5"},{"children":[],"title":"二级","value":"2","key":"2"},{"children":[],"title":"一级","value":"1","key":"1"}]; //掌握语种水平级别(GB/T 14946-2002 A.55)
+ export const IK = [{"children":[],"title":"正营级","value":"07","key":"07"},{"children":[],"title":"正师级","value":"03","key":"03"},{"children":[],"title":"军级","value":"01","key":"01"},{"children":[],"title":"正连级","value":"09","key":"09"},{"children":[],"title":"副连级","value":"10","key":"10"},{"children":[],"title":"副团级","value":"06","key":"06"},{"children":[],"title":"正排级","value":"11","key":"11"},{"children":[],"title":"副师级","value":"04","key":"04"},{"children":[],"title":"正团级","value":"05","key":"05"},{"children":[],"title":"副军级","value":"02","key":"02"},{"children":[],"title":"副营级","value":"08","key":"08"}]; //军队级别(GB/T 14946-2002 A.65)
+ export const IO = [{"children":[],"title":"跨省","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"跨县(市)","value":"3","key":"3"},{"children":[],"title":"跨地(市)","value":"2","key":"2"}]; //进入跨地域标识(GB/T 14946-2002 A.39)
+ export const ZA = [{"children":[],"title":"40-41年","value":"024","key":"024"},{"children":[],"title":"49年","value":"029","key":"029"},{"children":[],"title":"52-53年","value":"031","key":"031"},{"children":[],"title":"5-6年","value":"003","key":"003"},{"children":[],"title":"57-58年","value":"034","key":"034"},{"children":[],"title":"20-21年","value":"012","key":"012"},{"children":[],"title":"3年以下","value":"001","key":"001"},{"children":[],"title":"19年","value":"011","key":"011"},{"children":[],"title":"59年以上","value":"035","key":"035"},{"children":[],"title":"15-16年","value":"009","key":"009"},{"children":[],"title":"4年","value":"002","key":"002"},{"children":[],"title":"22-23年","value":"013","key":"013"},{"children":[],"title":"30-31年","value":"018","key":"018"},{"children":[],"title":"55-56年","value":"033","key":"033"},{"children":[],"title":"50-51年","value":"030","key":"030"},{"children":[],"title":"9年","value":"005","key":"005"},{"children":[],"title":"24年","value":"014","key":"014"},{"children":[],"title":"29年","value":"017","key":"017"},{"children":[],"title":"42-43年","value":"025","key":"025"},{"children":[],"title":"27-28年","value":"016","key":"016"},{"children":[],"title":"32-33年","value":"019","key":"019"},{"children":[],"title":"10-11年","value":"006","key":"006"},{"children":[],"title":"37-38年","value":"022","key":"022"},{"children":[],"title":"12-13年","value":"007","key":"007"},{"children":[],"title":"17-18年","value":"010","key":"010"},{"children":[],"title":"54年","value":"032","key":"032"},{"children":[],"title":"45-46年","value":"027","key":"027"},{"children":[],"title":"34年","value":"020","key":"020"},{"children":[],"title":"25-26年","value":"015","key":"015"},{"children":[],"title":"14年","value":"008","key":"008"},{"children":[],"title":"35-36年","value":"021","key":"021"},{"children":[],"title":"44年","value":"026","key":"026"},{"children":[],"title":"39年","value":"023","key":"023"},{"children":[],"title":"7-8年","value":"004","key":"004"},{"children":[],"title":"47-48年","value":"028","key":"028"}]; //事业专技人员套改年限
+ export const ZB = [{"children":[],"title":"31-32年","value":"018","key":"018"},{"children":[],"title":"18-19年","value":"010","key":"010"},{"children":[],"title":"20年","value":"011","key":"011"},{"children":[],"title":"6-7年","value":"003","key":"003"},{"children":[],"title":"35年","value":"020","key":"020"},{"children":[],"title":"36-37年","value":"021","key":"021"},{"children":[],"title":"30年","value":"017","key":"017"},{"children":[],"title":"15年","value":"008","key":"008"},{"children":[],"title":"4年以下","value":"001","key":"001"},{"children":[],"title":"28-29年","value":"016","key":"016"},{"children":[],"title":"16-17年","value":"009","key":"009"},{"children":[],"title":"23-24年","value":"013","key":"013"},{"children":[],"title":"25年","value":"014","key":"014"},{"children":[],"title":"21-22年","value":"012","key":"012"},{"children":[],"title":"41年以上","value":"024","key":"024"},{"children":[],"title":"33-34年","value":"019","key":"019"},{"children":[],"title":"38-39年","value":"022","key":"022"},{"children":[],"title":"13-14年","value":"007","key":"007"},{"children":[],"title":"40年","value":"023","key":"023"},{"children":[],"title":"8-9年","value":"004","key":"004"},{"children":[],"title":"26-27年","value":"015","key":"015"},{"children":[],"title":"10年","value":"005","key":"005"},{"children":[],"title":"11-12年","value":"006","key":"006"},{"children":[],"title":"5年","value":"002","key":"002"}]; //事业技术工人套改年限
+ export const IR = [{"children":[{"children":[],"title":"领导职务副职","value":"12","key":"12"},{"children":[],"title":"领导职务正职","value":"11","key":"11"}],"title":"领导职务","value":"1","key":"1"},{"children":[{"children":[],"title":"非领导职务正职","value":"31","key":"31"},{"children":[],"title":"非领导职务助理职","value":"32","key":"32"},{"children":[],"title":"特殊岗位非领导职务","value":"33","key":"33"}],"title":"非领导职务","value":"3","key":"3"},{"children":[],"title":"相当职务","value":"9","key":"9"}]; //职务属性(GB/T 14946-2002 A.69)
+ export const ZC = [{"children":[],"title":"23-24年","value":"015","key":"015"},{"children":[],"title":"4年","value":"002","key":"002"},{"children":[],"title":"37年","value":"024","key":"024"},{"children":[],"title":"32-33年","value":"021","key":"021"},{"children":[],"title":"16年","value":"010","key":"010"},{"children":[],"title":"20-21年","value":"013","key":"013"},{"children":[],"title":"35-36年","value":"023","key":"023"},{"children":[],"title":"5-6年","value":"003","key":"003"},{"children":[],"title":"28年","value":"018","key":"018"},{"children":[],"title":"40年以上","value":"026","key":"026"},{"children":[],"title":"19年","value":"012","key":"012"},{"children":[],"title":"38-39年","value":"025","key":"025"},{"children":[],"title":"34年","value":"022","key":"022"},{"children":[],"title":"14-15年","value":"009","key":"009"},{"children":[],"title":"7年","value":"004","key":"004"},{"children":[],"title":"29-30年","value":"019","key":"019"},{"children":[],"title":"10年","value":"006","key":"006"},{"children":[],"title":"8-9年","value":"005","key":"005"},{"children":[],"title":"17-18年","value":"011","key":"011"},{"children":[],"title":"22年","value":"014","key":"014"},{"children":[],"title":"3年以下","value":"001","key":"001"},{"children":[],"title":"31年","value":"020","key":"020"},{"children":[],"title":"11-12年","value":"007","key":"007"},{"children":[],"title":"26-27年","value":"017","key":"017"},{"children":[],"title":"13年","value":"008","key":"008"},{"children":[],"title":"25年","value":"016","key":"016"}]; //事业普通工人套改年限
+ export const IS = [{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"平级安排","value":"2","key":"2"},{"children":[],"title":"提拔安排","value":"1","key":"1"}]; //任职情况(GB/T 14946-2002 A.80)
+ export const ZD = [{"children":[],"title":"7-9年","value":"003","key":"003"},{"children":[],"title":"13-15年","value":"006","key":"006"},{"children":[],"title":"10-12年","value":"004","key":"004"},{"children":[],"title":"4-6年","value":"002","key":"002"},{"children":[],"title":"3年以下","value":"001","key":"001"},{"children":[],"title":"16年以上","value":"007","key":"007"},{"children":[],"title":"13年以上","value":"005","key":"005"}]; //事业管理人员任职年限
+ export const ZE = [{"children":[],"title":"9-10年","value":"005","key":"005"},{"children":[],"title":"15年以下","value":"008","key":"008"},{"children":[],"title":"10-12年","value":"015","key":"015"},{"children":[],"title":"11-12年","value":"006","key":"006"},{"children":[],"title":"7-8年","value":"004","key":"004"},{"children":[],"title":"13-15年","value":"016","key":"016"},{"children":[],"title":"4-6年","value":"013","key":"013"},{"children":[],"title":"21年以上","value":"010","key":"010"},{"children":[],"title":"5-6年","value":"003","key":"003"},{"children":[],"title":"16年以上","value":"017","key":"017"},{"children":[],"title":"3年以下","value":"012","key":"012"},{"children":[],"title":"7-9年","value":"014","key":"014"},{"children":[],"title":"3-4年","value":"002","key":"002"},{"children":[],"title":"13年以上","value":"007","key":"007"},{"children":[],"title":"2年以下","value":"001","key":"001"},{"children":[],"title":"16-20年","value":"009","key":"009"},{"children":[],"title":"11年以上","value":"011","key":"011"}]; //事业专技人员任职年限
+ export const ZF = [{"children":[],"title":"5-6年","value":"004","key":"004"},{"children":[],"title":"10-12年","value":"009","key":"009"},{"children":[],"title":"7年以上","value":"005","key":"005"},{"children":[],"title":"3年以下","value":"006","key":"006"},{"children":[],"title":"4-6年","value":"007","key":"007"},{"children":[],"title":"13年以上","value":"010","key":"010"},{"children":[],"title":"3-4年","value":"002","key":"002"},{"children":[],"title":"7-9年","value":"008","key":"008"},{"children":[],"title":"5年以上","value":"003","key":"003"},{"children":[],"title":"2年以下","value":"001","key":"001"}]; //事业技术工人任职年限
+ export const ZG = [{"children":[],"title":"机关/事业","value":"4","key":"4"},{"children":[],"title":"事业","value":"2","key":"2"},{"children":[],"title":"机关","value":"1","key":"1"},{"children":[],"title":"离退","value":"3","key":"3"}]; //津补贴类型
+ export const ZH = [{"children":[],"title":"按天","value":"2","key":"2"},{"children":[],"title":"按月","value":"1","key":"1"}]; //津补贴形式
+ export const ZI = [{"children":[],"title":"艰苦边远地区津贴","value":"1","key":"1"},{"children":[],"title":"规范岗位津贴","value":"3","key":"3"},{"children":[],"title":"特殊岗位津贴","value":"2","key":"2"},{"children":[],"title":"其他津贴补贴","value":"4","key":"4"}]; //津补贴类别
+ export const ZJ = [{"children":[],"title":"一类区","value":"1","key":"1"},{"children":[],"title":"四类区","value":"4","key":"4"},{"children":[],"title":"二类区","value":"2","key":"2"},{"children":[],"title":"六类区","value":"6","key":"6"},{"children":[],"title":"五类区","value":"5","key":"5"},{"children":[],"title":"三类区","value":"3","key":"3"}]; //艰苦边远地区津贴类别
+ export const ZK = [{"children":[],"title":"副高级","value":"2","key":"2"},{"children":[],"title":"中级","value":"3","key":"3"},{"children":[],"title":"员级","value":"5","key":"5"},{"children":[],"title":"正高级","value":"1","key":"1"},{"children":[],"title":"助理级","value":"4","key":"4"}]; //专业技术职务级别
+ export const ZL = [{"children":[{"children":[],"title":"地(市)局","value":"0402","key":"0402"},{"children":[],"title":"省局及以上","value":"0403","key":"0403"},{"children":[],"title":"县(市)局","value":"0401","key":"0401"}],"title":"税务征收津贴","value":"04","key":"04"},{"children":[{"children":[],"title":"工作年限不满10年的","value":"0101","key":"0101"},{"children":[],"title":"工作满20年以上的","value":"0103","key":"0103"},{"children":[],"title":"工作满10年不满20年的","value":"0102","key":"0102"}],"title":"密码人员岗位津贴","value":"01","key":"01"},{"children":[{"children":[],"title":"普通工","value":"0316","key":"0316"},{"children":[],"title":"科员","value":"0309","key":"0309"},{"children":[],"title":"处长及相当职务","value":"0305","key":"0305"},{"children":[],"title":"高级工","value":"0313","key":"0313"},{"children":[],"title":"高级技师","value":"0311","key":"0311"},{"children":[],"title":"初级工","value":"0315","key":"0315"},{"children":[],"title":"科长及相当职务","value":"0307","key":"0307"},{"children":[],"title":"署长","value":"0301","key":"0301"},{"children":[],"title":"技师","value":"0312","key":"0312"},{"children":[],"title":"副科长及相当职务","value":"0308","key":"0308"},{"children":[],"title":"副处长及相当职务","value":"0306","key":"0306"},{"children":[],"title":"办事员","value":"0310","key":"0310"},{"children":[],"title":"副司长及相当职务","value":"0304","key":"0304"},{"children":[],"title":"副署长","value":"0302","key":"0302"},{"children":[],"title":"司长及相当职务","value":"0303","key":"0303"},{"children":[],"title":"中级工","value":"0314","key":"0314"}],"title":"海关工作人员津贴","value":"03","key":"03"},{"children":[{"children":[],"title":"二级警监","value":"0204","key":"0204"},{"children":[],"title":"一级警督","value":"0206","key":"0206"},{"children":[],"title":"一级警员","value":"0212","key":"0212"},{"children":[],"title":"一级警司","value":"0209","key":"0209"},{"children":[],"title":"三级警司","value":"0211","key":"0211"},{"children":[],"title":"三级警监","value":"0205","key":"0205"},{"children":[],"title":"三级警督","value":"0208","key":"0208"},{"children":[],"title":"二级警督","value":"0207","key":"0207"},{"children":[],"title":"二级警员","value":"0213","key":"0213"},{"children":[],"title":"总警监","value":"0201","key":"0201"},{"children":[],"title":"二经警司","value":"0210","key":"0210"},{"children":[],"title":"一级警监","value":"0203","key":"0203"},{"children":[],"title":"副总警监","value":"0202","key":"0202"}],"title":"警衔津贴","value":"02","key":"02"}]; //特殊岗位津贴(按月)
+ export const ZM = [{"children":[{"children":[],"title":"地(市)局机关","value":"0102","key":"0102"},{"children":[],"title":"县(市)局机关、监区","value":"0101","key":"0101"},{"children":[],"title":"省局及以上","value":"0103","key":"0103"}],"title":"警察值勤岗位津贴","value":"01","key":"01"},{"children":[],"title":"司法助理人员岗位津贴","value":"02","key":"02"},{"children":[],"title":"纪检、监察办案人员补贴","value":"06","key":"06"},{"children":[{"children":[],"title":"地方院","value":"0302","key":"0302"},{"children":[],"title":"最高院","value":"0301","key":"0301"}],"title":"人民法院办案人员岗位津贴","value":"03","key":"03"},{"children":[],"title":"审计机关人员工作补贴","value":"05","key":"05"},{"children":[{"children":[],"title":"地方院","value":"0402","key":"0402"},{"children":[],"title":"最高院","value":"0401","key":"0401"}],"title":"人民检察院办案人员岗位津贴","value":"04","key":"04"}]; //特殊岗位津贴(按天)
+ export const ZN = [{"children":[{"children":[],"title":"享受原工资100%退休费的退休老专家、起义人员、老工人","value":"21","key":"21"}],"title":"退休","value":"2","key":"2"},{"children":[],"title":"离休","value":"1","key":"1"},{"children":[],"title":"退职","value":"3","key":"3"}]; //离退类别
+ export const ZO = [{"children":[],"title":"副教授级","value":"08","key":"08"},{"children":[{"children":[],"title":"乡科级正职","value":"051","key":"051"},{"children":[],"title":"乡科级副职","value":"052","key":"052"}],"title":"乡科级","value":"05","key":"05"},{"children":[],"title":"助教及以下","value":"10","key":"10"},{"children":[],"title":"副总理(国务委员)级及以上","value":"01","key":"01"},{"children":[{"children":[],"title":"省部级正职","value":"021","key":"021"},{"children":[],"title":"省部级副职","value":"022","key":"022"}],"title":"省部级","value":"02","key":"02"},{"children":[],"title":"高级技师和技师","value":"11","key":"11"},{"children":[],"title":"讲师级","value":"09","key":"09"},{"children":[],"title":"教授级","value":"07","key":"07"},{"children":[],"title":"高级工及以下和普通工","value":"12","key":"12"},{"children":[{"children":[],"title":"厅局级正职","value":"031","key":"031"},{"children":[],"title":"厅局级副职","value":"032","key":"032"}],"title":"厅局级","value":"03","key":"03"},{"children":[{"children":[],"title":"县处级副职","value":"042","key":"042"},{"children":[],"title":"县处级正职","value":"041","key":"041"}],"title":"县处级","value":"04","key":"04"},{"children":[{"children":[],"title":"中教6级以下与小教4级以下和相应工资级别","value":"133","key":"133"},{"children":[],"title":"中教4、5级与小教2、3级及相应工资级别","value":"132","key":"132"},{"children":[],"title":"中教1、2、3级与小教1级及相应工资级别","value":"131","key":"131"}],"title":"85工改前工资级别","value":"13","key":"13"},{"children":[],"title":"科员及以下","value":"06","key":"06"}]; //离退休后享受待遇
+ export const ZP = [{"children":[{"children":[],"title":"满20年","value":"21","key":"21"},{"children":[],"title":"不满10年","value":"23","key":"23"},{"children":[],"title":"满10年不满20年","value":"22","key":"22"}],"title":"退职年限","value":"2","key":"2"},{"children":[{"children":[],"title":"满30年不满35年","value":"12","key":"12"},{"children":[],"title":"满10年不满20年","value":"14","key":"14"},{"children":[],"title":"满35年","value":"11","key":"11"},{"children":[],"title":"不满10年","value":"15","key":"15"},{"children":[],"title":"满20年不满30年","value":"13","key":"13"}],"title":"退休年限","value":"1","key":"1"}]; //工作年限
+ export const ZQ = [{"children":[],"title":"调任","value":"1","key":"1"},{"children":[],"title":"招录","value":"3","key":"3"},{"children":[],"title":"调入","value":"2","key":"2"}]; //进入本单位方式
+ export const ZR = [{"children":[],"title":"41年以上","value":"005","key":"005"},{"children":[],"title":"10以下","value":"001","key":"001"},{"children":[],"title":"31-40年","value":"004","key":"004"},{"children":[],"title":"21-30年","value":"003","key":"003"},{"children":[],"title":"11-20年","value":"002","key":"002"}]; //工作年限代码
+ export const ZS = [{"children":[],"title":"飞利信北京银行","value":"03","key":"03"},{"children":[],"title":"中信银行","value":"01","key":"01"},{"children":[],"title":"飞利信招商银行","value":"04","key":"04"},{"children":[],"title":"飞利信中信银行","value":"02","key":"02"},{"children":[],"title":"东蓝北京银行","value":"05","key":"05"}]; //银行报盘标识
+ export const JT = [{"children":[],"title":"组织调动","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"个人申请调动","value":"2","key":"2"}]; //调动状态(GB/T 14946-2002 A.42)
+ export const JU = [{"children":[],"title":"船员专业技术职务岗位工资标准","value":"13","key":"13"},{"children":[],"title":"工程技术人员专业技术职务等级工资标准","value":"05","key":"05"},{"children":[],"title":"高教、科研人员专业技术职务等级工资标准","value":"01","key":"01"},{"children":[],"title":"图书、文物、博物专业人员技术职务等级工资标准","value":"10","key":"10"},{"children":[],"title":"体育教练员专业技术职务等级工资标准","value":"11","key":"11"},{"children":[],"title":"体育运动员体育津贴、奖金标准","value":"15","key":"15"},{"children":[],"title":"中小学教师专业技术职务等级工资标准","value":"02","key":"02"},{"children":[],"title":"翻译专业人员专业技术职务等级工资标准","value":"09","key":"09"},{"children":[],"title":"普通工人等级工资标准","value":"19","key":"19"},{"children":[],"title":"艺术表演人员艺术结构工资标准","value":"14","key":"14"},{"children":[],"title":"新闻、出版、广播电视专业人员技术职务等级工资标准","value":"08","key":"08"},{"children":[],"title":"技术工人技术等级工资标准","value":"18","key":"18"},{"children":[],"title":"行员等级工资标准","value":"16","key":"16"},{"children":[],"title":"经济、会计、统计专业人员专业技术职务等级工资标准","value":"07","key":"07"},{"children":[],"title":"职员职务等级工资标准","value":"17","key":"17"},{"children":[],"title":"中专、技校教师专业技术职务等级工资标准","value":"03","key":"03"},{"children":[],"title":"卫生技术人员专业技术职务等级工资标准","value":"04","key":"04"},{"children":[],"title":"地质、测绘野外工程技术人员专业技术职务岗位工资标准","value":"12","key":"12"},{"children":[],"title":"农业技术人员专业技术职务等级工资标准","value":"06","key":"06"}]; //工资标准类型(GB/T 14946-2002 A.48)
+ export const JV = [{"children":[],"title":"博士生","value":"1","key":"1"},{"children":[],"title":"硕士生","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"研究生班","value":"3","key":"3"}]; //培养研究生类别(GB/T 14946-2002 A.47)
+ export const JX = [{"children":[],"title":"编译","value":"3","key":"3"},{"children":[],"title":"著作","value":"2","key":"2"},{"children":[],"title":"论文","value":"1","key":"1"}]; //论文、著作标识(GB/T 14946-2002 A.44)
+ export const JZ = [{"children":[],"title":"独立完成","value":"1","key":"1"},{"children":[],"title":"合作完成","value":"2","key":"2"}]; //专技成果备注(GB/T 14946-2002 A.45)
+ export const KA = [{"children":[],"title":"国家统一分配","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"考试","value":"1","key":"1"},{"children":[],"title":"招聘","value":"3","key":"3"}]; //进入方式
+ export const KF = [{"children":[],"title":"年度内公开选拔上岗","value":"1","key":"1"},{"children":[],"title":"年度内竞争上岗","value":"2","key":"2"}]; //上岗方式(GB/T 14946-2002 A.78)
+ export const KG = [{"children":[],"title":"到国有企业单位","value":"2","key":"2"},{"children":[],"title":"出国出境","value":"4","key":"4"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"到三资企业","value":"3","key":"3"},{"children":[],"title":"到国有事业单位","value":"1","key":"1"}]; //辞职去向(GB/T 14946-2002 A.76)
+ export const KH = [{"children":[],"title":"自谋职业","value":"8","key":"8"},{"children":[],"title":"提前离岗","value":"2","key":"2"},{"children":[],"title":"到国有事、企业单位","value":"4","key":"4"},{"children":[],"title":"到龄离休退休","value":"6","key":"6"},{"children":[],"title":"达到年限退休","value":"7","key":"7"},{"children":[],"title":"到其他机关","value":"3","key":"3"},{"children":[],"title":"到非国有事、企业单位","value":"5","key":"5"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"参加学习培训","value":"1","key":"1"}]; //人员分流去向(GB/T 14946-2002 A.74)
+ export const KI = [{"children":[],"title":"回避","value":"1","key":"1"}]; //回避交流标识(GB/T 14946-2002 A.75)
+ export const KJ = [{"children":[],"title":"未通过","value":"2","key":"2"},{"children":[],"title":"通过","value":"1","key":"1"}]; //审批标识
+ export const KT = [{"children":[{"children":[],"title":"地(市)政协委员","value":"23","key":"23"},{"children":[],"title":"省政协委员","value":"22","key":"22"},{"children":[],"title":"全国政协委员","value":"21","key":"21"},{"children":[],"title":"县(市)政协委员","value":"24","key":"24"}],"title":"政协委员","value":"2","key":"2"},{"children":[{"children":[],"title":"省人大代表","value":"12","key":"12"},{"children":[],"title":"地(市)人大代表","value":"13","key":"13"},{"children":[],"title":"全国人大代表","value":"11","key":"11"},{"children":[],"title":"县(市)人大代表","value":"14","key":"14"}],"title":"人大代表","value":"1","key":"1"}]; //人大代表、政协委员代码(GB/T 2261.6-2003)
+ export const KU = [{"children":[],"title":"职工集体保险福利其他费用","value":"51","key":"51"},{"children":[],"title":"离退人员医疗卫生费","value":"55","key":"55"},{"children":[],"title":"职工集体福利设施费","value":"14","key":"14"},{"children":[],"title":"离退人员保险福利其他费用","value":"99","key":"99"},{"children":[],"title":"离休人员丧葬抚恤救济费","value":"59","key":"59"},{"children":[],"title":"职工个人其他保险福利费用","value":"19","key":"19"},{"children":[],"title":"离休金","value":"52","key":"52"},{"children":[],"title":"离休人员物价补贴","value":"61","key":"61"},{"children":[],"title":"退职生活费","value":"54","key":"54"},{"children":[],"title":"职工计划生育补贴","value":"03","key":"03"},{"children":[],"title":"职工生活困难补助","value":"02","key":"02"},{"children":[],"title":"生活补贴","value":"57","key":"57"},{"children":[],"title":"离休人员交通费补贴","value":"58","key":"58"},{"children":[],"title":"职工丧葬抚恤救济费","value":"01","key":"01"},{"children":[],"title":"职工冬季取暖补贴","value":"16","key":"16"},{"children":[],"title":"离休人员冬季取暖补贴","value":"60","key":"60"},{"children":[],"title":"职工医疗卫生费","value":"11","key":"11"},{"children":[],"title":"护理费","value":"56","key":"56"},{"children":[],"title":"职工集体福利事业补贴费","value":"13","key":"13"},{"children":[],"title":"退休金","value":"53","key":"53"},{"children":[],"title":"职工文体宣传费","value":"12","key":"12"}]; //保险福利费用细目代码(GB/T 14946-2002 A.34)
+ export const KV = [{"children":[],"title":"中国工程院院士","value":"3","key":"3"},{"children":[],"title":"两院院士","value":"1","key":"1"},{"children":[],"title":"中国科学院院士","value":"2","key":"2"}]; //院士代码(GB/T 2261.7-2003)
+ export const KW = [{"children":[],"title":"技术协作能手","value":"08","key":"08"},{"children":[],"title":"杰出(优秀)进城务工青年","value":"25","key":"25"},{"children":[],"title":"巾帼创业带头人","value":"39","key":"39"},{"children":[],"title":"各族青年团结进步杰出(优秀)奖","value":"21","key":"21"},{"children":[],"title":"优秀教育工作者","value":"54","key":"54"},{"children":[],"title":"青年岗位能手","value":"18","key":"18"},{"children":[],"title":"“不让毒品进我家”先进个人","value":"42","key":"42"},{"children":[],"title":"技术能手","value":"56","key":"56"},{"children":[],"title":"杰出(优秀)青年外事工作者","value":"26","key":"26"},{"children":[],"title":"青年科学家奖","value":"27","key":"27"},{"children":[],"title":"新长征突击手","value":"09","key":"09"},{"children":[],"title":"模范教师","value":"52","key":"52"},{"children":[],"title":"“双学双比”活动先进工作者","value":"37","key":"37"},{"children":[],"title":"杰出专业技术人才","value":"51","key":"51"},{"children":[],"title":"优秀工会工作者","value":"06","key":"06"},{"children":[],"title":"巾帼文明示范岗","value":"41","key":"41"},{"children":[],"title":"优秀共青团干部","value":"10","key":"10"},{"children":[],"title":"“巾帼建功”标兵","value":"40","key":"40"},{"children":[],"title":"先进生产者","value":"04","key":"04"},{"children":[],"title":"留学回国人员成就奖","value":"31","key":"31"},{"children":[],"title":"十大农民女状元","value":"34","key":"34"},{"children":[],"title":"五四新闻奖","value":"29","key":"29"},{"children":[],"title":"优秀共青团员","value":"15","key":"15"},{"children":[],"title":"优秀学生干部","value":"16","key":"16"},{"children":[],"title":"全国留学回国人员先进个人","value":"32","key":"32"},{"children":[],"title":"优秀共产党员","value":"05","key":"05"},{"children":[],"title":"人民满意的公务员","value":"48","key":"48"},{"children":[],"title":"民族团结进步模范","value":"33","key":"33"},{"children":[],"title":"三好学生","value":"13","key":"13"},{"children":[],"title":"特级劳动模范","value":"01","key":"01"},{"children":[],"title":"模范公务员","value":"47","key":"47"},{"children":[],"title":"“双学双比”先进女能手","value":"36","key":"36"},{"children":[],"title":"维护妇女儿童权益先进个人","value":"44","key":"44"},{"children":[],"title":"“不让毒品进我家”活动先进工作者","value":"43","key":"43"},{"children":[],"title":"十佳少先队辅导员","value":"17","key":"17"},{"children":[],"title":"农村优秀人才","value":"22","key":"22"},{"children":[],"title":"杰出(优秀)青年卫士","value":"19","key":"19"},{"children":[],"title":"十大绿化女状元","value":"38","key":"38"},{"children":[],"title":"政府特殊津贴获得者","value":"50","key":"50"},{"children":[],"title":"三八红旗手","value":"11","key":"11"},{"children":[],"title":"杰出青年农民","value":"23","key":"23"},{"children":[],"title":"青年科技创新奖","value":"28","key":"28"},{"children":[],"title":"有突击贡献的中青年专家","value":"49","key":"49"},{"children":[],"title":"未成年人保护杰出(优秀)公民","value":"30","key":"30"},{"children":[],"title":"劳动英雄","value":"03","key":"03"},{"children":[],"title":"中国十大女杰","value":"35","key":"35"},{"children":[],"title":"优秀毕业生","value":"14","key":"14"},{"children":[],"title":"先进工作者","value":"45","key":"45"},{"children":[],"title":"农村青年创业致富带头人","value":"24","key":"24"},{"children":[],"title":"劳动模范","value":"02","key":"02"},{"children":[],"title":"十大杰出青年","value":"20","key":"20"},{"children":[],"title":"优秀工会积极分子","value":"07","key":"07"},{"children":[],"title":"优秀教师","value":"53","key":"53"},{"children":[],"title":"中华技能大奖","value":"55","key":"55"},{"children":[],"title":"优秀常务工作者","value":"46","key":"46"}]; //荣誉称号名称代码(GB/T 8563.2-2003)
+ export const KX = [{"children":[],"title":"二级英雄模范奖章","value":"903","key":"903"},{"children":[],"title":"二等功奖章","value":"905","key":"905"},{"children":[],"title":"雏鹰奖章","value":"912","key":"912"},{"children":[],"title":"三等功奖章","value":"906","key":"906"},{"children":[],"title":"全国“三八绿色”奖章","value":"914","key":"914"},{"children":[],"title":"杰出专业技术人才奖章","value":"915","key":"915"},{"children":[],"title":"优秀毕业生奖章","value":"910","key":"910"},{"children":[],"title":"五一劳动奖章","value":"901","key":"901"},{"children":[],"title":"一级英雄模范奖章","value":"902","key":"902"},{"children":[],"title":"全国星星火炬奖章","value":"913","key":"913"},{"children":[],"title":"一等功奖章","value":"904","key":"904"},{"children":[],"title":"中国青年五四奖章","value":"911","key":"911"}]; //荣誉奖章代码(GB/T 8563.2-2003)
+ export const KY = [{"children":[],"title":"职业资格五级(初级)","value":"5","key":"5"},{"children":[],"title":"职业资格二级(技师)","value":"2","key":"2"},{"children":[],"title":"职业资格四级(中级)","value":"4","key":"4"},{"children":[],"title":"职业资格一级(高级技师)","value":"1","key":"1"},{"children":[],"title":"职业资格三级(高级)","value":"3","key":"3"}]; //国家职业资格(工人技术等级)代码(GB/T 14946-2002 A.13)
+ export const KZ = [{"children":[],"title":"国际学术团体","value":"1","key":"1"},{"children":[],"title":"国家级学术团体","value":"2","key":"2"},{"children":[],"title":"省市、部委级学术团体","value":"3","key":"3"},{"children":[],"title":"地(市)级学术团体","value":"4","key":"4"}]; //学术团体层次(GB/T 14946-2002 A.46)
+ export const LB = [{"children":[],"title":"职务晋升","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"两年考核合格正常晋档","value":"2","key":"2"}]; //职务工资变动原因(GB/T 14946-2002 A.81)
+ export const LC = [{"children":[],"title":"职务晋升","value":"1","key":"1"},{"children":[{"children":[],"title":"连续三年考核优秀倒级差","value":"32","key":"32"},{"children":[],"title":"连续三年考核优秀晋升一级","value":"31","key":"31"}],"title":"连续三年考核优秀","value":"3","key":"3"},{"children":[{"children":[],"title":"连续五年考核合格倒级差","value":"22","key":"22"},{"children":[],"title":"连续五年考核合格晋升一级","value":"21","key":"21"}],"title":"连续五年考核合格","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"}]; //级别工资变动原因(GB/T 14946-2002 A.82)
+ export const LD = [{"children":[],"title":"职务工资变动","value":"2","key":"2"},{"children":[],"title":"其他变动","value":"9","key":"9"},{"children":[],"title":"级别工资变动","value":"1","key":"1"},{"children":[],"title":"岗位工资变动","value":"4","key":"4"},{"children":[],"title":"基础工资变动","value":"3","key":"3"}]; //工资变动类型(GB/T 14946-2002 A.83)
+ export const LF = [{"children":[{"children":[],"title":"脱产学习","value":"21","key":"21"},{"children":[],"title":"因私出国","value":"22","key":"22"}],"title":"事假","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"病假","value":"1","key":"1"},{"children":[],"title":"因个人原因不参加考核","value":"3","key":"3"}]; //未参加考核原因代码(GB/T 14946-2002 A.66)
+ export const LG = [{"children":[],"title":"俄语","value":"061","key":"061"},{"children":[],"title":"土语","value":"509","key":"509"},{"children":[],"title":"怒语","value":"541","key":"541"},{"children":[],"title":"基诺语","value":"538","key":"538"},{"children":[],"title":"门巴语","value":"540","key":"540"},{"children":[],"title":"仡佬语","value":"532","key":"532"},{"children":[],"title":"鄂温克语","value":"514","key":"514"},{"children":[],"title":"裕固语","value":"501","key":"501"},{"children":[],"title":"赫哲语","value":"517","key":"517"},{"children":[],"title":"仫佬语","value":"568","key":"568"},{"children":[],"title":"东乡语","value":"508","key":"508"},{"children":[],"title":"壮语","value":"224","key":"224"},{"children":[],"title":"塔吉克语","value":"111","key":"111"},{"children":[],"title":"土家语","value":"544","key":"544"},{"children":[],"title":"布朗语","value":"585","key":"585"},{"children":[],"title":"哈尼语","value":"552","key":"552"},{"children":[],"title":"哈萨克语","value":"163","key":"163"},{"children":[],"title":"佤语","value":"586","key":"586"},{"children":[],"title":"白语","value":"551","key":"551"},{"children":[],"title":"崩龙语","value":"584","key":"584"},{"children":[],"title":"黎语","value":"563","key":"563"},{"children":[],"title":"苗语","value":"580","key":"580"},{"children":[],"title":"维吾尔语","value":"223","key":"223"},{"children":[],"title":"阿昌语","value":"536","key":"536"},{"children":[],"title":"乌孜别克语","value":"168","key":"168"},{"children":[],"title":"僳僳语","value":"554","key":"554"},{"children":[],"title":"羌语","value":"543","key":"543"},{"children":[],"title":"朝鲜语","value":"217","key":"217"},{"children":[],"title":"布依语","value":"574","key":"574"},{"children":[],"title":"撒拉语","value":"524","key":"524"},{"children":[],"title":"满语","value":"518","key":"518"},{"children":[],"title":"毛难语","value":"569","key":"569"},{"children":[],"title":"珞巴语","value":"539","key":"539"},{"children":[],"title":"藏语","value":"215","key":"215"},{"children":[],"title":"高山语","value":"590","key":"590"},{"children":[],"title":"保安语","value":"506","key":"506"},{"children":[],"title":"普米语","value":"542","key":"542"},{"children":[],"title":"汉语(中文)","value":"211","key":"211"},{"children":[],"title":"傣语","value":"212","key":"212"},{"children":[],"title":"拉祜语","value":"553","key":"553"},{"children":[],"title":"鄂伦春语","value":"513","key":"513"},{"children":[],"title":"达斡尔语","value":"507","key":"507"},{"children":[],"title":"塔塔尔语","value":"161","key":"161"},{"children":[],"title":"彝语","value":"556","key":"556"},{"children":[],"title":"柯尔克孜语","value":"162","key":"162"},{"children":[],"title":"锡伯语","value":"519","key":"519"},{"children":[],"title":"独龙语","value":"537","key":"537"},{"children":[],"title":"纳西语","value":"555","key":"555"},{"children":[],"title":"景颇语","value":"548","key":"548"},{"children":[],"title":"蒙古语","value":"222","key":"222"},{"children":[],"title":"瑶语","value":"531","key":"531"},{"children":[],"title":"侗语","value":"567","key":"567"},{"children":[],"title":"京语","value":"533","key":"533"},{"children":[],"title":"水语","value":"570","key":"570"}]; //中国语种代码(GB/T 4881-1985)
+ export const LH = [{"children":[{"children":[],"title":"考古学其他学科","value":"78099","key":"78099"},{"children":[],"title":"考古理论","value":"78010","key":"78010"},{"children":[],"title":"考古技术","value":"78030","key":"78030"},{"children":[],"title":"中国考古","value":"78040","key":"78040"},{"children":[],"title":"专门考古","value":"78060","key":"78060"},{"children":[],"title":"外国考古","value":"78050","key":"78050"},{"children":[],"title":"考古学史","value":"78020","key":"78020"}],"title":"考古学","value":"780","key":"780"},{"children":[{"children":[],"title":"钢铁冶金","value":"45035","key":"45035"},{"children":[],"title":"轧制","value":"45045","key":"45045"},{"children":[],"title":"冶金机械及自动化","value":"45050","key":"45050"},{"children":[],"title":"冶金技术","value":"45030","key":"45030"},{"children":[],"title":"冶金反应工程","value":"45015","key":"45015"},{"children":[],"title":"冶金物理化学","value":"45010","key":"45010"},{"children":[],"title":"冶金原料与预处理","value":"45020","key":"45020"},{"children":[],"title":"有色金属冶金","value":"45040","key":"45040"},{"children":[],"title":"冶金热能工程","value":"45025","key":"45025"},{"children":[],"title":"冶金工程技术其他学科","value":"45099","key":"45099"}],"title":"冶金工程技术","value":"450","key":"450"},{"children":[{"children":[],"title":"林业工程","value":"22055","key":"22055"},{"children":[],"title":"防保林学","value":"22040","key":"22040"},{"children":[],"title":"森林保护学","value":"22030","key":"22030"},{"children":[],"title":"经济林学","value":"22045","key":"22045"},{"children":[],"title":"森林经理学","value":"22025","key":"22025"},{"children":[],"title":"林木遗传育种学","value":"22015","key":"22015"},{"children":[],"title":"林业经济学","value":"22065","key":"22065"},{"children":[],"title":"园林学","value":"22050","key":"22050"},{"children":[],"title":"林学其他学科","value":"22099","key":"22099"},{"children":[],"title":"森林统计学","value":"22060","key":"22060"},{"children":[],"title":"森林培育学","value":"22020","key":"22020"},{"children":[],"title":"林业基础学科","value":"22010","key":"22010"},{"children":[],"title":"野生动物保护与管理","value":"22035","key":"22035"}],"title":"林学","value":"220","key":"220"},{"children":[{"children":[],"title":"金属材料","value":"43040","key":"43040"},{"children":[],"title":"材料合成与加工工艺","value":"43035","key":"43035"},{"children":[],"title":"材料科学篚学科","value":"43010","key":"43010"},{"children":[],"title":"有机高分子材料","value":"43050","key":"43050"},{"children":[],"title":"材料失效与保护","value":"43020","key":"43020"},{"children":[],"title":"复合材料","value":"43055","key":"43055"},{"children":[],"title":"无机非金属材料","value":"43045","key":"43045"},{"children":[],"title":"材料表面与界面","value":"43015","key":"43015"},{"children":[],"title":"材料科学其他学科","value":"43099","key":"43099"},{"children":[],"title":"材料检测与分析技术","value":"43025","key":"43025"},{"children":[],"title":"材料实验","value":"43030","key":"43030"}],"title":"材料科学","value":"430","key":"430"},{"children":[{"children":[],"title":"卫生管理学","value":"33081","key":"33081"},{"children":[],"title":"劳动卫生学","value":"33061","key":"33061"},{"children":[],"title":"卫生检验学","value":"33044","key":"33044"},{"children":[],"title":"地方病学","value":"33037","key":"33037"},{"children":[],"title":"预防医学与卫生学其他学科","value":"33099","key":"33099"},{"children":[],"title":"卫生工程学","value":"33067","key":"33067"},{"children":[],"title":"毒理学","value":"33014","key":"33014"},{"children":[],"title":"优生学","value":"33074","key":"33074"},{"children":[],"title":"环境医学","value":"33031","key":"33031"},{"children":[],"title":"卫生经济学","value":"33071","key":"33071"},{"children":[],"title":"环境卫生学","value":"33057","key":"33057"},{"children":[],"title":"职业病学","value":"33034","key":"33034"},{"children":[],"title":"放射卫生学","value":"33064","key":"33064"},{"children":[],"title":"仪器卫生学","value":"33047","key":"33047"},{"children":[],"title":"流行病学","value":"33021","key":"33021"},{"children":[],"title":"营养学","value":"33011","key":"33011"},{"children":[],"title":"健康教育学","value":"33077","key":"33077"},{"children":[],"title":"妇幼卫生学","value":"33054","key":"33054"},{"children":[],"title":"消毒学","value":"33017","key":"33017"},{"children":[],"title":"社会医学","value":"33041","key":"33041"},{"children":[],"title":"儿少卫生学","value":"33051","key":"33051"},{"children":[],"title":"传染病学","value":"33024","key":"33024"},{"children":[],"title":"媒介生物控制学","value":"33027","key":"33027"}],"title":"预防医学与卫生学","value":"330","key":"330"},{"children":[{"children":[],"title":"比较语言学","value":"74015","key":"74015"},{"children":[],"title":"普通语言学","value":"74010","key":"74010"},{"children":[],"title":"应用语言学","value":"74035","key":"74035"},{"children":[],"title":"中国少数民族语言文字","value":"74045","key":"74045"},{"children":[],"title":"语言学其他学科","value":"74099","key":"74099"},{"children":[],"title":"心理语言学","value":"74030","key":"74030"},{"children":[],"title":"汉语研究","value":"74040","key":"74040"},{"children":[],"title":"语言地理学","value":"74020","key":"74020"},{"children":[],"title":"外国语言","value":"74050","key":"74050"},{"children":[],"title":"社会语言学","value":"74025","key":"74025"}],"title":"语言学","value":"740","key":"740"},{"children":[{"children":[],"title":"广播与电视","value":"86050","key":"86050"},{"children":[],"title":"新闻理论","value":"86010","key":"86010"},{"children":[],"title":"新闻业务","value":"86030","key":"86030"},{"children":[],"title":"新闻学与传播学其他学科","value":"86099","key":"86099"},{"children":[],"title":"传播学","value":"86060","key":"86060"},{"children":[],"title":"新闻事业经营管理","value":"86040","key":"86040"},{"children":[],"title":"新闻史","value":"86020","key":"86020"}],"title":"新闻学与传播学","value":"860","key":"860"},{"children":[{"children":[],"title":"动力机械工程","value":"47030","key":"47030"},{"children":[],"title":"电气工程","value":"47040","key":"47040"},{"children":[],"title":"工程热物理","value":"47010","key":"47010"},{"children":[],"title":"动力与电气工程其他学科","value":"47099","key":"47099"},{"children":[],"title":"热工学","value":"47020","key":"47020"}],"title":"动力与电气工程","value":"470","key":"470"},{"children":[{"children":[],"title":"飞行器仪表、设备","value":"59030","key":"59030"},{"children":[],"title":"飞行器制造技术","value":"59045","key":"59045"},{"children":[],"title":"航空器结构与设计","value":"59015","key":"59015"},{"children":[],"title":"航空、航天推进系统","value":"59025","key":"59025"},{"children":[],"title":"航空、航天科学技术基础学科","value":"59010","key":"59010"},{"children":[],"title":"航空、航天科学技术其他学科","value":"59099","key":"59099"},{"children":[],"title":"航空、航天系统工程","value":"59065","key":"59065"},{"children":[],"title":"飞行器试验技术","value":"59050","key":"59050"},{"children":[],"title":"飞行器发射、飞行技术","value":"59055","key":"59055"},{"children":[],"title":"航空、航天材料","value":"59040","key":"59040"},{"children":[],"title":"航天器结构与设计","value":"59020","key":"59020"},{"children":[],"title":"飞器控制、导航技术","value":"59035","key":"59035"},{"children":[],"title":"航天地面设施、技术保障","value":"59060","key":"59060"}],"title":"航空、航天科学技术","value":"590","key":"590"},{"children":[{"children":[],"title":"科学与科技管理","value":"63035","key":"63035"},{"children":[],"title":"管理计量学","value":"63025","key":"63025"},{"children":[],"title":"管理理论","value":"63015","key":"63015"},{"children":[],"title":"管理心理学","value":"63020","key":"63020"},{"children":[],"title":"未来学","value":"63060","key":"63060"},{"children":[],"title":"管理学其他学科","value":"63099","key":"63099"},{"children":[],"title":"行政管理","value":"63045","key":"63045"},{"children":[],"title":"企业管理","value":"63040","key":"63040"},{"children":[],"title":"部门经济管理","value":"63030","key":"63030"},{"children":[],"title":"人力资源开发与管理","value":"63055","key":"63055"},{"children":[],"title":"管理工程","value":"63050","key":"63050"},{"children":[],"title":"管理思想史","value":"63010","key":"63010"}],"title":"管理学","value":"630","key":"630"},{"children":[{"children":[],"title":"计算机工程","value":"52050","key":"52050"},{"children":[],"title":"计算机软件","value":"52040","key":"52040"},{"children":[],"title":"计算机应用","value":"52060","key":"52060"},{"children":[],"title":"人工智能","value":"52020","key":"52020"},{"children":[],"title":"计算机科学技术其他学科","value":"52099","key":"52099"},{"children":[],"title":"计算机科学技术基础学科","value":"52010","key":"52010"},{"children":[],"title":"计算机系统结构","value":"52030","key":"52030"}],"title":"计算机科学技术","value":"520","key":"520"},{"children":[{"children":[],"title":"中国各体文学","value":"75034","key":"75034"},{"children":[],"title":"拉美文学","value":"75081","key":"75081"},{"children":[],"title":"大洋洲文学","value":"75087","key":"75087"},{"children":[],"title":"比较文学","value":"75021","key":"75021"},{"children":[],"title":"文艺美学","value":"75014","key":"75014"},{"children":[],"title":"中国现代文学史","value":"75031","key":"75031"},{"children":[],"title":"俄国文学","value":"75054","key":"75054"},{"children":[],"title":"中国近代文学史","value":"75027","key":"75027"},{"children":[],"title":"意大利文学","value":"75067","key":"75067"},{"children":[],"title":"中国民间文学","value":"75037","key":"75037"},{"children":[],"title":"文学其他学科","value":"75099","key":"75099"},{"children":[],"title":"北欧文学","value":"75074","key":"75074"},{"children":[],"title":"中国少数民族文学","value":"75044","key":"75044"},{"children":[],"title":"东方文学","value":"75051","key":"75051"},{"children":[],"title":"德国文学","value":"75064","key":"75064"},{"children":[],"title":"文学批评","value":"75017","key":"75017"},{"children":[],"title":"中国古代文学史","value":"75024","key":"75024"},{"children":[],"title":"法国文学","value":"75061","key":"75061"},{"children":[],"title":"非洲文学","value":"75084","key":"75084"},{"children":[],"title":"文学理论","value":"75011","key":"75011"},{"children":[],"title":"美国文学","value":"75071","key":"75071"},{"children":[],"title":"东欧文学","value":"75077","key":"75077"},{"children":[],"title":"世界文学史","value":"75047","key":"75047"},{"children":[],"title":"英国文学","value":"75057","key":"75057"},{"children":[],"title":"中国儿童文学","value":"75041","key":"75041"}],"title":"文学","value":"750","key":"750"},{"children":[{"children":[],"title":"口腔医学","value":"32044","key":"32044"},{"children":[],"title":"临床诊断学","value":"32011","key":"32011"},{"children":[],"title":"儿科学","value":"32034","key":"32034"},{"children":[],"title":"保健医学","value":"32014","key":"32014"},{"children":[],"title":"皮肤病","value":"32047","key":"32047"},{"children":[],"title":"肿瘤学","value":"32067","key":"32067"},{"children":[],"title":"麻醉学","value":"32021","key":"32021"},{"children":[],"title":"护理学","value":"32071","key":"32071"},{"children":[],"title":"核医学","value":"32064","key":"32064"},{"children":[],"title":"妇产科学","value":"32031","key":"32031"},{"children":[],"title":"神经病学","value":"32054","key":"32054"},{"children":[],"title":"外科学","value":"32027","key":"32027"},{"children":[],"title":"性医学","value":"32051","key":"32051"},{"children":[],"title":"内科学","value":"32024","key":"32024"},{"children":[],"title":"耳鼻咽喉科学","value":"32041","key":"32041"},{"children":[],"title":"眼科学","value":"32037","key":"32037"},{"children":[],"title":"临床医学其他学科","value":"32099","key":"32099"},{"children":[],"title":"急诊医学","value":"32061","key":"32061"},{"children":[],"title":"理疗学","value":"32017","key":"32017"},{"children":[],"title":"精神病学","value":"32057","key":"32057"}],"title":"临床医学","value":"320","key":"320"},{"children":[{"children":[],"title":"放射性三废处理、处置技术","value":"49085","key":"49085"},{"children":[],"title":"辐射防护技术","value":"49075","key":"49075"},{"children":[],"title":"乏燃料后处理技术","value":"49070","key":"49070"},{"children":[],"title":"核聚变工程技术","value":"49045","key":"49045"},{"children":[],"title":"裂变堆工程技术","value":"49040","key":"49040"},{"children":[],"title":"核科学技术其他学科","value":"49099","key":"49099"},{"children":[],"title":"核材料与工艺技术","value":"49030","key":"49030"},{"children":[],"title":"核仪器、仪表","value":"49025","key":"49025"},{"children":[],"title":"粒子加速器","value":"49035","key":"49035"},{"children":[],"title":"核动力工程技术","value":"49050","key":"49050"},{"children":[],"title":"同位素技术","value":"49055","key":"49055"},{"children":[],"title":"核探测技术与核电子学","value":"49015","key":"49015"},{"children":[],"title":"核爆炸工程","value":"49060","key":"49060"},{"children":[],"title":"放射性计量学","value":"49020","key":"49020"},{"children":[],"title":"核安全","value":"49065","key":"49065"},{"children":[],"title":"辐射物理与技术","value":"49010","key":"49010"},{"children":[],"title":"核设施退役技术","value":"49080","key":"49080"}],"title":"核科学技术","value":"490","key":"490"},{"children":[{"children":[],"title":"土木建筑工程其他学科","value":"56099","key":"56099"},{"children":[],"title":"土木建筑工程基础学科","value":"56015","key":"56015"},{"children":[],"title":"土木建筑结构","value":"56035","key":"56035"},{"children":[],"title":"市政工程","value":"56055","key":"56055"},{"children":[],"title":"建筑史","value":"56010","key":"56010"},{"children":[],"title":"土木工程机械与设备","value":"56050","key":"56050"},{"children":[],"title":"土木建筑工程测量","value":"56020","key":"56020"},{"children":[],"title":"土木建筑工程设计","value":"56040","key":"56040"},{"children":[],"title":"土木建筑工程施工","value":"56045","key":"56045"},{"children":[],"title":"建筑经济学","value":"56060","key":"56060"},{"children":[],"title":"工程结构","value":"56030","key":"56030"},{"children":[],"title":"建筑材料","value":"56025","key":"56025"}],"title":"土木建筑工程测量","value":"560","key":"560"},{"children":[{"children":[],"title":"生物学其他学科","value":"18099","key":"18099"},{"children":[],"title":"生物工程","value":"18071","key":"18071"},{"children":[],"title":"生态学","value":"18044","key":"18044"},{"children":[],"title":"放射生物学","value":"18034","key":"18034"},{"children":[],"title":"发育生物学","value":"18027","key":"18027"},{"children":[],"title":"病毒学","value":"18064","key":"18064"},{"children":[],"title":"动物学","value":"18057","key":"18057"},{"children":[],"title":"昆虫学","value":"18054","key":"18054"},{"children":[],"title":"生物物理学","value":"18014","key":"18014"},{"children":[],"title":"生理学","value":"18024","key":"18024"},{"children":[],"title":"植物学","value":"18051","key":"18051"},{"children":[],"title":"人类学","value":"18067","key":"18067"},{"children":[],"title":"生物数学","value":"18011","key":"18011"},{"children":[],"title":"细胞生物学","value":"18021","key":"18021"},{"children":[],"title":"心理学","value":"18074","key":"18074"},{"children":[],"title":"生物进化论","value":"18041","key":"18041"},{"children":[],"title":"遗传学","value":"18031","key":"18031"},{"children":[],"title":"微生物学","value":"18061","key":"18061"},{"children":[],"title":"分子生物学","value":"18037","key":"18037"},{"children":[],"title":"生物化学","value":"18017","key":"18017"},{"children":[],"title":"神经生物学","value":"18047","key":"18047"}],"title":"生物学","value":"180","key":"180"},{"children":[{"children":[],"title":"部门法学","value":"82030","key":"82030"},{"children":[],"title":"国际法学","value":"82040","key":"82040"},{"children":[],"title":"理论法学","value":"82010","key":"82010"},{"children":[],"title":"法律史学","value":"82020","key":"82020"},{"children":[],"title":"法学其他学科","value":"82099","key":"82099"}],"title":"法学","value":"820","key":"820"},{"children":[{"children":[],"title":"病理学","value":"31044","key":"31044"},{"children":[],"title":"人体免疫学","value":"31034","key":"31034"},{"children":[],"title":"医学生物化学","value":"31011","key":"31011"},{"children":[],"title":"人体生理学","value":"31021","key":"31021"},{"children":[],"title":"医学寄生虫学","value":"31037","key":"31037"},{"children":[],"title":"放射医学","value":"31031","key":"31031"},{"children":[],"title":"医学细胞生物学","value":"31017","key":"31017"},{"children":[],"title":"医学统计学","value":"31057","key":"31057"},{"children":[],"title":"医学心理学","value":"31054","key":"31054"},{"children":[],"title":"医学微生物学","value":"31041","key":"31041"},{"children":[],"title":"人体解剖学","value":"31014","key":"31014"},{"children":[],"title":"人体组织胚胎学","value":"31024","key":"31024"},{"children":[],"title":"基础医学其他学科","value":"31099","key":"31099"},{"children":[],"title":"生物医学工程学","value":"31061","key":"31061"},{"children":[],"title":"医学实验动物学","value":"31051","key":"31051"},{"children":[],"title":"药理学","value":"31047","key":"31047"},{"children":[],"title":"医学遗传学","value":"31027","key":"31027"}],"title":"基础医学","value":"310","key":"310"},{"children":[{"children":[],"title":"无机化学工程","value":"53034","key":"53034"},{"children":[],"title":"化学工程其他学科","value":"53099","key":"53099"},{"children":[],"title":"煤化学工程","value":"53047","key":"53047"},{"children":[],"title":"毛皮与制革工程","value":"53061","key":"53061"},{"children":[],"title":"化工测量技术与仪器仪表","value":"53014","key":"53014"},{"children":[],"title":"化工机械与设备","value":"53031","key":"53031"},{"children":[],"title":"化学反应工程","value":"53024","key":"53024"},{"children":[],"title":"石油化学工程","value":"53051","key":"53051"},{"children":[],"title":"生物化学工程","value":"53067","key":"53067"},{"children":[],"title":"精细化学工程","value":"53054","key":"53054"},{"children":[],"title":"化工系统工程","value":"53027","key":"53027"},{"children":[],"title":"化工传递过程","value":"53017","key":"53017"},{"children":[],"title":"电化学工程","value":"53041","key":"53041"},{"children":[],"title":"化学分离工程","value":"53021","key":"53021"},{"children":[],"title":"高聚物工程","value":"53044","key":"53044"},{"children":[],"title":"造纸技术","value":"53057","key":"53057"},{"children":[],"title":"制药工程","value":"53064","key":"53064"},{"children":[],"title":"有机化学工程","value":"53037","key":"53037"},{"children":[],"title":"化学工程基础科学","value":"53011","key":"53011"}],"title":"化学工程","value":"530","key":"530"},{"children":[{"children":[],"title":"水利管理","value":"57060","key":"57060"},{"children":[],"title":"水利经济学","value":"57070","key":"57070"},{"children":[],"title":"海洋工程","value":"57050","key":"57050"},{"children":[],"title":"水利工程施工","value":"57035","key":"57035"},{"children":[],"title":"水利工程其他学科","value":"57099","key":"57099"},{"children":[],"title":"水处理","value":"57040","key":"57040"},{"children":[],"title":"环境水利","value":"57055","key":"57055"},{"children":[],"title":"水利工程基础学科","value":"57010","key":"57010"},{"children":[],"title":"河流泥沙工程学","value":"57045","key":"57045"},{"children":[],"title":"水工结构","value":"57025","key":"57025"},{"children":[],"title":"水工材料","value":"57020","key":"57020"},{"children":[],"title":"防洪工程","value":"57065","key":"57065"},{"children":[],"title":"水力机械","value":"57030","key":"57030"},{"children":[],"title":"水利工程测量","value":"57015","key":"57015"}],"title":"水利工程","value":"570","key":"570"},{"children":[{"children":[],"title":"环境经济学","value":"79051","key":"79051"},{"children":[],"title":"农村经济学","value":"79057","key":"79057"},{"children":[],"title":"资源经济学","value":"79049","key":"79049"},{"children":[],"title":"审计学","value":"79039","key":"79039"},{"children":[],"title":"经济史","value":"79027","key":"79027"},{"children":[],"title":"经济地理学","value":"79019","key":"79019"},{"children":[],"title":"信息经济学","value":"79069","key":"79069"},{"children":[],"title":"国防经济学","value":"79077","key":"79077"},{"children":[],"title":"国民经济学","value":"79031","key":"79031"},{"children":[],"title":"生产力经济学","value":"79023","key":"79023"},{"children":[],"title":"技术经济学","value":"79041","key":"79041"},{"children":[],"title":"管理经济学","value":"79033","key":"79033"},{"children":[],"title":"比较经济学","value":"79017","key":"79017"},{"children":[],"title":"货币银行学","value":"79073","key":"79073"},{"children":[],"title":"工业经济学","value":"79055","key":"79055"},{"children":[],"title":"数量经济学","value":"79035","key":"79035"},{"children":[],"title":"物资经济学","value":"79053","key":"79053"},{"children":[],"title":"生态经济学","value":"79043","key":"79043"},{"children":[],"title":"宏观经济学","value":"79013","key":"79013"},{"children":[],"title":"世界经济学","value":"79029","key":"79029"},{"children":[],"title":"财政学","value":"79071","key":"79071"},{"children":[],"title":"会计学","value":"79037","key":"79037"},{"children":[],"title":"商业经济学","value":"79063","key":"79063"},{"children":[],"title":"微观经济学","value":"79015","key":"79015"},{"children":[],"title":"经济思想史","value":"79025","key":"79025"},{"children":[],"title":"经济学其他学科","value":"79099","key":"79099"},{"children":[],"title":"农业经济学","value":"79059","key":"79059"},{"children":[],"title":"交通运输经济学","value":"79061","key":"79061"},{"children":[],"title":"政治经济学","value":"79011","key":"79011"},{"children":[],"title":"旅游经济学","value":"79067","key":"79067"},{"children":[],"title":"劳动经济学","value":"79045","key":"79045"},{"children":[],"title":"保险学","value":"79075","key":"79075"},{"children":[],"title":"城市经济学","value":"79047","key":"79047"},{"children":[],"title":"价格学","value":"79065","key":"79065"},{"children":[],"title":"发展经济学","value":"79021","key":"79021"}],"title":"经济学","value":"790","key":"790"},{"children":[{"children":[],"title":"机构制造自动化","value":"46050","key":"46050"},{"children":[],"title":"刀具技术","value":"46030","key":"46030"},{"children":[],"title":"专用机械工程","value":"46055","key":"46055"},{"children":[],"title":"机械制造工艺与设备","value":"46025","key":"46025"},{"children":[],"title":"机械工程其他学科","value":"46099","key":"46099"},{"children":[],"title":"流体传动与控制","value":"46045","key":"46045"},{"children":[],"title":"机床技术","value":"46035","key":"46035"},{"children":[],"title":"仪器仪表技术","value":"46040","key":"46040"},{"children":[],"title":"机械学","value":"46015","key":"46015"},{"children":[],"title":"机械史","value":"46010","key":"46010"},{"children":[],"title":"机械设计","value":"46020","key":"46020"}],"title":"机械工程","value":"460","key":"460"},{"children":[{"children":[],"title":"博物馆学","value":"87050","key":"87050"},{"children":[],"title":"图书馆学","value":"87010","key":"87010"},{"children":[],"title":"档案学","value":"87040","key":"87040"},{"children":[],"title":"图书馆、情报与文献学其他学科","value":"87099","key":"87099"},{"children":[],"title":"文献学","value":"87020","key":"87020"},{"children":[],"title":"情报学","value":"87030","key":"87030"}],"title":"图书馆、情报与文献学","value":"870","key":"870"},{"children":[{"children":[],"title":"流体力学","value":"13025","key":"13025"},{"children":[],"title":"爆炸力学","value":"13035","key":"13035"},{"children":[],"title":"基础力学","value":"13010","key":"13010"},{"children":[],"title":"力学其他学科","value":"13099","key":"13099"},{"children":[],"title":"固体力学","value":"13015","key":"13015"},{"children":[],"title":"物理力学","value":"13040","key":"13040"},{"children":[],"title":"流变学","value":"13030","key":"13030"},{"children":[],"title":"振动与波","value":"13020","key":"13020"},{"children":[],"title":"应用力学","value":"13050","key":"13050"},{"children":[],"title":"统计力学","value":"13045","key":"13045"}],"title":"力学","value":"130","key":"130"},{"children":[{"children":[],"title":"现代外国哲学","value":"72035","key":"72035"},{"children":[],"title":"逻辑学","value":"72040","key":"72040"},{"children":[],"title":"中国哲学史","value":"72020","key":"72020"},{"children":[],"title":"西方哲学史","value":"72030","key":"72030"},{"children":[],"title":"哲学其他学科","value":"72099","key":"72099"},{"children":[],"title":"自然辩证法","value":"72015","key":"72015"},{"children":[],"title":"东方哲学史","value":"72025","key":"72025"},{"children":[],"title":"美学","value":"72050","key":"72050"},{"children":[],"title":"马克思主义哲学","value":"72010","key":"72010"},{"children":[],"title":"伦理学","value":"72045","key":"72045"}],"title":"哲学","value":"720","key":"720"},{"children":[{"children":[],"title":"体育教育学","value":"89050","key":"89050"},{"children":[],"title":"体育保健学","value":"89040","key":"89040"},{"children":[],"title":"运动训练学","value":"89045","key":"89045"},{"children":[],"title":"体育管理学","value":"89060","key":"89060"},{"children":[],"title":"体育理论","value":"89015","key":"89015"},{"children":[],"title":"运动生理学","value":"89025","key":"89025"},{"children":[],"title":"武术理论与方法","value":"89055","key":"89055"},{"children":[],"title":"体育经济学","value":"89065","key":"89065"},{"children":[],"title":"运动生物力学","value":"89020","key":"89020"},{"children":[],"title":"运动生物化学","value":"89035","key":"89035"},{"children":[],"title":"运动心理学","value":"89030","key":"89030"},{"children":[],"title":"体育史","value":"89010","key":"89010"},{"children":[],"title":"体育科学其他学科","value":"89099","key":"89099"}],"title":"体育科学","value":"890","key":"890"},{"children":[{"children":[],"title":"基督教","value":"73027","key":"73027"},{"children":[],"title":"伊斯兰教","value":"73031","key":"73031"},{"children":[],"title":"中国民间宗教与民间信仰","value":"73061","key":"73061"},{"children":[],"title":"摩尼教","value":"73047","key":"73047"},{"children":[],"title":"佛教","value":"73024","key":"73024"},{"children":[],"title":"耆那教","value":"73054","key":"73054"},{"children":[],"title":"神道教","value":"73057","key":"73057"},{"children":[],"title":"道教","value":"73034","key":"73034"},{"children":[],"title":"当代宗教","value":"73067","key":"73067"},{"children":[],"title":"犹太教","value":"73041","key":"73041"},{"children":[],"title":"中国少数民族宗教","value":"73064","key":"73064"},{"children":[],"title":"宗教学理论","value":"73011","key":"73011"},{"children":[],"title":"袄教","value":"73044","key":"73044"},{"children":[],"title":"印度教","value":"73037","key":"73037"},{"children":[],"title":"无神论","value":"73014","key":"73014"},{"children":[],"title":"锡克教","value":"73051","key":"73051"},{"children":[],"title":"原始宗教","value":"73017","key":"73017"},{"children":[],"title":"宗教学其他学科","value":"73099","key":"73099"},{"children":[],"title":"古代宗教","value":"73021","key":"73021"}],"title":"宗教学","value":"730","key":"730"},{"children":[{"children":[],"title":"交通运输安全工程","value":"58080","key":"58080"},{"children":[],"title":"道路工程","value":"58010","key":"58010"},{"children":[],"title":"船舶、舰船、工程","value":"58050","key":"58050"},{"children":[],"title":"水路运输","value":"58040","key":"58040"},{"children":[],"title":"航空运输","value":"58060","key":"58060"},{"children":[],"title":"交通运输工程其他学科","value":"58099","key":"58099"},{"children":[],"title":"交通运输系统工程","value":"58070","key":"58070"},{"children":[],"title":"公路运输","value":"58020","key":"58020"},{"children":[],"title":"铁路运输","value":"58030","key":"58030"}],"title":"交通运输工程","value":"580","key":"580"},{"children":[{"children":[],"title":"军事地学","value":"83060","key":"83060"},{"children":[],"title":"战略学","value":"83025","key":"83025"},{"children":[],"title":"军事理论","value":"83010","key":"83010"},{"children":[],"title":"战役学","value":"83030","key":"83030"},{"children":[],"title":"军事史","value":"83015","key":"83015"},{"children":[],"title":"军事技术","value":"83065","key":"83065"},{"children":[],"title":"军事心理学","value":"83020","key":"83020"},{"children":[],"title":"军事后勤学","value":"83055","key":"83055"},{"children":[],"title":"军制学","value":"83045","key":"83045"},{"children":[],"title":"军队指挥学","value":"83040","key":"83040"},{"children":[],"title":"战术学","value":"83035","key":"83035"},{"children":[],"title":"军事学其他学科","value":"83099","key":"83099"},{"children":[],"title":"军队政治工作学","value":"83050","key":"83050"}],"title":"军事学","value":"830","key":"830"},{"children":[{"children":[],"title":"大地测量学","value":"17035","key":"17035"},{"children":[],"title":"地图学","value":"17040","key":"17040"},{"children":[],"title":"固体地球物理学","value":"17020","key":"17020"},{"children":[],"title":"地球化学","value":"17030","key":"17030"},{"children":[],"title":"水文学","value":"17055","key":"17055"},{"children":[],"title":"地理学","value":"17045","key":"17045"},{"children":[],"title":"地质学","value":"17050","key":"17050"},{"children":[],"title":"地球科学其他学科","value":"17099","key":"17099"},{"children":[],"title":"海洋科学","value":"17060","key":"17060"},{"children":[],"title":"大气科学","value":"17015","key":"17015"},{"children":[],"title":"地球科学史","value":"17010","key":"17010"},{"children":[],"title":"空间物理学","value":"17025","key":"17025"}],"title":"地球科学","value":"170","key":"170"},{"children":[{"children":[],"title":"测绘科学技术其他学科","value":"42099","key":"42099"},{"children":[],"title":"测绘仪器","value":"42060","key":"42060"},{"children":[],"title":"地图制图技术","value":"42030","key":"42030"},{"children":[],"title":"海洋测绘","value":"42050","key":"42050"},{"children":[],"title":"摄影测量与遥感技术","value":"42020","key":"42020"},{"children":[],"title":"大地测量技术","value":"42010","key":"42010"},{"children":[],"title":"工程测量技术","value":"42040","key":"42040"}],"title":"测绘科学技术","value":"420","key":"420"},{"children":[{"children":[],"title":"蒙古学","value":"85030","key":"85030"},{"children":[],"title":"藏学","value":"85040","key":"85040"},{"children":[],"title":"民族学其他学科","value":"85099","key":"85099"},{"children":[],"title":"民族问题理论","value":"85010","key":"85010"},{"children":[],"title":"文化人类学与民俗学","value":"85050","key":"85050"},{"children":[],"title":"世界民族研究","value":"85060","key":"85060"},{"children":[],"title":"民族史学","value":"85020","key":"85020"}],"title":"民族学","value":"850","key":"850"},{"children":[{"children":[],"title":"食品工业企业管理学","value":"55060","key":"55060"},{"children":[],"title":"食品科学技术其他学科","value":"55099","key":"55099"},{"children":[],"title":"食品包装与储藏","value":"55030","key":"55030"},{"children":[],"title":"食品加工技术","value":"55020","key":"55020"},{"children":[],"title":"食品加工的副产品加工与利用","value":"55050","key":"55050"},{"children":[],"title":"食品机械","value":"55040","key":"55040"},{"children":[],"title":"食品科学技术基础学科","value":"55010","key":"55010"}],"title":"食品科学技术","value":"550","key":"550"},{"children":[{"children":[],"title":"天体演化学","value":"16045","key":"16045"},{"children":[],"title":"太阳与太阳系","value":"16060","key":"16060"},{"children":[],"title":"天文学其他学科","value":"16099","key":"16099"},{"children":[],"title":"射电天文学","value":"16035","key":"16035"},{"children":[],"title":"星系与宇宙学","value":"16050","key":"16050"},{"children":[],"title":"天体化学","value":"16025","key":"16025"},{"children":[],"title":"天体物理学","value":"16020","key":"16020"},{"children":[],"title":"恒星与银河系","value":"16055","key":"16055"},{"children":[],"title":"天体测量学","value":"16030","key":"16030"},{"children":[],"title":"天体力学","value":"16015","key":"16015"},{"children":[],"title":"天体生物学","value":"16065","key":"16065"},{"children":[],"title":"空间天文学","value":"16040","key":"16040"},{"children":[],"title":"天文学史","value":"16010","key":"16010"}],"title":"天文学","value":"160","key":"160"},{"children":[{"children":[],"title":"能源科学技术其他学科","value":"48099","key":"48099"},{"children":[],"title":"二次能源","value":"48070","key":"48070"},{"children":[],"title":"一次能源","value":"48060","key":"48060"},{"children":[],"title":"能源计算与测量","value":"48030","key":"48030"},{"children":[],"title":"能源化学","value":"48010","key":"48010"},{"children":[],"title":"能源系统工程","value":"48080","key":"48080"},{"children":[],"title":"节能技术","value":"48050","key":"48050"},{"children":[],"title":"能源地理学","value":"48020","key":"48020"},{"children":[],"title":"储能技术","value":"48040","key":"48040"}],"title":"能源科学技术","value":"480","key":"480"},{"children":[{"children":[],"title":"计算物理学","value":"14075","key":"14075"},{"children":[],"title":"理论物理学","value":"14015","key":"14015"},{"children":[],"title":"电磁学","value":"14035","key":"14035"},{"children":[],"title":"应用物理学","value":"14080","key":"14080"},{"children":[],"title":"高能物理学","value":"14070","key":"14070"},{"children":[],"title":"凝聚态物理学","value":"14050","key":"14050"},{"children":[],"title":"原子分子物理学","value":"14060","key":"14060"},{"children":[],"title":"等离子体物理学","value":"14055","key":"14055"},{"children":[],"title":"物理学史","value":"14010","key":"14010"},{"children":[],"title":"电子物理学","value":"14045","key":"14045"},{"children":[],"title":"物理学其他学科","value":"14099","key":"14099"},{"children":[],"title":"热学","value":"14025","key":"14025"},{"children":[],"title":"声学","value":"14020","key":"14020"},{"children":[],"title":"无线电物理","value":"14040","key":"14040"},{"children":[],"title":"光学","value":"14030","key":"14030"},{"children":[],"title":"原子核物理学","value":"14065","key":"14065"}],"title":"物理学","value":"140","key":"140"},{"children":[{"children":[],"title":"农业工程","value":"21070","key":"21070"},{"children":[],"title":"植物保护学","value":"21060","key":"21060"},{"children":[],"title":"农业史","value":"21010","key":"21010"},{"children":[],"title":"农学其他学科","value":"21099","key":"21099"},{"children":[],"title":"园艺学","value":"21040","key":"21040"},{"children":[],"title":"农业基础学科","value":"21020","key":"21020"},{"children":[],"title":"土壤学","value":"21050","key":"21050"},{"children":[],"title":"农艺学","value":"21030","key":"21030"}],"title":"农学","value":"210","key":"210"},{"children":[{"children":[],"title":"畜牧学","value":"23020","key":"23020"},{"children":[],"title":"兽医学","value":"23030","key":"23030"},{"children":[],"title":"畜牧、兽医科学其他学科","value":"23099","key":"23099"},{"children":[],"title":"畜牧、兽医科学基础学科","value":"23010","key":"23010"}],"title":"畜牧、兽医科学","value":"230","key":"230"},{"children":[{"children":[],"title":"职业卫生工程","value":"62040","key":"62040"},{"children":[],"title":"安全管理工程","value":"62050","key":"62050"},{"children":[],"title":"安全科学技术基础学科","value":"62010","key":"62010"},{"children":[],"title":"安全学","value":"62020","key":"62020"},{"children":[],"title":"安全科学技术其他学科","value":"62099","key":"62099"},{"children":[],"title":"安全工程","value":"62030","key":"62030"}],"title":"安全科学技术","value":"620","key":"620"},{"children":[{"children":[],"title":"通信技术","value":"51050","key":"51050"},{"children":[],"title":"半导体技术","value":"51030","key":"51030"},{"children":[],"title":"信息处理技术","value":"51040","key":"51040"},{"children":[],"title":"电子技术","value":"51010","key":"51010"},{"children":[],"title":"电子、通信与自动控制技术其他学科","value":"51099","key":"51099"},{"children":[],"title":"广播与电视工程技术","value":"51060","key":"51060"},{"children":[],"title":"光电子学与激光技术","value":"51020","key":"51020"},{"children":[],"title":"自动控制技术","value":"51080","key":"51080"},{"children":[],"title":"雷达工程","value":"51070","key":"51070"}],"title":"电子、通信与自动控制技术","value":"510","key":"510"},{"children":[{"children":[],"title":"水产品贮藏与加工","value":"24040","key":"24040"},{"children":[],"title":"水产养殖学","value":"24020","key":"24020"},{"children":[],"title":"水产经济学","value":"24055","key":"24055"},{"children":[],"title":"水产饲料学","value":"24025","key":"24025"},{"children":[],"title":"水产保护学","value":"24030","key":"24030"},{"children":[],"title":"水产学其他学科","value":"24099","key":"24099"},{"children":[],"title":"水产增殖学","value":"24015","key":"24015"},{"children":[],"title":"水产工程学","value":"24045","key":"24045"},{"children":[],"title":"水产资源学","value":"24050","key":"24050"},{"children":[],"title":"水产学基础学科","value":"24010","key":"24010"},{"children":[],"title":"捕捞学","value":"24035","key":"24035"}],"title":"水产学","value":"240","key":"240"},{"children":[{"children":[],"title":"应用化学","value":"15055","key":"15055"},{"children":[],"title":"核化学","value":"15050","key":"15050"},{"children":[],"title":"有机化学","value":"15020","key":"15020"},{"children":[],"title":"化学物理学","value":"15035","key":"15035"},{"children":[],"title":"高分子物理","value":"15040","key":"15040"},{"children":[],"title":"化学史","value":"15010","key":"15010"},{"children":[],"title":"物理化学","value":"15030","key":"15030"},{"children":[],"title":"高分子化学","value":"15045","key":"15045"},{"children":[],"title":"分析化学","value":"15025","key":"15025"},{"children":[],"title":"无机化学","value":"15015","key":"15015"},{"children":[],"title":"化学其他学科","value":"15099","key":"15099"}],"title":"化学","value":"150","key":"150"},{"children":[{"children":[],"title":"国际政治学","value":"81040","key":"81040"},{"children":[],"title":"政治学其他学科","value":"81099","key":"81099"},{"children":[],"title":"行政学","value":"81030","key":"81030"},{"children":[],"title":"政治学理论","value":"81010","key":"81010"},{"children":[],"title":"政治制度","value":"81020","key":"81020"}],"title":"政治学","value":"810","key":"810"},{"children":[{"children":[],"title":"勘查技术","value":"41065","key":"41065"},{"children":[],"title":"工程数学","value":"41010","key":"41010"},{"children":[],"title":"标准化科学技术","value":"41050","key":"41050"},{"children":[],"title":"工程图学","value":"41060","key":"41060"},{"children":[],"title":"工程仿生学","value":"41040","key":"41040"},{"children":[],"title":"工程心理学","value":"41045","key":"41045"},{"children":[],"title":"工程水文学","value":"41035","key":"41035"},{"children":[],"title":"工程通用技术","value":"41070","key":"41070"},{"children":[],"title":"工程力学","value":"41020","key":"41020"},{"children":[],"title":"工程地质学","value":"41030","key":"41030"},{"children":[],"title":"工业工程学","value":"41075","key":"41075"},{"children":[],"title":"工程与技术科学基础学科其他学科","value":"41099","key":"41099"},{"children":[],"title":"计量学","value":"41055","key":"41055"},{"children":[],"title":"工程物理学","value":"41025","key":"41025"},{"children":[],"title":"工程控制论","value":"41015","key":"41015"}],"title":"工程与技术科学基础学科","value":"410","key":"410"},{"children":[{"children":[],"title":"马克思主义其他学科","value":"71099","key":"71099"},{"children":[],"title":"社会主义运动史","value":"71050","key":"71050"},{"children":[],"title":"毛泽东思想研究","value":"71020","key":"71020"},{"children":[],"title":"国外马克思主义研究","value":"71060","key":"71060"},{"children":[],"title":"马克思主义思想史","value":"71030","key":"71030"},{"children":[],"title":"马、恩、列、斯思想研究","value":"71010","key":"71010"},{"children":[],"title":"科学社会主义","value":"71040","key":"71040"}],"title":"马克思主义","value":"710","key":"710"},{"children":[{"children":[],"title":"矿山机械工程","value":"44060","key":"44060"},{"children":[],"title":"钻井工程","value":"44045","key":"44045"},{"children":[],"title":"矿山地质学","value":"44010","key":"44010"},{"children":[],"title":"矿山设计","value":"44020","key":"44020"},{"children":[],"title":"矿山工程技术其他学科","value":"44099","key":"44099"},{"children":[],"title":"石油、天烯气储存与运输工程","value":"44055","key":"44055"},{"children":[],"title":"油气田开发工程","value":"44050","key":"44050"},{"children":[],"title":"矿山综合利用工程","value":"44080","key":"44080"},{"children":[],"title":"矿山地面工程","value":"44025","key":"44025"},{"children":[],"title":"采矿环境工程","value":"44070","key":"44070"},{"children":[],"title":"选矿工程","value":"44040","key":"44040"},{"children":[],"title":"井巷工程","value":"44030","key":"44030"},{"children":[],"title":"矿山安全","value":"44075","key":"44075"},{"children":[],"title":"矿山电气工程","value":"44065","key":"44065"},{"children":[],"title":"采矿工程","value":"44035","key":"44035"},{"children":[],"title":"矿山测量","value":"44015","key":"44015"}],"title":"矿山工程技术","value":"440","key":"440"},{"children":[{"children":[],"title":"纺织机械与设备","value":"54070","key":"54070"},{"children":[],"title":"纤维制造技术","value":"54030","key":"54030"},{"children":[],"title":"纺织科学技术其他学科","value":"54099","key":"54099"},{"children":[],"title":"染整技术","value":"54050","key":"54050"},{"children":[],"title":"纺织科学技术基础学科","value":"54010","key":"54010"},{"children":[],"title":"纺织材料","value":"54020","key":"54020"},{"children":[],"title":"服装技术","value":"54060","key":"54060"},{"children":[],"title":"纺织技术","value":"54040","key":"54040"}],"title":"纺织科学技术","value":"540","key":"540"},{"children":[{"children":[],"title":"中药学","value":"36040","key":"36040"},{"children":[],"title":"中西医结合医学","value":"36030","key":"36030"},{"children":[],"title":"中医学","value":"36010","key":"36010"},{"children":[],"title":"民族医学","value":"36020","key":"36020"},{"children":[],"title":"中医学与中药学其他学科","value":"36099","key":"36099"}],"title":"中医学与中药学","value":"360","key":"360"},{"children":[{"children":[],"title":"军事医学与特种医学其他学科","value":"34099","key":"34099"},{"children":[],"title":"军事医学与特种医学","value":"34010","key":"34010"},{"children":[],"title":"特种医学","value":"34020","key":"34020"}],"title":"军事医学与特种医学","value":"340","key":"340"},{"children":[{"children":[],"title":"药学其他学科","value":"35099","key":"35099"},{"children":[],"title":"药剂学","value":"35035","key":"35035"},{"children":[],"title":"放射性药物学","value":"35030","key":"35030"},{"children":[],"title":"药效学","value":"35040","key":"35040"},{"children":[],"title":"药物统计学","value":"35050","key":"35050"},{"children":[],"title":"微生物药物学","value":"35025","key":"35025"},{"children":[],"title":"生物药物学","value":"35020","key":"35020"},{"children":[],"title":"药物化学","value":"35010","key":"35010"},{"children":[],"title":"药物管理学","value":"35045","key":"35045"}],"title":"药学","value":"350","key":"350"},{"children":[{"children":[],"title":"环境科学技术其他学科","value":"61099","key":"61099"},{"children":[],"title":"环境工程学","value":"61030","key":"61030"},{"children":[],"title":"环境学","value":"61020","key":"61020"},{"children":[],"title":"环境科学技术基础学科","value":"61010","key":"61010"}],"title":"环境科学技术","value":"610","key":"610"},{"children":[{"children":[],"title":"社会人类学","value":"84057","key":"84057"},{"children":[],"title":"比较社会学","value":"84031","key":"84031"},{"children":[],"title":"社会心理学","value":"84051","key":"84051"},{"children":[],"title":"实验社会学","value":"84021","key":"84021"},{"children":[],"title":"福利社会学","value":"84067","key":"84067"},{"children":[],"title":"社会地理学","value":"84034","key":"84034"},{"children":[],"title":"历史社会学","value":"84041","key":"84041"},{"children":[],"title":"应用社会学","value":"84027","key":"84027"},{"children":[],"title":"经济社会学","value":"84044","key":"84044"},{"children":[],"title":"公共关系学","value":"84054","key":"84054"},{"children":[],"title":"人口学","value":"84071","key":"84071"},{"children":[],"title":"社会学史","value":"84011","key":"84011"},{"children":[],"title":"文化社会学","value":"84037","key":"84037"},{"children":[],"title":"社会学其他学科","value":"84099","key":"84099"},{"children":[],"title":"发展社会学","value":"84064","key":"84064"},{"children":[],"title":"数理社会学","value":"84024","key":"84024"},{"children":[],"title":"军事社会学","value":"84047","key":"84047"},{"children":[],"title":"组织社会学","value":"84061","key":"84061"},{"children":[],"title":"社会学方法","value":"84017","key":"84017"},{"children":[],"title":"社会学理论","value":"84014","key":"84014"}],"title":"社会学","value":"840","key":"840"},{"children":[{"children":[],"title":"音乐","value":"76015","key":"76015"},{"children":[],"title":"艺术学其他学科","value":"76099","key":"76099"},{"children":[],"title":"戏曲","value":"76025","key":"76025"},{"children":[],"title":"舞蹈","value":"76030","key":"76030"},{"children":[],"title":"工艺美术","value":"76050","key":"76050"},{"children":[],"title":"电影","value":"76035","key":"76035"},{"children":[],"title":"美术","value":"76045","key":"76045"},{"children":[],"title":"广播电视文艺","value":"76040","key":"76040"},{"children":[],"title":"戏剧","value":"76020","key":"76020"},{"children":[],"title":"艺术心理学","value":"76010","key":"76010"},{"children":[],"title":"摄影","value":"76060","key":"76060"},{"children":[],"title":"书法","value":"76055","key":"76055"}],"title":"艺术学","value":"760","key":"760"},{"children":[{"children":[],"title":"世界通史","value":"77040","key":"77040"},{"children":[],"title":"美洲史","value":"77055","key":"77055"},{"children":[],"title":"澳洲、大洋洲史","value":"77065","key":"77065"},{"children":[],"title":"历史文献学","value":"77020","key":"77020"},{"children":[],"title":"非洲史","value":"77050","key":"77050"},{"children":[],"title":"亚洲史","value":"77045","key":"77045"},{"children":[],"title":"中国近代史、现代史","value":"77035","key":"77035"},{"children":[],"title":"欧洲史","value":"77060","key":"77060"},{"children":[],"title":"中国通史","value":"77025","key":"77025"},{"children":[],"title":"史学史","value":"77010","key":"77010"},{"children":[],"title":"中国古代史","value":"77030","key":"77030"},{"children":[],"title":"历史学其他学科","value":"77099","key":"77099"},{"children":[],"title":"史学理论","value":"77015","key":"77015"},{"children":[],"title":"专门史","value":"77070","key":"77070"}],"title":"历史学","value":"770","key":"770"},{"children":[{"children":[],"title":"数理逻辑与数学","value":"11014","key":"11014"},{"children":[],"title":"代数几何学","value":"11024","key":"11024"},{"children":[],"title":"应用统计数学","value":"11071","key":"11071"},{"children":[],"title":"拓扑学","value":"11031","key":"11031"},{"children":[],"title":"离散数学","value":"11081","key":"11081"},{"children":[],"title":"偏微分方程","value":"11047","key":"11047"},{"children":[],"title":"组合数学","value":"11077","key":"11077"},{"children":[],"title":"常微分方程","value":"11044","key":"11044"},{"children":[],"title":"代数学","value":"11021","key":"11021"},{"children":[],"title":"动力系统","value":"11051","key":"11051"},{"children":[],"title":"模糊数学","value":"11084","key":"11084"},{"children":[],"title":"几何学","value":"11027","key":"11027"},{"children":[],"title":"数学其他学科","value":"11099","key":"11099"},{"children":[],"title":"数学分析","value":"11034","key":"11034"},{"children":[],"title":"数学史","value":"11011","key":"11011"},{"children":[],"title":"数论","value":"11017","key":"11017"},{"children":[],"title":"应用数学","value":"11087","key":"11087"},{"children":[],"title":"泛函分析","value":"11057","key":"11057"},{"children":[],"title":"非标准分析","value":"11037","key":"11037"},{"children":[],"title":"概率论","value":"11064","key":"11064"},{"children":[],"title":"运筹学","value":"11074","key":"11074"},{"children":[],"title":"函数论","value":"11041","key":"11041"},{"children":[],"title":"数理统计学","value":"11067","key":"11067"},{"children":[],"title":"计算数学","value":"11061","key":"11061"},{"children":[],"title":"积分方程","value":"11054","key":"11054"}],"title":"数学","value":"110","key":"110"},{"children":[{"children":[],"title":"理论统计学","value":"91015","key":"91015"},{"children":[],"title":"统计法学","value":"91020","key":"91020"},{"children":[],"title":"经济统计学","value":"91030","key":"91030"},{"children":[],"title":"国际统计学","value":"91055","key":"91055"},{"children":[],"title":"统计学史","value":"91010","key":"91010"},{"children":[],"title":"人口统计学","value":"91045","key":"91045"},{"children":[],"title":"描述统计学","value":"91025","key":"91025"},{"children":[],"title":"环境与生态统计学","value":"91050","key":"91050"},{"children":[],"title":"社会统计学","value":"91040","key":"91040"},{"children":[],"title":"科学技术统计学","value":"91035","key":"91035"},{"children":[],"title":"统计学其他学科","value":"91099","key":"91099"}],"title":"统计学","value":"910","key":"910"},{"children":[{"children":[],"title":"系统工程","value":"12060","key":"12060"},{"children":[],"title":"系统评估与可行性分析","value":"12040","key":"12040"},{"children":[],"title":"控制理论","value":"12030","key":"12030"},{"children":[],"title":"信息科学与系统科学基础学科","value":"12010","key":"12010"},{"children":[],"title":"信息科学与系统科学其他学科","value":"12099","key":"12099"},{"children":[],"title":"系统学","value":"12020","key":"12020"},{"children":[],"title":"系统工程方法论","value":"12050","key":"12050"}],"title":"信息科学与系统科学","value":"120","key":"120"},{"children":[{"children":[],"title":"教育史","value":"88011","key":"88011"},{"children":[],"title":"德育原理","value":"88021","key":"88021"},{"children":[],"title":"军事教育学","value":"88044","key":"88044"},{"children":[],"title":"学前教育学","value":"88047","key":"88047"},{"children":[],"title":"比较教育学","value":"88037","key":"88037"},{"children":[],"title":"教学论","value":"88017","key":"88017"},{"children":[],"title":"教育学其他学科","value":"88099","key":"88099"},{"children":[],"title":"特殊教育学","value":"88064","key":"88064"},{"children":[],"title":"教育学原理","value":"88014","key":"88014"},{"children":[],"title":"教育管理学","value":"88034","key":"88034"},{"children":[],"title":"高等教育学","value":"88054","key":"88054"},{"children":[],"title":"教育经济学","value":"88031","key":"88031"},{"children":[],"title":"普通教育学","value":"88051","key":"88051"},{"children":[],"title":"教育技术学","value":"88041","key":"88041"},{"children":[],"title":"成人教育学","value":"88057","key":"88057"},{"children":[],"title":"教育社会学","value":"88024","key":"88024"},{"children":[],"title":"教育心理学","value":"88027","key":"88027"},{"children":[],"title":"职业技术教育学","value":"88061","key":"88061"}],"title":"教育学","value":"880","key":"880"}]; //学科分类与代码(GB/T 13745-1992)
+ export const O0 = [{"children":[],"title":"六级职员","value":"06","key":"06"},{"children":[],"title":"五级职员","value":"05","key":"05"},{"children":[],"title":"四级职员","value":"04","key":"04"},{"children":[],"title":"十级职员","value":"10","key":"10"},{"children":[],"title":"九级职员","value":"09","key":"09"},{"children":[],"title":"一级职员","value":"01","key":"01"},{"children":[],"title":"八级职员","value":"08","key":"08"},{"children":[],"title":"七级职员","value":"07","key":"07"},{"children":[],"title":"三级职员","value":"03","key":"03"},{"children":[],"title":"二级职员","value":"02","key":"02"}]; //职员等级(RS-ZYDJ-2005)
+ export const O1 = [{"children":[{"children":[],"title":"近姻亲关系","value":"24","key":"24"},{"children":[],"title":"直系血亲关系","value":"22","key":"22"},{"children":[],"title":"夫妻关系","value":"21","key":"21"},{"children":[],"title":"三代以内旁系血亲关系","value":"23","key":"23"},{"children":[],"title":"其他","value":"29","key":"29"}],"title":"涉及与本人有亲属关系人员的利害关系的","value":"2","key":"2"},{"children":[],"title":"人事部标准","value":"1","key":"1"},{"children":[],"title":"其他可能影响公正执行公务的","value":"9","key":"9"}]; //回避原因(RS-HBYY-2005)
+ export const O2 = [{"children":[],"title":"纪委书记","value":"61","key":"61"},{"children":[],"title":"党委副书记","value":"13","key":"13"},{"children":[],"title":"党委书记","value":"11","key":"11"},{"children":[],"title":"党组成员","value":"23","key":"23"},{"children":[],"title":"支部副书记","value":"42","key":"42"},{"children":[],"title":"党小组长","value":"91","key":"91"},{"children":[],"title":"纪委常委","value":"63","key":"63"},{"children":[],"title":"支部委员","value":"43","key":"43"},{"children":[],"title":"党组书记","value":"21","key":"21"},{"children":[],"title":"总支委员","value":"33","key":"33"},{"children":[],"title":"党委候补委员","value":"16","key":"16"},{"children":[],"title":"常务委员","value":"14","key":"14"},{"children":[],"title":"纪委副书记","value":"62","key":"62"},{"children":[],"title":"常务副书记","value":"12","key":"12"},{"children":[],"title":"总支书记","value":"31","key":"31"},{"children":[],"title":"纪委候补委员","value":"65","key":"65"},{"children":[],"title":"支部书记","value":"41","key":"41"},{"children":[],"title":"党组副书记","value":"22","key":"22"},{"children":[],"title":"党委委员","value":"15","key":"15"},{"children":[],"title":"纪委委员","value":"64","key":"64"},{"children":[],"title":"总支副书记","value":"32","key":"32"}]; //党内职务(RS-DNZW-2004)
+ export const O3 = [{"children":[],"title":"合格","value":"3","key":"3"},{"children":[],"title":"基本称职","value":"4","key":"4"},{"children":[],"title":"不合格","value":"7","key":"7"},{"children":[],"title":"不确定考核等次","value":"9","key":"9"},{"children":[],"title":"基本合格","value":"5","key":"5"},{"children":[],"title":"称职","value":"2","key":"2"},{"children":[],"title":"优秀","value":"1","key":"1"},{"children":[],"title":"不称职","value":"6","key":"6"}]; //考核结果(RS-KHJG-2004)
+ export const O4 = [{"children":[{"children":[],"title":"中国人民解放军军人工作成绩奖励","value":"13","key":"13"},{"children":[],"title":"事企业职工工作成绩奖励","value":"12","key":"12"},{"children":[],"title":"国家公务员工作成绩奖励","value":"11","key":"11"}],"title":"工作成绩奖励","value":"1","key":"1"},{"children":[{"children":[],"title":"国家科学技术奖","value":"21","key":"21"},{"children":[],"title":"省(部)级以下的科学技术奖励","value":"24","key":"24"},{"children":[],"title":"部委科学技术奖","value":"22","key":"22"},{"children":[],"title":"省(自治区、直辖市、特别行政区)科学技术奖","value":"23","key":"23"},{"children":[],"title":"社会力量设立科学技术奖","value":"28","key":"28"}],"title":"科学技术奖励","value":"2","key":"2"},{"children":[{"children":[],"title":"国家教学成果奖","value":"31","key":"31"},{"children":[],"title":"其他教学成果奖励","value":"39","key":"39"}],"title":"教学成果奖励","value":"3","key":"3"},{"children":[{"children":[],"title":"国际和国外奖励","value":"81","key":"81"}],"title":"国际和国外奖励","value":"8","key":"8"}]; //奖励名称(RS-JLMC-2004)
+ export const O5 = [{"children":[],"title":"在工作中有发明创造或者提出合理化建议,取得显著经济效益或者社会效益的","value":"03","key":"03"},{"children":[],"title":"遵守纪律,廉洁奉公,作风正派,办事公道,模范作用突出的","value":"02","key":"02"},{"children":[],"title":"爱护公共财产,节约国家资财有突出成绩的","value":"05","key":"05"},{"children":[],"title":"在抢险、救灾等特定环境中奋不顾身,做出贡献的","value":"07","key":"07"},{"children":[],"title":"防止或者消除事故有功,使国家和人民群众利益免受或者减少损失的","value":"06","key":"06"},{"children":[],"title":"忠于职守,积极工作,成绩显著的","value":"01","key":"01"},{"children":[],"title":"同违法违纪行为做斗争有功绩的","value":"08","key":"08"},{"children":[],"title":"在对外交往中为国家争得荣誉和利益的","value":"09","key":"09"},{"children":[],"title":"有其他突出成绩的","value":"99","key":"99"},{"children":[],"title":"为增进民族团结、维护社会稳定做出突出贡献的","value":"04","key":"04"}]; //奖励原因(RS-JLYY-2005)
+ export const O6 = [{"children":[],"title":"一等奖","value":"1","key":"1"},{"children":[],"title":"三等奖","value":"3","key":"3"},{"children":[],"title":"四等奖","value":"4","key":"4"},{"children":[],"title":"二等奖","value":"2","key":"2"}]; //奖励等级(RS-JLDJ-2004)
+ export const O8 = [{"children":[],"title":"拒绝执行上级一发作出的决定和命令","value":"04","key":"04"},{"children":[],"title":"弄虚作假,误导、欺骗领导和公众","value":"06","key":"06"},{"children":[],"title":"泄露国家秘密或者工作秘密","value":"10","key":"10"},{"children":[],"title":"玩忽职守,贻误工作","value":"03","key":"03"},{"children":[],"title":"贪污、行贿、受贿,利用职务之便为自己或者他人谋取私利","value":"07","key":"07"},{"children":[],"title":"违反财经纪律,浪费国家资产","value":"08","key":"08"},{"children":[],"title":"组织或者参加非法组织,组织或者参加罢工","value":"02","key":"02"},{"children":[],"title":"违反职业道德、社会公德","value":"13","key":"13"},{"children":[],"title":"滥用职权,侵害公民、法人或者其他组织的合法权益","value":"09","key":"09"},{"children":[],"title":"压制批评,打击报复","value":"05","key":"05"},{"children":[],"title":"从事或者参加与营利性活动,在企业或者其他营利性组织中兼任职务","value":"14","key":"14"},{"children":[],"title":"散布有损国家声誉的言论,组织或者参加旨在反对国家的集会、游行、示威等活动","value":"01","key":"01"},{"children":[],"title":"参与或支持色情、吸毒、赌博、迷信等活动","value":"12","key":"12"},{"children":[],"title":"违反纪律的其他行为","value":"99","key":"99"},{"children":[],"title":"在对外交往中损害国家荣誉和利益","value":"11","key":"11"},{"children":[],"title":"旷工或者因公外出、请假期满无正当理由逾期不归","value":"15","key":"15"}]; //惩戒(处分)原因(RS-CJYY-2005)
+ export const O9 = [{"children":[],"title":"辞退或者取消录用","value":"2","key":"2"},{"children":[],"title":"未按规定确定或者扣减工资、福利、保险待遇","value":"7","key":"7"},{"children":[],"title":"处分","value":"1","key":"1"},{"children":[],"title":"免职","value":"5","key":"5"},{"children":[],"title":"申请辞职、提前退休未予以批准的","value":"6","key":"6"},{"children":[],"title":"法律、法规规定可以申诉的其他情形","value":"9","key":"9"},{"children":[],"title":"降职","value":"3","key":"3"},{"children":[],"title":"定期考核定为不称职","value":"4","key":"4"}]; //公务员申诉原因(RS-SSYY-2003)
+ export const OA = [{"children":[],"title":"一般或较弱","value":"2","key":"2"},{"children":[],"title":"健康或良好","value":"1","key":"1"},{"children":[{"children":[],"title":"癌症","value":"41","key":"41"},{"children":[],"title":"其他慢性病","value":"49","key":"49"}],"title":"有慢性病(二)","value":"4","key":"4"},{"children":[{"children":[],"title":"糖尿病","value":"37","key":"37"},{"children":[],"title":"慢性消化系统病","value":"34","key":"34"},{"children":[],"title":"慢性呼吸系统病","value":"33","key":"33"},{"children":[],"title":"神经或精神疾病","value":"38","key":"38"},{"children":[],"title":"心血管病","value":"31","key":"31"},{"children":[],"title":"结核病","value":"36","key":"36"},{"children":[],"title":"慢性肾炎","value":"35","key":"35"},{"children":[],"title":"脑血管病","value":"32","key":"32"}],"title":"有慢性病(一)","value":"3","key":"3"},{"children":[{"children":[],"title":"精神残疾","value":"66","key":"66"},{"children":[],"title":"多重残疾","value":"67","key":"67"},{"children":[],"title":"智力残疾","value":"65","key":"65"},{"children":[],"title":"肢体残疾","value":"64","key":"64"},{"children":[],"title":"言语残疾","value":"63","key":"63"},{"children":[],"title":"视力残疾","value":"61","key":"61"},{"children":[],"title":"听力残疾","value":"62","key":"62"},{"children":[],"title":"其他残疾","value":"69","key":"69"}],"title":"残疾","value":"6","key":"6"},{"children":[{"children":[],"title":"三等乙级残疾","value":"76","key":"76"},{"children":[],"title":"二等甲级残疾","value":"73","key":"73"},{"children":[],"title":"三等甲级残疾","value":"75","key":"75"},{"children":[],"title":"一等残疾","value":"72","key":"72"},{"children":[],"title":"特等残疾","value":"71","key":"71"},{"children":[],"title":"二等乙级残疾","value":"74","key":"74"}],"title":"军残","value":"7","key":"7"}]; //健康与伤残状况(RS-JKYSCZK-2004)
+ export const OB = [{"children":[],"title":"过渡转入","value":"1","key":"1"},{"children":[],"title":"公开选拔","value":"5","key":"5"},{"children":[],"title":"军转安置","value":"3","key":"3"},{"children":[],"title":"当选","value":"6","key":"6"},{"children":[],"title":"录用","value":"2","key":"2"},{"children":[],"title":"聘任","value":"7","key":"7"},{"children":[],"title":"调任","value":"4","key":"4"},{"children":[],"title":"其他","value":"9","key":"9"}]; //进入公务员队伍方式(RB103-2006/JRGWY)
+ export const OC = [{"children":[],"title":"澳门同胞亲属","value":"2","key":"2"},{"children":[],"title":"海外侨胞亲属","value":"4","key":"4"},{"children":[],"title":"外籍人士","value":"5","key":"5"},{"children":[],"title":"台湾同胞亲属","value":"3","key":"3"},{"children":[],"title":"香港同胞亲属","value":"1","key":"1"}]; //港澳台及外籍人士(RS-GATJWJ-2004)
+ export const OD = [{"children":[],"title":"文职干部证","value":"4","key":"4"},{"children":[],"title":"其他","value":"Z","key":"Z"},{"children":[],"title":"澳门特区护照/身份证明","value":"7","key":"7"},{"children":[],"title":"军官证","value":"2","key":"2"},{"children":[],"title":"香港特区护照/身份证明","value":"6","key":"6"},{"children":[],"title":"部队离退休证","value":"5","key":"5"},{"children":[],"title":"台湾居民来往大陆通行证","value":"8","key":"8"},{"children":[],"title":"士兵证","value":"3","key":"3"},{"children":[],"title":"境外永久居住证","value":"9","key":"9"},{"children":[],"title":"居民身份证","value":"1","key":"1"}]; //有效证件类别代码(ZRB76―2006/YXZJ)
+ export const OE = [{"children":[],"title":"低速载货汽车","value":"C3","key":"C3"},{"children":[],"title":"有轨电车","value":"P","key":"P"},{"children":[],"title":"牵引车","value":"A2","key":"A2"},{"children":[],"title":"轻便摩托车","value":"F","key":"F"},{"children":[],"title":"普通三轮摩托车","value":"D","key":"D"},{"children":[],"title":"大型客车","value":"A1","key":"A1"},{"children":[],"title":"三轮汽车","value":"C4","key":"C4"},{"children":[],"title":"小型汽车","value":"C1","key":"C1"},{"children":[],"title":"普通二轮摩托车","value":"E","key":"E"},{"children":[],"title":"城市公交车","value":"A3","key":"A3"},{"children":[],"title":"轮式自行机械车","value":"M","key":"M"},{"children":[],"title":"无轨电车","value":"N","key":"N"},{"children":[],"title":"小型自动挡汽车","value":"C2","key":"C2"},{"children":[],"title":"中型客车","value":"B1","key":"B1"},{"children":[],"title":"大型货","value":"B2","key":"B2"}]; //驾照类型(RS-JZLX-2005)
+ export const OF = [{"children":[],"title":"延长试用期","value":"9","key":"9"},{"children":[],"title":"延长试用期","value":"3","key":"3"},{"children":[],"title":"予以任职","value":"1","key":"1"},{"children":[],"title":"取消录(聘)用","value":"2","key":"2"}]; //试用结果(RS-SYJG-2004)
+ export const OG = [{"children":[],"title":"专业技术类","value":"2","key":"2"},{"children":[],"title":"综合管理类","value":"1","key":"1"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"行政执法类","value":"3","key":"3"}]; //职位类别(RB011-2006/ZWLB)
+ export const OH = [{"children":[],"title":"未按上述级别管理","value":"9","key":"9"},{"children":[],"title":"按副省部级管理","value":"2","key":"2"},{"children":[],"title":"按正县处级管理","value":"5","key":"5"},{"children":[],"title":"按副县处级管理","value":"6","key":"6"},{"children":[],"title":"按正乡科级管理","value":"7","key":"7"},{"children":[],"title":"按正地厅司局级管理","value":"3","key":"3"},{"children":[],"title":"按副乡科级管理","value":"8","key":"8"},{"children":[],"title":"按正省部级管理","value":"1","key":"1"},{"children":[],"title":"按副地厅司局级管理","value":"4","key":"4"}]; //级别管理(RS-JBGL-2004)
+ export const OI = [{"children":[],"title":"无职级","value":"9","key":"9"},{"children":[],"title":"中级","value":"2","key":"2"},{"children":[{"children":[],"title":"员级","value":"32","key":"32"},{"children":[],"title":"助理级","value":"31","key":"31"}],"title":"初级","value":"3","key":"3"},{"children":[{"children":[],"title":"正高级","value":"11","key":"11"},{"children":[],"title":"副高级","value":"12","key":"12"}],"title":"高级","value":"1","key":"1"}]; //职称级别(RS-ZCJB-2004)
+ export const OJ = [{"children":[],"title":"专业技术岗位","value":"2","key":"2"},{"children":[],"title":"其他岗位","value":"9","key":"9"},{"children":[],"title":"管理岗位","value":"1","key":"1"}]; //岗位类型(RS-GWLX-2004)
+ export const OK = [{"children":[{"children":[],"title":"因工作需要降职","value":"302","key":"302"},{"children":[],"title":"考核不称职降职","value":"303","key":"303"},{"children":[],"title":"因故停职","value":"301","key":"301"},{"children":[],"title":"其他原因降职","value":"399","key":"399"}],"title":"降职","value":"3","key":"3"},{"children":[{"children":[],"title":"到龄免职","value":"104","key":"104"},{"children":[],"title":"离休免职","value":"102","key":"102"},{"children":[],"title":"牺牲","value":"110","key":"110"},{"children":[],"title":"退休免职","value":"103","key":"103"},{"children":[],"title":"单位撤销免职","value":"106","key":"106"},{"children":[],"title":"届满免职","value":"105","key":"105"},{"children":[],"title":"因病免职","value":"111","key":"111"},{"children":[],"title":"去世","value":"109","key":"109"},{"children":[],"title":"因调出免职","value":"113","key":"113"},{"children":[],"title":"单位变更免职","value":"107","key":"107"},{"children":[],"title":"其他原因免职","value":"199","key":"199"},{"children":[],"title":"因离职学习免职","value":"112","key":"112"},{"children":[],"title":"任新职免原职","value":"101","key":"101"},{"children":[],"title":"挂职终止","value":"108","key":"108"},{"children":[],"title":"因故罢免","value":"114","key":"114"}],"title":"免职","value":"1","key":"1"},{"children":[{"children":[],"title":"因判刑撤销职务","value":"402","key":"402"},{"children":[],"title":"因受处分撤职","value":"401","key":"401"},{"children":[],"title":"其他原因撤职","value":"499","key":"499"}],"title":"撤职","value":"4","key":"4"},{"children":[{"children":[],"title":"责令辞职","value":"204","key":"204"},{"children":[],"title":"引咎辞职","value":"203","key":"203"},{"children":[],"title":"因公辞职","value":"201","key":"201"},{"children":[],"title":"自愿辞职","value":"202","key":"202"},{"children":[],"title":"其他原因辞职","value":"299","key":"299"}],"title":"辞职","value":"2","key":"2"}]; //终止任职原因(RS-ZZRZYY-2004)
+ export const OL = [{"children":[],"title":"四级行员","value":"04","key":"04"},{"children":[],"title":"六级行员","value":"06","key":"06"},{"children":[],"title":"五级行员","value":"05","key":"05"},{"children":[],"title":"二级行员","value":"02","key":"02"},{"children":[],"title":"三级行员","value":"03","key":"03"},{"children":[],"title":"七级行员","value":"07","key":"07"},{"children":[],"title":"一级行员","value":"01","key":"01"}]; //行员等级(RS-HYDJ-2005)
+ export const OM = [{"children":[],"title":"副师长","value":"812B","key":"812B"},{"children":[],"title":"军委主席职","value":"6101","key":"6101"},{"children":[],"title":"正排职","value":"6191","key":"6191"},{"children":[],"title":"参谋长","value":"801A","key":"801A"},{"children":[],"title":"营长","value":"816A","key":"816A"},{"children":[],"title":"团长","value":"815A","key":"815A"},{"children":[],"title":"总参谋长","value":"802Q","key":"802Q"},{"children":[],"title":"副营职","value":"6173","key":"6173"},{"children":[],"title":"副连职","value":"6183","key":"6183"},{"children":[],"title":"正大军区职","value":"6121","key":"6121"},{"children":[],"title":"正师职","value":"6151","key":"6151"},{"children":[],"title":"副班长","value":"819B","key":"819B"},{"children":[],"title":"副司令员","value":"810B","key":"810B"},{"children":[],"title":"副团职","value":"6163","key":"6163"},{"children":[],"title":"军长","value":"811A","key":"811A"},{"children":[],"title":"参谋","value":"803A","key":"803A"},{"children":[],"title":"军委委员职","value":"6106","key":"6106"},{"children":[],"title":"师长","value":"812A","key":"812A"},{"children":[],"title":"副团长","value":"815B","key":"815B"},{"children":[],"title":"副营长","value":"816B","key":"816B"},{"children":[],"title":"正军职","value":"6141","key":"6141"},{"children":[],"title":"副军职","value":"6143","key":"6143"},{"children":[],"title":"副参谋长","value":"801B","key":"801B"},{"children":[],"title":"副排长","value":"818B","key":"818B"},{"children":[],"title":"副连长","value":"817B","key":"817B"},{"children":[],"title":"副总参谋长","value":"802R","key":"802R"},{"children":[],"title":"参谋长助理","value":"801J","key":"801J"},{"children":[],"title":"正团职(副旅职)","value":"6161","key":"6161"},{"children":[],"title":"副旅长","value":"814B","key":"814B"},{"children":[],"title":"副师职(正旅职)","value":"6153","key":"6153"},{"children":[],"title":"司令员","value":"810A","key":"810A"},{"children":[],"title":"班长","value":"819A","key":"819A"},{"children":[],"title":"副大军区职","value":"6123","key":"6123"},{"children":[],"title":"正营职","value":"6171","key":"6171"},{"children":[],"title":"军委副主席职","value":"6102","key":"6102"},{"children":[],"title":"连长","value":"817A","key":"817A"},{"children":[],"title":"排长","value":"818A","key":"818A"},{"children":[],"title":"副军长","value":"811B","key":"811B"},{"children":[],"title":"正连职","value":"6181","key":"6181"},{"children":[],"title":"旅长","value":"814A","key":"814A"},{"children":[],"title":"总参谋长助理","value":"802J","key":"802J"}]; //退出现役时职务(级别)(RB118-2006/JDZWJB)
+ export const ON = [{"children":[{"children":[],"title":"公开选拔","value":"22","key":"22"},{"children":[],"title":"调任","value":"23","key":"23"},{"children":[],"title":"竞争上岗","value":"21","key":"21"},{"children":[],"title":"其他","value":"29","key":"29"}],"title":"委任","value":"2","key":"2"},{"children":[],"title":"新录用","value":"4","key":"4"},{"children":[],"title":"选任","value":"1","key":"1"},{"children":[],"title":"聘任","value":"3","key":"3"}]; //任职方式(RS-RZFS-2004)
+ export const OO = [{"children":[],"title":"虚部门","value":"UT","key":"UT"},{"children":[],"title":"虚单位","value":"UO","key":"UO"},{"children":[],"title":"单位","value":"UN","key":"UN"},{"children":[],"title":"部门","value":"UM","key":"UM"}]; //机构类别
+ export const P0 = [{"children":[{"children":[],"title":"国家星火计划项目","value":"16","key":"16"},{"children":[],"title":"国家重点基金项目","value":"13","key":"13"},{"children":[],"title":"国家火炬项目","value":"15","key":"15"},{"children":[],"title":"国家重大基础研究项目","value":"12","key":"12"},{"children":[],"title":"国家攻关项目","value":"11","key":"11"},{"children":[],"title":"国家级其它项目","value":"19","key":"19"},{"children":[],"title":"国家863计划项目","value":"14","key":"14"}],"title":"国家项目","value":"1","key":"1"},{"children":[{"children":[],"title":"地市级其他项目","value":"39","key":"39"},{"children":[],"title":"地市级重点项目","value":"31","key":"31"}],"title":"地市项目","value":"3","key":"3"},{"children":[{"children":[],"title":"国际合作研究项目","value":"01","key":"01"}],"title":"国际项目","value":"0","key":"0"},{"children":[{"children":[],"title":"省部级其它项目","value":"29","key":"29"},{"children":[],"title":"省部级重点项目","value":"21","key":"21"}],"title":"省部项目","value":"2","key":"2"},{"children":[{"children":[],"title":"大军区(军兵种)级重点项目","value":"52","key":"52"},{"children":[],"title":"军级重点项目","value":"53","key":"53"},{"children":[],"title":"全军重点项目","value":"51","key":"51"},{"children":[],"title":"全军其它项目","value":"59","key":"59"}],"title":"军队项目","value":"5","key":"5"}]; //课题类别(RS-KTLB-2005)
+ export const P1 = [{"children":[],"title":"待岗","value":"8","key":"8"},{"children":[],"title":"分流","value":"2","key":"2"},{"children":[],"title":"退居二线","value":"3","key":"3"},{"children":[],"title":"退职","value":"5","key":"5"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"停薪留职","value":"4","key":"4"},{"children":[],"title":"离退休","value":"6","key":"6"},{"children":[],"title":"在岗","value":"1","key":"1"},{"children":[],"title":"离退休后返聘","value":"7","key":"7"}]; //在岗状态(RS-ZGZT-2005)
+ export const OP = [{"children":[],"title":"分层对象","value":"1","key":"1"},{"children":[],"title":"机构管理","value":"2","key":"2"},{"children":[],"title":"信息岛对象","value":"0","key":"0"}]; //模板类别
+ export const OQ = [{"children":[],"title":"中央与地方之间","value":"3","key":"3"},{"children":[{"children":[],"title":"到基层单位","value":"11","key":"11"},{"children":[],"title":"到企事业单位","value":"13","key":"13"},{"children":[],"title":"到上级单位","value":"12","key":"12"}],"title":"地区之间","value":"1","key":"1"},{"children":[],"title":"部门之间","value":"2","key":"2"}]; //调整交流情况(RS-TZJLQK-2005)
+ export const P2 = [{"children":[],"title":"国家自然科学基金","value":"1","key":"1"},{"children":[],"title":"省部级科学基金","value":"3","key":"3"},{"children":[],"title":"国家杰出青年科学基金","value":"2","key":"2"},{"children":[],"title":"其他各类科学基金","value":"9","key":"9"}]; //基金种类(RS-JJZL-2005)
+ export const P3 = [{"children":[],"title":"应用研究","value":"2","key":"2"},{"children":[],"title":"基础研究","value":"1","key":"1"},{"children":[],"title":"技术改造","value":"3","key":"3"}]; //课题性质(RS-KTXZ-2005)
+ export const OS = [{"children":[],"title":"批量业务","value":"1","key":"1"},{"children":[],"title":"日常业务","value":"2","key":"2"}]; //工资业务类型
+ export const P4 = [{"children":[],"title":"单位自批","value":"07","key":"07"},{"children":[],"title":"党委组织部门","value":"01","key":"01"},{"children":[],"title":"政府人事部门","value":"03","key":"03"},{"children":[],"title":"上级主管部门","value":"05","key":"05"},{"children":[],"title":"其他","value":"99","key":"99"}]; //审批单位(RS-SPDW-2005)
+ export const OT = [{"children":[],"title":"在职教育","value":"2","key":"2"},{"children":[],"title":"全日制教育","value":"1","key":"1"}]; //教育类别(RB116-2006/JYLB)
+ export const P5 = [{"children":[],"title":"国务院","value":"1","key":"1"},{"children":[],"title":"省政府或国务院工作部门","value":"3","key":"3"}]; //授予单位(RS-SYDW-2005)
+ export const P6 = [{"children":[],"title":"技术11级","value":"11","key":"11"},{"children":[],"title":"技术8级","value":"08","key":"08"},{"children":[],"title":"技术7级","value":"07","key":"07"},{"children":[],"title":"技术10级","value":"10","key":"10"},{"children":[],"title":"技术9级","value":"09","key":"09"}]; //部队技术等级(RS-JSDJ-2004)
+ export const P7 = [{"children":[],"title":"增加事业编制","value":"2","key":"2"},{"children":[],"title":"增加行政编制","value":"1","key":"1"}]; //带编情况(RS-DBQK-2004)
+ export const OV = [{"children":[{"children":[],"title":"聘用应届高校大专生","value":"34","key":"34"},{"children":[],"title":"从国有事业单位管理及专业技术人员中聘用","value":"36","key":"36"},{"children":[],"title":"从国有企业单位管理及专业技术人员中聘用","value":"37","key":"37"},{"children":[],"title":"从留学回国人员中聘用","value":"38","key":"38"},{"children":[],"title":"从其他人员中聘用","value":"39","key":"39"},{"children":[],"title":"聘用应届高校硕士研究生","value":"32","key":"32"},{"children":[],"title":"聘用应届高校本科生","value":"33","key":"33"},{"children":[],"title":"聘用应届高校博士研究生","value":"31","key":"31"},{"children":[],"title":"聘用应届中专(中技)毕业生","value":"35","key":"35"}],"title":"事企业单位聘用","value":"3","key":"3"},{"children":[],"title":"从其他单位调入","value":"09","key":"09"},{"children":[{"children":[],"title":"从其他单位调入","value":"19","key":"19"},{"children":[],"title":"从国有事业单位调入","value":"13","key":"13"},{"children":[],"title":"从国有企业单位调入","value":"14","key":"14"},{"children":[],"title":"从政府部门内机关调入","value":"12","key":"12"},{"children":[],"title":"从政府部门外机关调入","value":"11","key":"11"}],"title":"调入","value":"1","key":"1"},{"children":[],"title":"从国有事业单位调入","value":"03","key":"03"},{"children":[],"title":"从国有企业单位调入","value":"04","key":"04"},{"children":[],"title":"从政府部门内机关调入","value":"02","key":"02"},{"children":[],"title":"从政府部门外机关调入","value":"01","key":"01"},{"children":[{"children":[],"title":"国有企业单位整建制转入","value":"94","key":"94"},{"children":[],"title":"复员军人安置","value":"97","key":"97"},{"children":[],"title":"其他企业单位整建制转入","value":"95","key":"95"},{"children":[],"title":"国有事业单位整建制转入","value":"92","key":"92"},{"children":[],"title":"军转干部安置","value":"96","key":"96"},{"children":[],"title":"其他事业单位整建制转入","value":"93","key":"93"},{"children":[],"title":"从其他人员中进入","value":"99","key":"99"},{"children":[],"title":"机关整建制转入","value":"91","key":"91"}],"title":"转入及其他增加","value":"9","key":"9"},{"children":[{"children":[],"title":"录用应届高校博士研究生","value":"21","key":"21"},{"children":[],"title":"从国有事业单位管理及专业技术人员中录用","value":"26","key":"26"},{"children":[],"title":"录用应届中专(中技)毕业生","value":"25","key":"25"},{"children":[],"title":"录用应届高校硕士研究生","value":"22","key":"22"},{"children":[],"title":"从其他人员中录用","value":"29","key":"29"},{"children":[],"title":"录用应届高校本科生","value":"23","key":"23"},{"children":[],"title":"录用应届高校大专生","value":"24","key":"24"},{"children":[],"title":"从留学回国人员中录用","value":"28","key":"28"},{"children":[],"title":"从国有企业单位管理及专业技术人员中录用","value":"27","key":"27"}],"title":"公务员录用","value":"2","key":"2"}]; //人员增加情况(RS-RYZJ-2004)
+ export const P8 = [{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"增加行政实职","value":"1","key":"1"},{"children":[],"title":"增加行政虚职","value":"3","key":"3"},{"children":[],"title":"增加事业实职","value":"2","key":"2"},{"children":[],"title":"增加事业虚职","value":"4","key":"4"}]; //带职情况(RS-DZQK-2004)
+ export const OW = [{"children":[{"children":[],"title":"辞聘","value":"96","key":"96"},{"children":[],"title":"辞职","value":"92","key":"92"},{"children":[],"title":"辞退","value":"93","key":"93"},{"children":[],"title":"参军","value":"98","key":"98"},{"children":[],"title":"退职","value":"97","key":"97"},{"children":[],"title":"退休","value":"91","key":"91"},{"children":[],"title":"死亡","value":"95","key":"95"},{"children":[],"title":"解聘","value":"99","key":"99"},{"children":[],"title":"其他","value":"9Z","key":"9Z"},{"children":[],"title":"开除","value":"94","key":"94"}],"title":"其他减少","value":"9","key":"9"},{"children":[{"children":[],"title":"调到其他单位","value":"19","key":"19"},{"children":[],"title":"调到政府部门外机关","value":"11","key":"11"},{"children":[],"title":"调到政府部门内机关","value":"12","key":"12"},{"children":[],"title":"调到国有企业单位","value":"14","key":"14"},{"children":[],"title":"调到国有事业单位","value":"13","key":"13"}],"title":"调出","value":"1","key":"1"},{"children":[{"children":[],"title":"整建制转到国有事业单位","value":"22","key":"22"},{"children":[],"title":"整建制转到国有企业单位","value":"24","key":"24"},{"children":[],"title":"整建制转到其他企业单位","value":"29","key":"29"},{"children":[],"title":"整建制转到机关","value":"21","key":"21"},{"children":[],"title":"整建制转到其他事业单位","value":"23","key":"23"}],"title":"转出","value":"2","key":"2"}]; //人员减少情况(RS-RYJS-2004)
+ export const P9 = [{"children":[],"title":"海岛工作","value":"2","key":"2"},{"children":[],"title":"舰艇工作","value":"6","key":"6"},{"children":[],"title":"边防工作","value":"1","key":"1"},{"children":[],"title":"沙漠地区工作","value":"4","key":"4"},{"children":[],"title":"飞行工作","value":"5","key":"5"},{"children":[],"title":"高寒地区工作","value":"3","key":"3"}]; //六类人员标识代码(RS-LLRYBS-2004)
+ export const OX = [{"children":[],"title":"香港特别行政区","value":"8","key":"8"},{"children":[{"children":[],"title":"湖北省","value":"58","key":"58"},{"children":[],"title":"黑龙江省","value":"54","key":"54"},{"children":[],"title":"湖南省","value":"59","key":"59"},{"children":[],"title":"河南省","value":"57","key":"57"},{"children":[],"title":"吉林省","value":"53","key":"53"},{"children":[],"title":"山西省","value":"52","key":"52"},{"children":[],"title":"安徽省","value":"55","key":"55"},{"children":[],"title":"河北省","value":"51","key":"51"},{"children":[],"title":"江西省","value":"56","key":"56"}],"title":"中部地区","value":"5","key":"5"},{"children":[{"children":[],"title":"单位内部","value":"31","key":"31"}],"title":"单位内部","value":"3","key":"3"},{"children":[],"title":"澳门特别行政区","value":"9","key":"9"},{"children":[{"children":[],"title":"中央企事业单位","value":"12","key":"12"},{"children":[],"title":"中央机关单位","value":"11","key":"11"},{"children":[],"title":"中央其他单位","value":"19","key":"19"}],"title":"中央单位","value":"1","key":"1"},{"children":[{"children":[],"title":"海南省","value":"4A","key":"4A"},{"children":[],"title":"上海市","value":"44","key":"44"},{"children":[],"title":"广东省","value":"49","key":"49"},{"children":[],"title":"北京市","value":"41","key":"41"},{"children":[],"title":"江苏省","value":"45","key":"45"},{"children":[],"title":"辽宁省","value":"43","key":"43"},{"children":[],"title":"浙江省","value":"46","key":"46"},{"children":[],"title":"山东省","value":"48","key":"48"},{"children":[],"title":"福建省","value":"47","key":"47"},{"children":[],"title":"天津市","value":"42","key":"42"}],"title":"东部地区","value":"4","key":"4"},{"children":[],"title":"台湾省","value":"7","key":"7"},{"children":[{"children":[],"title":"新疆维吾尔自治区","value":"6C","key":"6C"},{"children":[],"title":"甘肃省","value":"69","key":"69"},{"children":[],"title":"云南省","value":"66","key":"66"},{"children":[],"title":"广西壮族自治区","value":"62","key":"62"},{"children":[],"title":"四川省","value":"64","key":"64"},{"children":[],"title":"内蒙古自治区","value":"61","key":"61"},{"children":[],"title":"陕西省","value":"68","key":"68"},{"children":[],"title":"宁夏回族自治区","value":"6B","key":"6B"},{"children":[],"title":"贵州省","value":"65","key":"65"},{"children":[],"title":"青海省","value":"6A","key":"6A"},{"children":[],"title":"西藏自治区","value":"67","key":"67"},{"children":[],"title":"重庆市","value":"63","key":"63"}],"title":"西部地区","value":"6","key":"6"},{"children":[{"children":[],"title":"省内机关单位","value":"21","key":"21"},{"children":[],"title":"省内企事业单位","value":"22","key":"22"},{"children":[],"title":"省内其他单位","value":"29","key":"29"}],"title":"省内单位","value":"2","key":"2"}]; //交流去向(RS-JLQX-2004)
+ export const OY = [{"children":[],"title":"转任","value":"2","key":"2"},{"children":[],"title":"单位内部轮岗","value":"3","key":"3"},{"children":[],"title":"挂职锻炼","value":"4","key":"4"},{"children":[],"title":"调任","value":"1","key":"1"}]; //交流形式(RS-JLXS-2004)
+ export const OZ = [{"children":[],"title":"转任","value":"4","key":"4"},{"children":[],"title":"工作需要","value":"1","key":"1"},{"children":[],"title":"其他正当理由","value":"9","key":"9"},{"children":[],"title":"任职满10年","value":"5","key":"5"},{"children":[],"title":"挂职锻炼","value":"3","key":"3"},{"children":[],"title":"回避","value":"2","key":"2"}]; //交流原因(RS-JLYY-2004)
+ export const PA = [{"children":[],"title":"建议原处理机关重新审理","value":"3","key":"3"},{"children":[],"title":"变更或者建议原处理机关予以变更","value":"4","key":"4"},{"children":[],"title":"维持原处理决定","value":"1","key":"1"},{"children":[],"title":"撤消或者建议撤消原处理决定","value":"2","key":"2"}]; //公务员申诉受理结果(RS-SSSLJG-2004)
+ export const PB = [{"children":[{"children":[],"title":"通信工程","value":"F01","key":"F01"},{"children":[],"title":"电子材料与元器件","value":"F05","key":"F05"},{"children":[],"title":"自动控制","value":"F03","key":"F03"},{"children":[],"title":"其他","value":"F09","key":"F09"},{"children":[],"title":"信息工程","value":"F02","key":"F02"},{"children":[],"title":"电子工程","value":"F06","key":"F06"},{"children":[],"title":"无线电技术","value":"F04","key":"F04"}],"title":"信息与电子类","value":"F","key":"F"},{"children":[{"children":[],"title":"银行","value":"L01","key":"L01"},{"children":[],"title":"保险","value":"L02","key":"L02"},{"children":[],"title":"证券","value":"L03","key":"L03"},{"children":[],"title":"其他","value":"L09","key":"L09"}],"title":"金融类","value":"L","key":"L"},{"children":[{"children":[],"title":"其他","value":"C09","key":"C09"},{"children":[],"title":"统计","value":"C03","key":"C03"},{"children":[],"title":"审计","value":"C02","key":"C02"},{"children":[],"title":"会计","value":"C01","key":"C01"}],"title":"财会类","value":"C","key":"C"},{"children":[{"children":[],"title":"考古与文物保护","value":"H06","key":"H06"},{"children":[],"title":"编辑","value":"H02","key":"H02"},{"children":[],"title":"翻译","value":"H04","key":"H04"},{"children":[],"title":"其他","value":"H09","key":"H09"},{"children":[],"title":"记者","value":"H01","key":"H01"},{"children":[],"title":"广告","value":"H03","key":"H03"},{"children":[],"title":"图书资料与档案","value":"H05","key":"H05"}],"title":"新闻出版类","value":"H","key":"H"},{"children":[{"children":[],"title":"劳动经济","value":"G05","key":"G05"},{"children":[],"title":"其他","value":"G09","key":"G09"},{"children":[],"title":"运输经济","value":"G04","key":"G04"},{"children":[],"title":"贸易经济","value":"G03","key":"G03"},{"children":[],"title":"农业经济","value":"G01","key":"G01"},{"children":[],"title":"工业经济","value":"G02","key":"G02"}],"title":"经济类","value":"G","key":"G"},{"children":[{"children":[],"title":"机械设计","value":"D02","key":"D02"},{"children":[],"title":"仪器仪表","value":"D04","key":"D04"},{"children":[],"title":"机械制造","value":"D01","key":"D01"},{"children":[],"title":"设备工程","value":"D03","key":"D03"},{"children":[],"title":"其他","value":"D09","key":"D09"}],"title":"机械与仪器仪表类","value":"D","key":"D"},{"children":[{"children":[],"title":"高等教育","value":"K01","key":"K01"},{"children":[],"title":"幼儿教育","value":"K04","key":"K04"},{"children":[],"title":"其他","value":"K09","key":"K09"},{"children":[],"title":"中小学教育","value":"K03","key":"K03"},{"children":[],"title":"中等职业教育","value":"K02","key":"K02"}],"title":"教学类","value":"K","key":"K"},{"children":[{"children":[],"title":"制药","value":"J03","key":"J03"},{"children":[],"title":"化学工程","value":"J01","key":"J01"},{"children":[],"title":"其他","value":"J09","key":"J09"},{"children":[],"title":"生物化学工程","value":"J02","key":"J02"}],"title":"化工与制药","value":"J","key":"J"},{"children":[{"children":[],"title":"工程管理","value":"A05","key":"A05"},{"children":[],"title":"行政管理","value":"A01","key":"A01"},{"children":[],"title":"房地产经营管理","value":"A19","key":"A19"},{"children":[],"title":"信息管理","value":"A07","key":"A07"},{"children":[],"title":"人力资源管理","value":"A08","key":"A08"},{"children":[],"title":"企业管理","value":"A02","key":"A02"},{"children":[],"title":"房地产经营管理","value":"A09","key":"A09"},{"children":[],"title":"市场营销","value":"A03","key":"A03"},{"children":[],"title":"财务管理","value":"A04","key":"A04"},{"children":[],"title":"物流管理","value":"A06","key":"A06"}],"title":"管理类","value":"A","key":"A"},{"children":[{"children":[],"title":"计算机应用与维护","value":"B04","key":"B04"},{"children":[],"title":"计算机网络","value":"B03","key":"B03"},{"children":[],"title":"计算机硬件","value":"B01","key":"B01"},{"children":[],"title":"其他","value":"B09","key":"B09"},{"children":[],"title":"计算机系统分析与集成","value":"B05","key":"B05"},{"children":[],"title":"计算机软件","value":"B02","key":"B02"}],"title":"计算机与应用类","value":"B","key":"B"},{"children":[{"children":[],"title":"钢铁冶金","value":"N01","key":"N01"},{"children":[],"title":"其他","value":"N09","key":"N09"},{"children":[],"title":"有色金属","value":"N02","key":"N02"},{"children":[],"title":"复合材料","value":"N04","key":"N04"},{"children":[],"title":"高分子材料","value":"N03","key":"N03"}],"title":"材料类","value":"N","key":"N"},{"children":[{"children":[],"title":"铁道运输","value":"M02","key":"M02"},{"children":[],"title":"民航运输","value":"M03","key":"M03"},{"children":[],"title":"公路运输","value":"M01","key":"M01"},{"children":[],"title":"其他","value":"M09","key":"M09"},{"children":[],"title":"船舶运输","value":"M04","key":"M04"}],"title":"交通运输类","value":"M","key":"M"},{"children":[],"title":"其他","value":"O","key":"O"},{"children":[{"children":[],"title":"其他","value":"I09","key":"I09"},{"children":[],"title":"西医","value":"I01","key":"I01"},{"children":[],"title":"中西医","value":"I03","key":"I03"},{"children":[],"title":"护理","value":"I06","key":"I06"},{"children":[],"title":"中医","value":"I02","key":"I02"},{"children":[],"title":"药剂","value":"I04","key":"I04"},{"children":[],"title":"医疗技术","value":"I05","key":"I05"}],"title":"医药卫生类","value":"I","key":"I"},{"children":[{"children":[],"title":"土木工程","value":"E06","key":"E06"},{"children":[],"title":"给排水工程","value":"E05","key":"E05"},{"children":[],"title":"城市规划","value":"E01","key":"E01"},{"children":[],"title":"建筑装饰","value":"E03","key":"E03"},{"children":[],"title":"建筑设计","value":"E02","key":"E02"},{"children":[],"title":"供热通风与空调","value":"E04","key":"E04"},{"children":[],"title":"其他","value":"E09","key":"E09"}],"title":"土建类","value":"E","key":"E"}]; //录用公务员所学专业分类情况(RS011ZYFL-2003)
+ export const PC = [{"children":[{"children":[],"title":"其他","value":"399","key":"399"},{"children":[],"title":"医院","value":"303","key":"303"},{"children":[],"title":"研究(院)所","value":"301","key":"301"},{"children":[],"title":"研究中心","value":"302","key":"302"}],"title":"研究所","value":"3","key":"3"},{"children":[{"children":[],"title":"军队(武警)医院","value":"118","key":"118"},{"children":[],"title":"职工大学","value":"102","key":"102"},{"children":[],"title":"职工夜大学","value":"103","key":"103"},{"children":[],"title":"军队(武警)中等专科学校","value":"115","key":"115"},{"children":[],"title":"军队(武警)党校","value":"116","key":"116"},{"children":[],"title":"出国出境培训","value":"121","key":"121"},{"children":[],"title":"协会","value":"120","key":"120"},{"children":[],"title":"广播电视教学","value":"108","key":"108"},{"children":[],"title":"业余大学","value":"105","key":"105"},{"children":[],"title":"干校","value":"111","key":"111"},{"children":[],"title":"全日制高等学校","value":"101","key":"101"},{"children":[],"title":"军队(武警)科研机构","value":"117","key":"117"},{"children":[],"title":"军队(武警)高等学校","value":"114","key":"114"},{"children":[],"title":"其他","value":"199","key":"199"},{"children":[],"title":"电视大学","value":"104","key":"104"},{"children":[],"title":"学会","value":"119","key":"119"},{"children":[],"title":"管理干部学院","value":"110","key":"110"},{"children":[],"title":"干训班","value":"112","key":"112"},{"children":[],"title":"工训班","value":"113","key":"113"},{"children":[],"title":"函授学校","value":"106","key":"106"},{"children":[],"title":"刊授学校","value":"107","key":"107"},{"children":[],"title":"成人自学考试","value":"109","key":"109"}],"title":"高等院校","value":"1","key":"1"},{"children":[],"title":"企业","value":"4","key":"4"},{"children":[{"children":[],"title":"中央党校","value":"701","key":"701"},{"children":[],"title":"地、市委党校","value":"703","key":"703"},{"children":[],"title":"高等院校党校","value":"707","key":"707"},{"children":[],"title":"乡、镇党校","value":"705","key":"705"},{"children":[],"title":"其他基层党校","value":"799","key":"799"},{"children":[],"title":"县委党校","value":"704","key":"704"},{"children":[],"title":"省委党校","value":"702","key":"702"},{"children":[],"title":"企业党校","value":"706","key":"706"}],"title":"党校","value":"7","key":"7"},{"children":[],"title":"培训中心","value":"8","key":"8"},{"children":[{"children":[],"title":"国家行政学院","value":"201","key":"201"},{"children":[],"title":"省行政学院","value":"202","key":"202"},{"children":[],"title":"其他行政学院(校)","value":"299","key":"299"}],"title":"行政学院","value":"2","key":"2"},{"children":[],"title":"学会","value":"5","key":"5"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[{"children":[],"title":"中央国家机关","value":"601","key":"601"},{"children":[],"title":"乡、镇机关","value":"605","key":"605"},{"children":[],"title":"省级机关","value":"602","key":"602"},{"children":[],"title":"县级机关","value":"604","key":"604"},{"children":[],"title":"其他","value":"699","key":"699"},{"children":[],"title":"地、市级机关","value":"603","key":"603"}],"title":"党政机关","value":"6","key":"6"}]; //在学单位类别(RS-ZXDWLB-2004)
+ export const PD = [{"children":[],"title":"专题研究培训","value":"6","key":"6"},{"children":[{"children":[],"title":"其他出国出境培训","value":"89","key":"89"},{"children":[],"title":"短期培训班","value":"81","key":"81"},{"children":[],"title":"学历教育班","value":"82","key":"82"}],"title":"参加出国出境培训","value":"8","key":"8"},{"children":[],"title":"业务培训","value":"4","key":"4"},{"children":[{"children":[],"title":"其他专业知识培训","value":"2Z","key":"2Z"},{"children":[],"title":"新录用人员培训(初任培训)","value":"21","key":"21"},{"children":[],"title":"继续教育","value":"28","key":"28"},{"children":[],"title":"公共管理硕士专业学位(MPA)教育","value":"24","key":"24"},{"children":[],"title":"专门业务培训","value":"23","key":"23"},{"children":[],"title":"在职培训","value":"26","key":"26"},{"children":[],"title":"更新知识培训","value":"29","key":"29"},{"children":[],"title":"工商管理培训","value":"25","key":"25"},{"children":[],"title":"适应性短期培训","value":"27","key":"27"},{"children":[],"title":"任职培训(晋升培训)","value":"22","key":"22"}],"title":"专业知识培训","value":"2","key":"2"},{"children":[],"title":"岗位培训","value":"5","key":"5"},{"children":[],"title":"其他培训","value":"9","key":"9"},{"children":[{"children":[],"title":"(政治经济等)理论班","value":"13","key":"13"},{"children":[],"title":"进修班","value":"11","key":"11"},{"children":[],"title":"培训班","value":"12","key":"12"}],"title":"政治经济理论培训","value":"1","key":"1"},{"children":[{"children":[],"title":"高中","value":"36","key":"36"},{"children":[],"title":"硕士研究生","value":"32","key":"32"},{"children":[],"title":"大专","value":"34","key":"34"},{"children":[],"title":"博士研究生","value":"31","key":"31"},{"children":[],"title":"中专","value":"35","key":"35"},{"children":[],"title":"本科","value":"33","key":"33"}],"title":"学历学位教育","value":"3","key":"3"},{"children":[],"title":"函授培训","value":"7","key":"7"}]; //培训类别(RS-PXLB-2004)
+ export const PE = [{"children":[],"title":"省市","value":"3","key":"3"},{"children":[],"title":"外协","value":"4","key":"4"},{"children":[],"title":"国家","value":"1","key":"1"},{"children":[],"title":"部委","value":"2","key":"2"},{"children":[],"title":"国家自然科学基金","value":"5","key":"5"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"自选","value":"6","key":"6"}]; //项目来源(RS-XMLY-2004)
+ export const PF = [{"children":[],"title":"应用基础研究","value":"2","key":"2"},{"children":[],"title":"工程应用及技术开发","value":"3","key":"3"},{"children":[],"title":"基础理论研究","value":"1","key":"1"}]; //项目性质(RS-XMXZ-2004)
+ export const PG = [{"children":[],"title":"国内先进水平","value":"2","key":"2"},{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"填补国内空白","value":"3","key":"3"},{"children":[],"title":"国际先进水平","value":"1","key":"1"}]; //项目评价(RS-XMPJ-2004)
+ export const PH = [{"children":[],"title":"其他","value":"9","key":"9"},{"children":[],"title":"主要参加者","value":"2","key":"2"},{"children":[],"title":"独立","value":"3","key":"3"},{"children":[],"title":"一般参加者","value":"4","key":"4"},{"children":[],"title":"主持","value":"1","key":"1"}]; //项目中承担角色(RS-CDJS-2004)
+ export const PI = [{"children":[],"title":"完成","value":"2","key":"2"},{"children":[],"title":"在研","value":"1","key":"1"}]; //项目进展情况(RS-JZQK-2004)
+ export const PJ = [{"children":[],"title":"国家级","value":"1","key":"1"},{"children":[],"title":"省部级","value":"2","key":"2"},{"children":[],"title":"地市级","value":"3","key":"3"}]; //论文等级(RS-LWDJ-2005)
+ export const PK = [{"children":[],"title":"国内刊物","value":"1","key":"1"},{"children":[],"title":"国际刊物","value":"2","key":"2"}]; //期刊类型(RS-QKLX-2004)
+ export const PL = [{"children":[],"title":"二级","value":"2","key":"2"},{"children":[],"title":"一级","value":"1","key":"1"},{"children":[],"title":"三级","value":"3","key":"3"}]; //期刊级别(RS-QKJB-2004)
+ export const PM = [{"children":[],"title":"国际学术会议","value":"2","key":"2"},{"children":[],"title":"国内学术会议","value":"1","key":"1"}]; //会议类型(RS-HYLX-2004)
+ export const PN = [{"children":[],"title":"实用新型","value":"2","key":"2"},{"children":[],"title":"外观设计","value":"1","key":"1"},{"children":[],"title":"发明专利","value":"3","key":"3"}]; //专利类型(RS-ZLLX-2004)
+ export const OR = [{"children":[],"title":"在职人员","value":"1","key":"1"},{"children":[],"title":"离退人员","value":"2","key":"2"},{"children":[],"title":"调转人员","value":"3","key":"3"},{"children":[],"title":"待转人员","value":"4","key":"4"},{"children":[],"title":"聘任人员","value":"5","key":"5"}]; //人员类别
diff --git a/src/utils/routeUtils.js b/src/utils/routeUtils.js
new file mode 100644
index 0000000..abfd897
--- /dev/null
+++ b/src/utils/routeUtils.js
@@ -0,0 +1,71 @@
+/*
+* 格式化路由数据
+* @params menu 路由表
+* @params flag 过滤隐藏菜单
+* @returns 新路由表
+* */
+export function formatRoute (menu, flag) {
+ let tempArr = []
+
+ menu?.map(item => {
+ if (item?.hideInMenu && !flag) return
+
+ let tempObj = {
+ path: item?.key,
+ key: item?.key,
+ label: item?.label,
+ }
+
+ // 明确设置icon属性以确保正确传递
+ if (item && 'icon' in item) {
+ tempObj.icon = item.icon
+ }
+
+ item?.children?.length > 0 && (tempObj.children = formatRoute(item?.children, flag))
+ tempArr.push(tempObj)
+ })
+
+ return tempArr
+}
+
+/*
+* 获取默认路由key值
+* @params menu 路由表
+* @returns 默认路由key
+* */
+export function getDefaultRoute (menu) {
+ let key = ''
+
+ const getKey = value => {
+ value?.some((item, index) => {
+ key = item?.key
+
+ if (item.children?.length > 0) getKey(item?.children)
+ return index === 0
+ })
+ }
+
+ getKey(menu ?? [])
+ return key
+}
+
+/*
+* 获取默认路由key值
+* @params menu 路由表
+* @returns 默认路由key
+* */
+export function getHideInMenu (menu) {
+ let key = ''
+
+ const getKey = value => {
+ value?.some((item, index) => {
+ key = item?.key
+
+ if (item.children?.length > 0) getKey(item?.children)
+ return index === 0
+ })
+ }
+
+ getKey(menu ?? [])
+ return key
+}
diff --git a/src/utils/utils.less b/src/utils/utils.less
new file mode 100644
index 0000000..e9dfd5c
--- /dev/null
+++ b/src/utils/utils.less
@@ -0,0 +1,16 @@
+// mixins for clearfix
+// ------------------------
+.clearfix() {
+ zoom: 1;
+ &::before,
+ &::after {
+ display: table;
+ content: ' ';
+ }
+ &::after {
+ clear: both;
+ height: 0;
+ font-size: 0;
+ visibility: hidden;
+ }
+}
diff --git a/src/utils/utils.test.ts b/src/utils/utils.test.ts
new file mode 100644
index 0000000..c2bb32d
--- /dev/null
+++ b/src/utils/utils.test.ts
@@ -0,0 +1,37 @@
+import { isUrl } from './utils';
+
+describe('isUrl tests', (): void => {
+ it('should return false for invalid and corner case inputs', (): void => {
+ expect(isUrl([] as any)).toBeFalsy();
+ expect(isUrl({} as any)).toBeFalsy();
+ expect(isUrl(false as any)).toBeFalsy();
+ expect(isUrl(true as any)).toBeFalsy();
+ expect(isUrl(NaN as any)).toBeFalsy();
+ expect(isUrl(null as any)).toBeFalsy();
+ expect(isUrl(undefined as any)).toBeFalsy();
+ expect(isUrl('')).toBeFalsy();
+ });
+
+ it('should return false for invalid URLs', (): void => {
+ expect(isUrl('foo')).toBeFalsy();
+ expect(isUrl('bar')).toBeFalsy();
+ expect(isUrl('bar/test')).toBeFalsy();
+ expect(isUrl('http:/example.com/')).toBeFalsy();
+ expect(isUrl('ttp://example.com/')).toBeFalsy();
+ });
+
+ it('should return true for valid URLs', (): void => {
+ expect(isUrl('http://example.com/')).toBeTruthy();
+ expect(isUrl('https://example.com/')).toBeTruthy();
+ expect(isUrl('http://example.com/test/123')).toBeTruthy();
+ expect(isUrl('https://example.com/test/123')).toBeTruthy();
+ expect(isUrl('http://example.com/test/123?foo=bar')).toBeTruthy();
+ expect(isUrl('https://example.com/test/123?foo=bar')).toBeTruthy();
+ expect(isUrl('http://www.example.com/')).toBeTruthy();
+ expect(isUrl('https://www.example.com/')).toBeTruthy();
+ expect(isUrl('http://www.example.com/test/123')).toBeTruthy();
+ expect(isUrl('https://www.example.com/test/123')).toBeTruthy();
+ expect(isUrl('http://www.example.com/test/123?foo=bar')).toBeTruthy();
+ expect(isUrl('https://www.example.com/test/123?foo=bar')).toBeTruthy();
+ });
+});
diff --git a/src/utils/utils.ts b/src/utils/utils.ts
new file mode 100644
index 0000000..71ed4ca
--- /dev/null
+++ b/src/utils/utils.ts
@@ -0,0 +1,24 @@
+import { parse } from 'querystring';
+
+/* eslint no-useless-escape:0 import/prefer-default-export:0 */
+const reg = /(((^https?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+(?::\d+)?|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)$/;
+
+export const isUrl = (path: string): boolean => reg.test(path);
+
+export const isAntDesignPro = (): boolean => {
+ if (ANT_DESIGN_PRO_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION === 'site') {
+ return true;
+ }
+ return window.location.hostname === 'preview.pro.ant.design';
+};
+
+// 给官方演示站点用,用于关闭真实开发环境不需要使用的特性
+export const isAntDesignProOrDev = (): boolean => {
+ const { NODE_ENV } = process.env;
+ if (NODE_ENV === 'development') {
+ return true;
+ }
+ return isAntDesignPro();
+};
+
+export const getPageQuery = () => parse(window.location.href.split('?')[1]);
diff --git a/src/utils/webPath.js b/src/utils/webPath.js
new file mode 100644
index 0000000..64b0cbb
--- /dev/null
+++ b/src/utils/webPath.js
@@ -0,0 +1,7 @@
+const webpath = {
+ portalwebpath: 'platform_system',
+ //zngfserverpath: 'zngfapi',
+ zngfserverpath: 'platform_system',
+}
+
+export default webpath
diff --git a/src/utils/withComponent.js b/src/utils/withComponent.js
new file mode 100644
index 0000000..c7c02c6
--- /dev/null
+++ b/src/utils/withComponent.js
@@ -0,0 +1,9 @@
+import { useParams } from '@umijs/max'
+
+export function withRouter(Child) {
+ return (props) => {
+ const params = useParams()
+
+ return
+ }
+}
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..8882ab4
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,42 @@
+{
+ "extends": "./src/.umi/tsconfig.json",
+ "compilerOptions": {
+ "target": "esnext",
+ "module": "esnext",
+ "moduleResolution": "node",
+ "importHelpers": true,
+ "jsx": "react",
+ "esModuleInterop": true,
+// "sourceMap": true,
+ "baseUrl": ".",
+// "strict": true,
+ "resolveJsonModule": true,
+ "allowSyntheticDefaultImports": true,
+ "outDir": "build/dist",
+ "lib": ["esnext", "dom"],
+ "experimentalDecorators": true,
+ "forceConsistentCasingInFileNames": true,
+ "suppressImplicitAnyIndexErrors": true,
+ "allowJs": true,
+ "skipLibCheck": true,
+ "paths": {
+ "@/*": ["./src/*"],
+ "@@/*": ["./src/.umi/*"],
+ "umi": ["./node_module/umi"],
+ "@umijs/max": ["./node_module/umi"],
+ "@umijs/max/typings": ["./src/.umi/typings"],
+ "ahooks": ["./node_module/ahooks"],
+ "@ant-design/icons": ["./node_module/@ant-design/icons"],
+ "dayjs": ["./node_module/dayjs"]
+ }
+ },
+ "exclude": ["node_modules", "build", "dist", "scripts", "src/.umi/*", "webpack", "jest"],
+ "include": [
+ "./.umirc.ts",
+ "./**/*.d.ts",
+ "./**/*.js",
+ "./**/*.jsx",
+ "./**/*.ts",
+ "./**/*.tsx"
+ ]
+}
diff --git a/typings.d.ts b/typings.d.ts
new file mode 100644
index 0000000..74cffc3
--- /dev/null
+++ b/typings.d.ts
@@ -0,0 +1 @@
+import '@umijs/max/typings';