organization.jsx 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053
  1. import React from 'react';
  2. import ReactDom from 'react-dom';
  3. import ajax from 'jquery/src/ajax/xhr.js';
  4. import $ from 'jquery/src/ajax';
  5. import '../content.less';
  6. import { citySelect } from '../../../NewDicProvinceList';
  7. import {
  8. getNewDiccityArr,
  9. } from "@/tools.js";
  10. import { Form,Radio, Icon, Button, Input, Select, Spin, Table, Switch, message, DatePicker, Modal, Upload,Popconfirm,AutoComplete,Tabs } from 'antd';
  11. import {patternOrganization,conditionOrganization} from '../../../dataDic.js';
  12. import {getPattern,getCondition} from '../../../tools.js';
  13. import {ChooseList} from "../../order/orderNew/chooseList";
  14. const confirm = Modal.confirm;
  15. const {TabPane} = Tabs
  16. const Organization=Form.create()(React.createClass({
  17. loadData(pageNo) {
  18. this.state.data = [];
  19. this.setState({
  20. loading: true,
  21. });
  22. $.ajax({
  23. method: "post",
  24. dataType: "json",
  25. crossDomain: false,
  26. url: globalConfig.context + '/api/admin/organization/listOrganizationManagement',
  27. data: {
  28. pageNo: pageNo || 1,
  29. pageSize: this.state.pagination.pageSize,
  30. name: this.state.name, //组织名称
  31. superId:this.state.superId,//上级组织
  32. type:this.state.type,//组织类型
  33. depNo:this.state.depNo,//组织编号
  34. },
  35. success: function (data) {
  36. let theArr = [];
  37. if (!data.data || !data.data.list) {
  38. if (data.error && data.error.length) {
  39. message.warning(data.error[0].message);
  40. };
  41. } else {
  42. for (let i = 0; i < data.data.list.length; i++) {
  43. let thisdata = data.data.list[i];
  44. theArr.push({
  45. key: i,
  46. id: thisdata.id,//每一条记录的ID
  47. depNo:thisdata.depNo,//组织编号
  48. name:thisdata.name,//组织名称
  49. type:thisdata.type,//组织类型
  50. managerId:thisdata.managerName,//负责人
  51. superId:thisdata.superName,//上级组织
  52. status:thisdata.status,//组织状态
  53. });
  54. };
  55. this.state.pagination.current = data.data.pageNo;
  56. this.state.pagination.total = data.data.totalCount;
  57. this.setState({
  58. dataSource: theArr,
  59. page:data.data.pageNo,
  60. pagination: this.state.pagination
  61. });
  62. };
  63. }.bind(this),
  64. }).always(function () {
  65. this.setState({
  66. loading: false
  67. });
  68. }.bind(this));
  69. },
  70. getInitialState() {
  71. return {
  72. searchMore: true,
  73. selectedRowKeys: [],
  74. selectedRows: [],
  75. loading: false,
  76. pagination: {
  77. defaultCurrent: 1,
  78. defaultPageSize: 10,
  79. showQuickJumper: true,
  80. pageSize: 10,
  81. onChange: function (page) {
  82. this.loadData(page);
  83. }.bind(this),
  84. showTotal: function (total) {
  85. return '共' + total + '条数据';
  86. }
  87. },
  88. columns: [
  89. {
  90. title: '组织编号',
  91. dataIndex: 'depNo',
  92. key: 'depNo',
  93. }, {
  94. title: '组织名称',
  95. dataIndex: 'name',
  96. key: 'name',
  97. }, {
  98. title: '负责人',
  99. dataIndex: 'managerId',
  100. key: 'managerId',
  101. },{
  102. title: '组织类型',
  103. dataIndex: 'type',
  104. key: 'type',
  105. render: text => { return getPattern(text) }
  106. }, {
  107. title: '上级组织',
  108. dataIndex: 'superId',
  109. key: 'superId',
  110. },{
  111. title: '组织状态',
  112. dataIndex: 'status',
  113. key: 'status',
  114. render: text => { return getCondition(text) }
  115. }
  116. ],
  117. dataSource: [],
  118. searchTime: [,]
  119. };
  120. },
  121. componentWillMount() {
  122. this.selectSuperId();
  123. },
  124. //获取上级组织
  125. selectSuperId() {
  126. this.state.data = []
  127. $.ajax({
  128. method: "get",
  129. dataType: "json",
  130. crossDomain: false,
  131. url: globalConfig.context + "/api/admin/organization/selectSuperId",
  132. data:{
  133. },
  134. success: function (data) {
  135. let theArr = [];
  136. let theId=[];//用于保存上级组织的ID和名称
  137. let thedata=data.data;
  138. if (!thedata) {
  139. if (data.error && data.error.length) {
  140. message.warning(data.error[0].message);
  141. };
  142. thedata = {};
  143. };
  144. var contactIds=[];
  145. for(var i=0;i<data.data.length;i++){
  146. let theData = data.data[i];
  147. theArr.push(
  148. <Select.Option value={theData.id} key={theData.id}>{theData.name}</Select.Option>
  149. );
  150. theId.push(
  151. [theData.id,theData.name]
  152. );
  153. };
  154. this.setState({
  155. SuperArr:thedata,
  156. contactsOption: theArr,
  157. theId: theId,
  158. orderStatusOptions:data.data,
  159. });
  160. }.bind(this),
  161. }).always(function () {
  162. this.loadData(this.state.page);
  163. this.setState({
  164. loading: false
  165. });
  166. }.bind(this));
  167. },
  168. //编辑部门,保存
  169. edithandleSubmit(e){
  170. e.preventDefault();
  171. //上级组织字典
  172. let nameText=this.state.SuperArr
  173. let superText=this.state.editSuperId;
  174. let upId=this.state.theId;
  175. let oldId='';
  176. let superOne=this.state.editDataSource[0].editSuperId;
  177. if(superOne==superText){
  178. for(let j=0;j<upId.length;j++){
  179. if(superText==upId[j][1]){
  180. oldId=upId[j][0]
  181. }
  182. }
  183. };
  184. let remarksText=(this.state.editRemarks)?this.state.editRemarks:'该组织没有职能说明,请完善!';
  185. let isStatus=this.state.editStatus;
  186. let _this = this;
  187. if(isStatus==1){
  188. confirm({
  189. title:'是否要解散该部门?',
  190. onOk() {
  191. if(!(superOne==superText)){
  192. confirm({
  193. title:'上级组织已修改,是否保存?',
  194. onOk() {
  195. $.ajax({
  196. method: "post",
  197. dataType: "json",
  198. crossDomain: false,
  199. url:
  200. globalConfig.context +
  201. "/api/admin/organization/updateOrganization",
  202. data: {
  203. name: _this.state.editName, //组织名称
  204. type: _this.state.editType, //组织类型
  205. managerId: _this.state.theTypes
  206. ? _this.state.theTypes
  207. : _this.state.managerIdOrganizationId, //负责人ID
  208. financeId: _this.state.theTypes2
  209. ? _this.state.theTypes2
  210. : _this.state.financeId, //负责人ID
  211. superId: _this.state.editSuperId, //上级组织
  212. status: _this.state.editStatus, //组织状态
  213. remarks: remarksText, //组织职能说明
  214. id: _this.state.editId, //组织ID
  215. updateOrganization: _this.state.updateOrganization,
  216. abbreviation: _this.state.abbreviation,
  217. }
  218. }).done(
  219. function(data) {
  220. _this.setState({
  221. loading: false
  222. });
  223. if (!data.error.length) {
  224. message.success("保存成功!");
  225. _this.edithandleCancel();
  226. _this.selectSuperId();
  227. } else {
  228. message.warning(data.error[0].message);
  229. }
  230. }.bind(_this)
  231. );
  232. return false
  233. }
  234. })
  235. }else {
  236. $.ajax({
  237. method: "post",
  238. dataType: "json",
  239. crossDomain: false,
  240. url:
  241. globalConfig.context +
  242. "/api/admin/organization/updateOrganization",
  243. data: {
  244. name: _this.state.editName, //组织名称
  245. type: _this.state.editType, //组织类型
  246. managerId: _this.state.theTypes
  247. ? _this.state.theTypes
  248. : _this.state.managerIdOrganizationId, //负责人ID
  249. financeId: _this.state.theTypes2
  250. ? _this.state.theTypes2
  251. : _this.state.financeId, //负责人ID
  252. superId: oldId, //上级组织
  253. status: _this.state.editStatus, //组织状态
  254. remarks: remarksText, //组织职能说明
  255. id: _this.state.editId, //组织ID
  256. abbreviation: _this.state.abbreviation
  257. }
  258. }).done(
  259. function(data) {
  260. _this.setState({
  261. loading: false
  262. });
  263. if (!data.error.length) {
  264. message.success("保存成功!");
  265. _this.edithandleCancel();
  266. _this.selectSuperId();
  267. } else {
  268. message.warning(data.error[0].message);
  269. }
  270. }.bind(_this)
  271. );
  272. }
  273. }
  274. })
  275. }else{
  276. if(!(superOne==superText)){
  277. confirm({
  278. title:'上级组织已修改,是否保存?',
  279. onOk(){
  280. $.ajax({
  281. method: "post",
  282. dataType: "json",
  283. crossDomain: false,
  284. url:
  285. globalConfig.context +
  286. "/api/admin/organization/updateOrganization",
  287. data: {
  288. name: _this.state.editName, //组织名称
  289. type: _this.state.editType, //组织类型
  290. managerId: _this.state.theTypes
  291. ? _this.state.theTypes
  292. : _this.state.managerIdOrganizationId, //负责人ID
  293. financeId: _this.state.theTypes2
  294. ? _this.state.theTypes2
  295. : _this.state.financeId, //负责人ID
  296. superId: _this.state.editSuperId, //上级组织
  297. status: _this.state.editStatus, //组织状态
  298. province: _this.state.province,//省份
  299. remarks: remarksText, //组织职能说明
  300. id: _this.state.editId, //组织ID
  301. abbreviation: _this.state.abbreviation
  302. }
  303. }).done(
  304. function(data) {
  305. _this.setState({
  306. loading: false
  307. });
  308. if (!data.error.length) {
  309. message.success("保存成功!");
  310. _this.edithandleCancel();
  311. _this.selectSuperId();
  312. } else {
  313. message.warning(data.error[0].message);
  314. }
  315. }.bind(_this)
  316. );
  317. return false
  318. }
  319. })
  320. }else {
  321. $.ajax({
  322. method: "post",
  323. dataType: "json",
  324. crossDomain: false,
  325. url:
  326. globalConfig.context +
  327. "/api/admin/organization/updateOrganization",
  328. data: {
  329. name: _this.state.editName, //组织名称
  330. type: _this.state.editType, //组织类型
  331. managerId: _this.state.theTypes
  332. ? _this.state.theTypes
  333. : _this.state.managerIdOrganizationId, //负责人ID
  334. financeId: _this.state.theTypes2
  335. ? _this.state.theTypes2
  336. : _this.state.financeId, //负责人ID
  337. superId: oldId, //上级组织
  338. status: _this.state.editStatus, //组织状态
  339. remarks: remarksText, //组织职能说明
  340. id: _this.state.editId, //组织ID
  341. abbreviation: _this.state.abbreviation,
  342. province: _this.state.province,
  343. }
  344. }).done(
  345. function(data) {
  346. _this.setState({
  347. loading: false
  348. });
  349. if (!data.error.length) {
  350. message.success("保存成功!");
  351. _this.edithandleCancel();
  352. _this.selectSuperId();
  353. } else {
  354. message.warning(data.error[0].message);
  355. }
  356. }.bind(_this)
  357. );
  358. }
  359. }
  360. },
  361. //整行点击
  362. tableRowClick(record, index) {
  363. this.selectSuperId();
  364. this.state.RowData = record;
  365. this.setState({
  366. editvisible: true,
  367. selectedRowKeys:[],
  368. rowId:record.businessId,
  369. })
  370. $.ajax({
  371. method: "get",
  372. dataType: "json",
  373. crossDomain: false,
  374. url: globalConfig.context +"/api/admin/organization/selectAllById" ,
  375. data: {
  376. id: record.id
  377. },
  378. success: function (data) {
  379. let theArr = [];
  380. let thisdata = data;
  381. if (!data) {
  382. if (data.error && data.error.length) {
  383. message.warning(data.error[0].message);
  384. };
  385. } else {
  386. theArr.push({
  387. editId: thisdata.id, //每一条记录的ID
  388. editName: thisdata.name, //组织名称
  389. editManagerId: thisdata.managerId, //负责人
  390. editType: thisdata.type, //组织类型
  391. editStatus: thisdata.status, //组织状态
  392. province: thisdata.province,//省份
  393. editSuperId: thisdata.superId, //上级组织
  394. editDepNo: thisdata.depNo, //组织编号
  395. editCreateId: thisdata.createId, //创建人
  396. editTime: thisdata.createTime, //创建时间
  397. editRemarks: thisdata.remarks, //组织职能说明
  398. financeId: thisdata.financeId
  399. });
  400. };
  401. this.setState({
  402. editId: thisdata.id, //每一条记录的ID
  403. financeId: thisdata.financeId,
  404. financeName: thisdata.financeName,
  405. editName: thisdata.name, //组织名称
  406. managerIdOrganization: thisdata.managerName, //负责人名字
  407. managerIdOrganizationId: thisdata.managerId, //负责人idmanagerName
  408. editType: thisdata.type, //组织类型
  409. editStatus: thisdata.status, //组织状态
  410. province: thisdata.province, //省份
  411. editSuperId: thisdata.superId, //上级组织
  412. editDepNo: thisdata.depNo, //组织编号
  413. editCreateId: thisdata.createId, //创建人
  414. editTime: thisdata.createTime, //创建时间
  415. editRemarks: thisdata.remarks, //组织职能说明
  416. editDataSource: theArr,
  417. abbreviation: thisdata.abbreviation
  418. });
  419. }.bind(this),
  420. }).always(function (data) {
  421. // if (data.error.length) {
  422. // message.warn(data.error[0].message);
  423. // };
  424. this.setState({
  425. loading: false
  426. });
  427. }.bind(this));
  428. },
  429. //整行删除
  430. delectRow() {
  431. let deletedIds ='';
  432. for (let idx = 0; idx < this.state.selectedRows.length; idx++) {
  433. let rowItem = this.state.selectedRows[idx];
  434. if (rowItem.id) {
  435. deletedIds=rowItem.id;
  436. };
  437. };
  438. this.setState({
  439. selectedRowKeys: [],
  440. loading: deletedIds.length > 0
  441. });
  442. $.ajax({
  443. method: "POST",
  444. dataType: "json",
  445. crossDomain: false,
  446. url: globalConfig.context + "/api/admin/organization/deleteById",
  447. data: {
  448. id: deletedIds
  449. }
  450. }).done(function (data) {
  451. if (!data.error.length) {
  452. message.success('删除成功!');
  453. this.setState({
  454. loading: false,
  455. });
  456. } else {
  457. message.warning(data.error[0].message);
  458. };
  459. this.selectSuperId();
  460. }.bind(this));
  461. },
  462. //新增一个部门,保存
  463. addhandleSubmit(e){
  464. e.preventDefault();
  465. // if(!this.state.theTypes){
  466. // message.warning('请输入负责人姓名');
  467. // return false;
  468. // }
  469. if(!this.state.typeOrganization){
  470. message.warning('请选择组织类型');
  471. return false;
  472. }
  473. if(!this.state.upOrganization){
  474. message.warning('请选择上级组织');
  475. return false;
  476. }
  477. this.props.form.validateFields((err, values) => {
  478. if (!err) {
  479. this.setState({
  480. loading: true
  481. });
  482. $.ajax({
  483. method: "post",
  484. dataType: "json",
  485. crossDomain: false,
  486. url:globalConfig.context + '/api/admin/organization/addOrganization',
  487. data:{
  488. name:this.state.nameOrganization,//组织名称
  489. managerId:this.state.theTypes,//负责人ID
  490. type:this.state.typeOrganization, //组织类型
  491. superId:this.state.upOrganization,//上级组织
  492. remarks:this.state.remarksOrganization,//组织职能说明
  493. }
  494. }).done(function (data) {
  495. this.setState({
  496. loading: false
  497. });
  498. if (!data.error.length) {
  499. message.success('保存成功!');
  500. this.handleCancel();
  501. this.selectSuperId();
  502. } else {
  503. message.warning(data.error[0].message);
  504. }
  505. }.bind(this));
  506. }
  507. });
  508. },
  509. //主管初始加载(自动补全)
  510. supervisor(e){
  511. $.ajax({
  512. method: "post",
  513. dataType: "json",
  514. crossDomain: false,
  515. url: globalConfig.context + "/api/admin/organization/selectName",
  516. data:{
  517. name:e
  518. },
  519. success: function (data) {
  520. let thedata=data.data;
  521. if (!thedata) {
  522. if (data.error && data.error.length) {
  523. message.warning(data.error[0].message);
  524. };
  525. thedata = {};
  526. };
  527. this.setState({
  528. customerArr:thedata,
  529. });
  530. }.bind(this),
  531. }).always(function () {
  532. this.setState({
  533. loading: false
  534. });
  535. }.bind(this));
  536. },
  537. //上级主管输入框失去焦点是判断客户是否存在
  538. selectAuto(value,options){
  539. this.setState({
  540. managerIdOrganization:value
  541. })
  542. let theType='';
  543. let contactLists=this.state.customerArr||[];
  544. if (value) {
  545. contactLists.map(function (item) {
  546. if (item.name == value.toString()) {
  547. theType = item.id;
  548. }
  549. });
  550. }
  551. this.setState({
  552. theTypes:theType
  553. })
  554. },
  555. selectAuto2(value,options){
  556. this.setState({
  557. financeId:value
  558. })
  559. let theType='';
  560. let contactLists=this.state.customerArr||[];
  561. if (value) {
  562. contactLists.map(function (item) {
  563. if (item.name == value.toString()) {
  564. theType = item.id;
  565. }
  566. });
  567. }
  568. this.setState({
  569. theTypes2:theType
  570. })
  571. },
  572. //失去焦点时
  573. blurChange(e){
  574. },
  575. //值改变时请求客户名称
  576. httpChange(e){
  577. if(e.length>=1){
  578. this.supervisor(e);
  579. }
  580. this.setState({
  581. managerIdOrganization:e
  582. })
  583. },
  584. httpChange2(e){
  585. if(e.length>=1){
  586. this.supervisor(e);
  587. }
  588. this.setState({
  589. financeName:e
  590. })
  591. },
  592. addClick() {
  593. this.state.theTypes='';
  594. this.state.nameOrganization='';//组织名称清零
  595. this.state.managerIdOrganization= '';//负责人ID清零
  596. this.state.financeId = "";//负责人ID清零
  597. this.state.financeName = "";//负责人ID清零
  598. this.state.typeOrganization= undefined; //组织类型清零
  599. this.state.upOrganization= undefined;//上级组织清零
  600. this.state.remarksOrganization= '';//组织职能说明清零
  601. this.state.RowData = {};
  602. this.setState({
  603. visible: true
  604. });
  605. this.selectSuperId();
  606. },
  607. editClick() {
  608. this.state.RowData = {};
  609. this.setState({
  610. editvisible: true
  611. });
  612. },
  613. handleCancel() {
  614. this.setState({ visible: false })
  615. },
  616. edithandleCancel() {
  617. this.loadData(this.state.page);
  618. this.setState({ editvisible: false })
  619. },
  620. search() {
  621. this.loadData();
  622. },
  623. //把搜索的部分置零
  624. reset() {
  625. this.state.superId = undefined;//上级组织清零
  626. this.state.name = '';//组织名称清零
  627. this.state.type = undefined;//组织类型清零
  628. this.state.depNo = '';//组织编号清零
  629. this.loadData();
  630. },
  631. searchSwitch() {
  632. this.setState({
  633. searchMore: !this.state.searchMore
  634. });
  635. },
  636. changeList(arr) {
  637. const newArr = [];
  638. this.state.columns.forEach(item => {
  639. arr.forEach(val => {
  640. if (val === item.title) {
  641. newArr.push(item);
  642. }
  643. });
  644. });
  645. this.setState({
  646. changeList: newArr
  647. });
  648. },
  649. render() {
  650. const FormItem = Form.Item
  651. const rowSelection = {
  652. selectedRowKeys: this.state.selectedRowKeys,
  653. onChange: (selectedRowKeys, selectedRows) => {
  654. this.setState({
  655. selectedRows: selectedRows.slice(-1),
  656. selectedRowKeys: selectedRowKeys.slice(-1)
  657. });
  658. },
  659. onSelect: (recordt, selected, selectedRows) => {
  660. this.setState({
  661. recordt:recordt.id
  662. })
  663. },
  664. };
  665. const formItemLayout = {
  666. labelCol: { span: 8 },
  667. wrapperCol: { span: 14 },
  668. };
  669. const { getFieldDecorator } = this.props.form;
  670. const hasSelected = this.state.selectedRowKeys.length > 0;
  671. const { RangePicker } = DatePicker;
  672. const dataSources=this.state.customerArr || [];
  673. const options = dataSources.map((group,index) =>
  674. <Option key={index} value={group.name}>{group.name}</Option>
  675. )
  676. const options2 = dataSources.map((group,index) =>
  677. <Option key={index} value={group.name}>{group.name}</Option>
  678. )
  679. return (
  680. <div className="user-content" >
  681. <div className="content-title">
  682. <Tabs
  683. defaultActiveKey="1"
  684. onChange={this.callback}
  685. className="test">
  686. <TabPane tab="搜索" key="1">
  687. <div className="user-search">
  688. <Input placeholder="组织名称" style={{width:'150px',marginRight:'10px',marginBottom:'10px'}}
  689. value={this.state.name}
  690. onChange={(e) => { this.setState({ name: e.target.value }); }} />
  691. <Select placeholder="上级组织"
  692. style={{ width:'200px',marginRight:'10px' }}
  693. value={this.state.superId}
  694. onChange={(e) => { this.setState({ superId: e }) }} notFoundContent="未获取到上级组织列表">
  695. {this.state.contactsOption}
  696. </Select>
  697. <Button type="primary" onClick={this.search} style={{marginRight:'10px'}}>搜索</Button>
  698. <Button onClick={this.reset} style={{marginRight:'10px'}}>重置</Button>
  699. <Popconfirm title="是否删除?" onConfirm={this.delectRow} okText="是" cancelText="否">
  700. <Button style={{ background: "#ea0862", border: "none", color: "#fff",marginRight:'10px' ,marginLeft:'10px'}}
  701. disabled={!hasSelected}
  702. >删除<Icon type="minus" />
  703. </Button>
  704. </Popconfirm>
  705. <span style={{marginRight:'20px'}}>更多搜索 <Switch defaultChecked={false} onChange={this.searchSwitch} /></span>
  706. <div style={this.state.searchMore ? { display: 'none' } : {display: 'inline-block'}}>
  707. <Input placeholder="组织编号" style={{width:'150px',marginRight:'10px'}}
  708. value={this.state.depNo}
  709. onChange={(e) => { this.setState({ depNo: e.target.value }); }} />
  710. <Select placeholder="组织类型"
  711. style={{width:'150px',marginRight:'50px'}}
  712. value={this.state.type}
  713. onChange={(e) => { this.setState({ type: e }) }}>
  714. <Select.Option value="0" >公司</Select.Option>
  715. <Select.Option value="1" >部门</Select.Option>
  716. <Select.Option value="2" >团队</Select.Option>
  717. </Select>
  718. </div>
  719. </div>
  720. </TabPane>
  721. <TabPane tab="新增组织" key="2" >
  722. <Button type="primary" className="addButton" onClick={this.addClick} style={{marginBottom:'10px',float:'left'}}>新增组织<Icon type="plus" /></Button>
  723. </TabPane>
  724. <TabPane tab="更改表格显示数据" key="3">
  725. <div style={{ marginLeft: 10 }}>
  726. <ChooseList
  727. columns={this.state.columns}
  728. changeFn={this.changeList}
  729. changeList={this.state.changeList}
  730. top={55}
  731. margin={11}
  732. />
  733. </div>
  734. </TabPane>
  735. </Tabs>
  736. <div className="patent-table">
  737. <Spin spinning={this.state.loading}>
  738. <Table size="middle" columns={
  739. this.state.changeList
  740. ? this.state.changeList
  741. : this.state.columns
  742. }
  743. dataSource={this.state.dataSource}
  744. rowSelection={rowSelection}
  745. pagination={this.state.pagination}
  746. onRowClick={this.tableRowClick} />
  747. </Spin>
  748. </div>
  749. <div className="patent-desc">
  750. <Modal maskClosable={false} visible={this.state.visible}
  751. onOk={this.checkPatentProcess} onCancel={this.handleCancel}
  752. width='600px'
  753. title='新增组织'
  754. footer=''
  755. className="admin-desc-content">
  756. <Form horizontal onSubmit={this.addhandleSubmit} id="add-form">
  757. <Spin spinning={this.state.loading}>
  758. <div className="clearfix">
  759. <FormItem
  760. labelCol={{ span: 7 }}
  761. wrapperCol={{ span: 12 }}
  762. label="组织名称" >
  763. <Input placeholder="组织名称" value={this.state.nameOrganization} style={{width:'95%',marginBottom:'5px'}}
  764. onChange={(e)=>{this.setState({nameOrganization:e.target.value})}} required="required"/>
  765. <span className="mandatory" style={{color:'red',marginLeft:'5px'}}>*</span>
  766. </FormItem>
  767. </div>
  768. <div className="clearfix">
  769. <FormItem
  770. labelCol={{ span: 7 }}
  771. wrapperCol={{ span: 12}}
  772. label="负责人"
  773. >
  774. <AutoComplete
  775. size='default'
  776. className="certain-category-search"
  777. dropdownClassName="certain-category-search-dropdown"
  778. dropdownMatchSelectWidth={false}
  779. dataSource={options}
  780. placeholder="输入名称"
  781. value={this.state.managerIdOrganization}
  782. onChange={this.httpChange}
  783. filterOption={true}
  784. onBlur={this.blurChange}
  785. onSelect={this.selectAuto}
  786. style={{width:'95%',marginBottom:'5px'}}
  787. >
  788. <Input />
  789. </AutoComplete>
  790. {/*<span className="mandatory" style={{color:'red',marginLeft:'5px'}}>*</span>*/}
  791. </FormItem>
  792. </div>
  793. <div className="clearfix">
  794. <FormItem
  795. labelCol={{ span: 7 }}
  796. wrapperCol={{ span: 12 }}
  797. label="组织类型"
  798. >
  799. <Select placeholder="组织类型" value={this.state.typeOrganization}
  800. onChange={(e)=>{this.setState({typeOrganization:e})}} style={{width:'95%',marginBottom:'5px'}} required="required">
  801. {
  802. patternOrganization.map(function (item) {
  803. return <Select.Option key={item.value} >{item.key}</Select.Option>
  804. })
  805. }
  806. </Select>
  807. <span className="mandatory" style={{color:'red',marginLeft:'5px'}}>*</span>
  808. </FormItem>
  809. </div>
  810. <div className="clearfix">
  811. <FormItem
  812. labelCol={{ span: 7 }}
  813. wrapperCol={{ span: 12 }}
  814. label="上级组织"
  815. >
  816. <Select placeholder="请选择上级组织"
  817. value={this.state.upOrganization}
  818. onChange={(e)=>{this.setState({upOrganization:e})}}
  819. notFoundContent="未获取到上级组织列表"
  820. style={{width:'95%',marginBottom:'5px'}} required="required">
  821. {this.state.contactsOption}
  822. </Select>
  823. <span className="mandatory" style={{color:'red',marginLeft:'5px'}}>*</span>
  824. </FormItem>
  825. </div>
  826. <div className="clearfix">
  827. <FormItem
  828. labelCol={{ span: 7 }}
  829. wrapperCol={{ span: 12 }}
  830. label="组织职能说明" >
  831. <Input type="textarea" rows={4} placeholder="组织职能说明" value={this.state.remarksOrganization}
  832. onChange={(e) => { this.setState({ remarksOrganization: e.target.value }) }} style={{width:'95%',marginBottom:'5px'}}/>
  833. </FormItem>
  834. </div>
  835. <FormItem wrapperCol={{ span: 12, offset: 7 }}>
  836. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  837. <Button className="set-submit" type="ghost" onClick={this.handleCancel} style={{marginLeft:'100px'}}>取消</Button>
  838. </FormItem>
  839. </Spin>
  840. </Form >
  841. </Modal>
  842. </div>
  843. <div className="patent-desc">
  844. <Modal maskClosable={false} visible={this.state.editvisible}
  845. onOk={this.checkPatentProcess} onCancel={this.edithandleCancel}
  846. width='600px'
  847. title='编辑组织'
  848. footer=''
  849. className="admin-desc-content">
  850. <Form horizontal onSubmit={this.edithandleSubmit} id="edit-form">
  851. <Spin spinning={this.state.loading}>
  852. <div className="clearfix">
  853. <FormItem
  854. labelCol={{ span: 7 }}
  855. wrapperCol={{ span: 12 }}
  856. label="组织名称" >
  857. <Input placeholder="组织名称" value={this.state.editName}
  858. onChange={(e)=>{this.setState({editName:e.target.value})}}/>
  859. </FormItem>
  860. </div>
  861. <div className="clearfix">
  862. <FormItem
  863. labelCol={{ span: 7 }}
  864. wrapperCol={{ span: 12}}
  865. label="负责人"
  866. >
  867. <AutoComplete
  868. size='default'
  869. className="certain-category-search"
  870. dropdownClassName="certain-category-search-dropdown"
  871. dropdownMatchSelectWidth={false}
  872. dataSource={options}
  873. placeholder="输入名称"
  874. value={this.state.managerIdOrganization}
  875. onChange={this.httpChange}
  876. filterOption={true}
  877. onBlur={this.blurChange}
  878. onSelect={this.selectAuto}
  879. style={{width:'95%'}}
  880. >
  881. <Input />
  882. </AutoComplete>
  883. {/* <span className="mandatory" style={{color:'red',marginLeft:'5px'}}>*</span> */}
  884. </FormItem>
  885. </div>
  886. <div className="clearfix">
  887. <FormItem
  888. labelCol={{ span: 7 }}
  889. wrapperCol={{ span: 12 }}
  890. label="组织类型"
  891. >
  892. <Select placeholder="组织类型" value={this.state.editType}
  893. onChange={(e)=>{this.setState({editType:e})}}>
  894. {
  895. patternOrganization.map(function (item) {
  896. return <Select.Option key={item.value} >{item.key}</Select.Option>
  897. })
  898. }
  899. </Select>
  900. </FormItem>
  901. </div>
  902. <div className="clearfix">
  903. <FormItem
  904. labelCol={{ span: 7 }}
  905. wrapperCol={{ span: 12 }}
  906. label="组织状态"
  907. >
  908. <Select placeholder="组织状态" value={this.state.editStatus}
  909. onChange={(e)=>{this.setState({editStatus:e})}}>
  910. {
  911. conditionOrganization.map(function (item) {
  912. return <Select.Option key={item.value} >{item.key}</Select.Option>
  913. })
  914. }
  915. </Select>
  916. </FormItem>
  917. </div>
  918. <div className="clearfix">
  919. <FormItem
  920. labelCol={{ span: 7 }}
  921. wrapperCol={{ span: 12 }}
  922. label="省份"
  923. >
  924. <Select
  925. placeholder="请选择省份"
  926. value={getNewDiccityArr(this.state.province)}
  927. onChange={e => {
  928. this.setState({ province: e });
  929. }}
  930. >
  931. {citySelect().map(function(item) {
  932. return (
  933. <Select.Option key={item.value} value={item.value}>{item.label}</Select.Option>
  934. );
  935. })}
  936. </Select>
  937. </FormItem>
  938. </div>
  939. <div className="clearfix">
  940. <FormItem
  941. labelCol={{ span: 7 }}
  942. wrapperCol={{ span: 12 }}
  943. label="上级组织"
  944. >
  945. <Select placeholder="请选择上级组织"
  946. value={this.state.editSuperId}
  947. onChange={(e)=>{this.setState({editSuperId:e})}}
  948. notFoundContent="未获取到上级组织列表">
  949. {this.state.contactsOption}
  950. </Select>
  951. </FormItem>
  952. </div>
  953. <div className="clearfix">
  954. <FormItem
  955. labelCol={{ span: 7 }}
  956. wrapperCol={{ span: 12 }}
  957. label="缩写" >
  958. <Input placeholder="缩写" value={this.state.abbreviation}
  959. onChange={(e)=>{this.setState({abbreviation:e.target.value})}}/>
  960. </FormItem>
  961. </div>
  962. <div className="clearfix">
  963. <FormItem
  964. labelCol={{ span: 7 }}
  965. wrapperCol={{ span: 12}}
  966. label="财务负责人"
  967. >
  968. <AutoComplete
  969. size='default'
  970. className="certain-category-search"
  971. dropdownClassName="certain-category-search-dropdown"
  972. dropdownMatchSelectWidth={false}
  973. dataSource={options2}
  974. placeholder="输入名称"
  975. value={this.state.financeName}
  976. onChange={this.httpChange2}
  977. filterOption={true}
  978. onBlur={this.blurChange}
  979. onSelect={this.selectAuto2}
  980. style={{width:'95%'}}
  981. >
  982. <Input />
  983. </AutoComplete>
  984. {/* <span className="mandatory" style={{color:'red',marginLeft:'5px'}}>*</span> */}
  985. </FormItem>
  986. </div>
  987. <div className="clearfix">
  988. <FormItem
  989. labelCol={{ span: 7 }}
  990. wrapperCol={{ span: 12 }}
  991. label="组织编号"
  992. >
  993. <span>{this.state.editDepNo}</span>
  994. </FormItem>
  995. </div>
  996. <div className="clearfix" >
  997. <FormItem
  998. labelCol={{ span: 7 }}
  999. wrapperCol={{ span: 12 }}
  1000. label="创建人"
  1001. >
  1002. <span>{this.state.editCreateId}</span>
  1003. </FormItem>
  1004. </div>
  1005. <div className="clearfix">
  1006. <FormItem
  1007. labelCol={{ span: 7 }}
  1008. wrapperCol={{ span: 12 }}
  1009. label="创建时间"
  1010. >
  1011. <span>{this.state.editTime}</span>
  1012. </FormItem>
  1013. </div>
  1014. <div className="clearfix">
  1015. <FormItem
  1016. labelCol={{ span: 7 }}
  1017. wrapperCol={{ span: 12 }}
  1018. label="组织职能说明" >
  1019. <Input type="textarea" rows={4} placeholder="组织职能说明" value={this.state.editRemarks}
  1020. onChange={(e) => { this.setState({ editRemarks: e.target.value }) }}/>
  1021. </FormItem>
  1022. </div>
  1023. <FormItem wrapperCol={{ span: 12, offset: 7 }}>
  1024. <Button className="set-submit" type="primary" htmlType="submit">保存</Button>
  1025. <Button className="set-submit" type="ghost" onClick={this.edithandleCancel} style={{marginLeft:'100px'}}>取消</Button>
  1026. </FormItem>
  1027. </Spin>
  1028. </Form >
  1029. </Modal>
  1030. </div>
  1031. </div>
  1032. </div>
  1033. );
  1034. }
  1035. }));
  1036. export default Organization;