import React from "react"; import $ from "jquery/src/ajax"; import { Spin, Button, Tabs, Table, message, Modal, Input, Form } from "antd"; import "@/manageCenter/financialManage/distribute/public.less"; import { splitUrl } from "@/tools"; import {ChooseList} from "../../order/orderNew/chooseList"; const FormItem = Form.Item; const { TabPane } = Tabs; const BonusList = React.createClass({ getInitialState() { return { columns: [ { title: "职位名称", dataIndex: "jobsName", key: "jobsName", }, { title: "级别", dataIndex: "lvlName", key: "lvlName", }, { title: "研究生津贴", dataIndex: "allowance", key: "allowance", }, { title: "在职奖励", dataIndex: "aliveRewards", key: "aliveRewards", }, { title: "奖励", dataIndex: "rewards", key: "rewards", }, { title: "二级奖励", dataIndex: "twoRewards", key: "twoRewards", }, { title: "三级奖励", dataIndex: "threeRewards", key: "threeRewards", }, { title: "操作", dataIndex: "caozuo", key: "caozuo", render: (text, record) => { return } } ], pagination: { defaultCurrent: 1, defaultPageSize: 10, showQuickJumper: true, pageSize: 10, onChange: function (page) { this.loadData(page); }.bind(this), showTotal: function (total) { return "共" + total + "条数据"; }, }, }; }, componentWillMount() { this.loadData() }, loadData(pageNo) { this.state.data = []; this.setState({ loading: true, }); $.ajax({ method: "get", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/personnel/selectLvlList", data: { pageNo: pageNo || 1, pageSize: this.state.pagination.pageSize, }, success: function (data) { let theArr = []; if (!data.data) { if (data.error && data.error.length) { message.warning(data.error[0].message); } } else { for (let i = 0; i < data.data.length; i++) { let thisdata = data.data[i]; thisdata.key = thisdata.id; theArr.push(thisdata); } } this.state.pagination.current = data.data.pageNo; this.state.pagination.total = data.data.totalCount; if (data.data && data.data.list && !data.data.list.length) { this.state.pagination.current = 0; this.state.pagination.total = 0; } this.setState({ dataSource: theArr, pagination: this.state.pagination, }); }.bind(this), }).always( function () { this.setState({ loading: false, }); }.bind(this) ); }, moneyOk() { this.setState({ loading: true, }); $.ajax({ method: "post", dataType: "json", crossDomain: false, url: globalConfig.context + "/api/admin/personnel/updateLvl", data: { id: this.state.id, jobs: this.state.jobs, lvl: this.state.lvl, aliveRewards: this.state.aliveRewards, rewards: this.state.rewards, twoRewards: this.state.twoRewards, threeRewards: this.state.threeRewards, }, success: function (data) { if (!data.data) { if (data.error && data.error.length) { message.warning(data.error[0].message); } } else { this.loadData() this.setState({ visible: false }) } }.bind(this), }).always( function () { this.setState({ loading: false, }); }.bind(this) ); }, editMoney(record) { this.setState({ visible: true, id: record.id, jobs: record.jobs, lvl: record.lvl, aliveRewards: record.aliveRewards, rewards: record.rewards, twoRewards: record.twoRewards, threeRewards: record.threeRewards, }); }, changeList(arr) { const newArr = []; this.state.columns.forEach(item => { arr.forEach(val => { if (val === item.title) { newArr.push(item); } }); }); this.setState({ changeList: newArr }); }, render() { return (
{ this.loadData(); this.setState({ visible: false, }); }} >

奖励修改

{ this.setState({ aliveRewards: e.target.value }); }} /> { this.setState({ rewards: e.target.value }); }} />
{ this.setState({ twoRewards: e.target.value }); }} /> { this.setState({ threeRewards: e.target.value }); }} />
); }, }); export default BonusList;