17 lines
427 B
JavaScript
17 lines
427 B
JavaScript
|
|
import { Button, Popconfirm } from 'antd'
|
|
import ListPage from '../../components/Table/ListPage';
|
|
import {initFilter} from "../../utils/common";
|
|
|
|
//用户列表页
|
|
export default {
|
|
btnShow:({record,close,loadData,login,dispatch})=> {
|
|
const data= {
|
|
rules: [{field: 'JOB_WORKSTAGE_ID', operator: 1, value: record.ID}],
|
|
onlyFirst:false
|
|
}
|
|
return {content: <ListPage formCode={'FM012'} data={data} />}
|
|
}
|
|
|
|
}
|