import React from 'react' import * as mobx from 'mobx' import { inject, observer } from 'mobx-react' import { WeaTop, WeaTab } from 'ecCom' import { Table } from 'antd' import { WeaSwitch, WeaTableNew } from 'comsMobx' import { i18n } from '../../public/i18n'; import './index.less'; const toJS = mobx.toJS; export default class StaffWorkflowSet extends React.Component { constructor(props) { super(props); this.state = { } } componentWillMount() { } componentDidMount() { } componentWillReceiveProps(nextProps) { } render() { const columns = [{ title: '动作名称', dataIndex: 'name', }, { title: '动作标识', dataIndex: 'id', }, { title: '动作类文件', dataIndex: 'url', }, { title: '参数', dataIndex: 'param', }]; const data = [{ key: '1', name: '冻结', id: 'staffDeduction', url: 'weaver.interfaces.organization.action.StaffChangeAction', param:'changeType=3' }, { key: '2', name: '扣减', id: 'staffDeduction', url: 'weaver.interfaces.organization.action.StaffChangeAction', param:'changeType=5' }, { key: '3', name: '释放', id: 'staffDeduction', url: 'weaver.interfaces.organization.action.StaffChangeAction', param:'changeType=6' }]; return (
1、概述
2、编制流程字段说明
3、Action配置示例
4、接口配置详细