userProfile.jsx 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. import React,{Component} from "react";
  2. import {Button, Cascader, DatePicker, Form, Input, message, Modal, Radio, Select, Spin, Checkbox} from "antd";
  3. import { areaSelect, Birthplace } from "@/areaList";
  4. import { getProvinceList } from "@/addressList";
  5. import moment from "moment";
  6. import $ from "jquery/src/ajax";
  7. import UserProcessing from './userProcessing';
  8. const FormItem = Form.Item;
  9. const formItemLayout = {
  10. labelCol: { span: 6 },
  11. wrapperCol: { span: 16 },
  12. };
  13. class UserProfile extends Component{
  14. constructor(props) {
  15. super(props);
  16. this.state={
  17. loading: false,
  18. doorId:'',
  19. employeeId:'',
  20. name:'',
  21. establish: props.aid ? true : false,
  22. }
  23. this.verifyDoor = this.verifyDoor.bind(this);
  24. this.verifyId = this.verifyId.bind(this);
  25. this.addOk = this.addOk.bind(this);
  26. this.editOk = this.editOk.bind(this);
  27. this.editPeo = this.editPeo.bind(this);
  28. }
  29. componentDidMount() {
  30. let areaArr = getProvinceList();
  31. let Area = areaSelect(areaArr);
  32. let Birthplaces = Birthplace(areaArr);
  33. this.setState({
  34. Area,
  35. Birthplaces: Birthplaces,
  36. });
  37. if(this.props.ModalData && !this.state.isAddPeo){
  38. this.editPeo();
  39. }
  40. }
  41. verifyDoor() {
  42. this.setState({
  43. loading: true,
  44. });
  45. $.ajax({
  46. method: "get",
  47. dataType: "json",
  48. crossDomain: false,
  49. url: globalConfig.context + "/api/admin/personnel/checkDoorId",
  50. data: {
  51. doorId: this.state.doorId,
  52. id: this.props.id,
  53. },
  54. success: function (data) {
  55. if (data.error && data.error.length) {
  56. message.warning(data.error[0].message);
  57. } else {
  58. message.success("此编号未被占用");
  59. }
  60. }.bind(this),
  61. }).always(
  62. function () {
  63. this.setState({
  64. loading: false,
  65. });
  66. }.bind(this)
  67. );
  68. }
  69. verifyId() {
  70. this.setState({
  71. loading: true,
  72. });
  73. $.ajax({
  74. method: "get",
  75. dataType: "json",
  76. crossDomain: false,
  77. url: globalConfig.context + "/api/admin/personnel/checkEmployeeId",
  78. data: {
  79. employeeId: this.state.employeeId,
  80. id: this.props.id
  81. },
  82. success: function (data) {
  83. if (data.error && data.error.length) {
  84. message.warning(data.error[0].message);
  85. } else {
  86. message.success("此编号未被占用");
  87. }
  88. }.bind(this),
  89. }).always(
  90. function () {
  91. this.setState({
  92. loading: false,
  93. });
  94. }.bind(this)
  95. );
  96. }
  97. inspect(fn) {
  98. if(!this.state.name){
  99. message.warning('请输入姓名');
  100. return;
  101. }
  102. if(!this.state.employeeId){
  103. message.warning('请输入员工编号');
  104. return;
  105. }
  106. if(!this.state.doorId){
  107. message.warning('请输入门禁编号');
  108. return;
  109. }
  110. if(isNaN(parseInt(this.state.sex))){
  111. message.warning('请选择性别');
  112. return;
  113. }
  114. if(!this.state.nation){
  115. message.warning('请输入民族');
  116. return;
  117. }
  118. if(!(this.state.residence) || this.state.residence.length === 0){
  119. message.warning('请选择户籍地址');
  120. return;
  121. }
  122. if((!this.state.nativePlace) || this.state.nativePlace.length === 0){
  123. message.warning('请选择籍贯');
  124. return;
  125. }
  126. if((!this.state.now) || this.state.now.length === 0){
  127. message.warning('请选择现住地址');
  128. return;
  129. }
  130. fn();
  131. }
  132. addOk(aid) {
  133. this.setState({
  134. loading: true,
  135. });
  136. $.ajax({
  137. method: "post",
  138. dataType: "json",
  139. crossDomain: false,
  140. url: globalConfig.context + "/api/admin/personnel/add",
  141. data: {
  142. name: this.state.name,
  143. doorId: this.state.doorId,
  144. aid,
  145. sex: this.state.sex,
  146. nation: this.state.nation,
  147. residenceProvince: this.state.residence[0],
  148. residenceCity: this.state.residence[1],
  149. residenceArea: this.state.residence[2],
  150. residenceAddress: this.state.residenceAddress,
  151. nativePlaceProvince: this.state.nativePlace[0],
  152. nativePlaceCity: this.state.nativePlace[1],
  153. nowProvince: this.state.now[0],
  154. nowCity: this.state.now[1],
  155. nowArea: this.state.now[2],
  156. nowAddress: this.state.nowAddress,
  157. idCard: this.state.idCard,
  158. certificationAuthority: this.state.certificationAuthority,
  159. marriage: this.state.marriage,
  160. politicalOutlook: this.state.politicalOutlook,
  161. son: this.state.son,
  162. girl: this.state.girl,
  163. birthdays: this.state.birthdays,
  164. employeeId: this.state.employeeId,
  165. },
  166. success: function (data) {
  167. if (data.error && data.error.length) {
  168. message.warning(data.error[0].message);
  169. } else {
  170. message.success("添加成功!");
  171. this.props.onCancel();
  172. }
  173. }.bind(this),
  174. }).always(
  175. function () {
  176. this.setState({
  177. loading: false,
  178. });
  179. }.bind(this)
  180. );
  181. }
  182. editOk(aid) {
  183. this.setState({
  184. loading: true,
  185. });
  186. $.ajax({
  187. method: "post",
  188. dataType: "json",
  189. crossDomain: false,
  190. url: globalConfig.context + "/api/admin/personnel/update",
  191. data: {
  192. aid,
  193. id: this.props.id,
  194. name: this.state.name,
  195. doorId: this.state.doorId,
  196. sex: this.state.sex,
  197. nation: this.state.nation,
  198. residenceProvince: this.state.residence[0],
  199. residenceCity: this.state.residence[1],
  200. residenceArea: this.state.residence[2],
  201. residenceAddress: this.state.residenceAddress,
  202. nativePlaceProvince: this.state.nativePlace[0],
  203. nativePlaceCity: this.state.nativePlace[1],
  204. nowProvince: this.state.now[0],
  205. nowCity: this.state.now[1],
  206. nowArea: this.state.now[2],
  207. nowAddress: this.state.nowAddress,
  208. idCard: this.state.idCard,
  209. certificationAuthority: this.state.certificationAuthority,
  210. marriage: this.state.marriage,
  211. politicalOutlook: this.state.politicalOutlook,
  212. son: this.state.son,
  213. girl: this.state.girl,
  214. birthdays: this.state.birthdays,
  215. employeeId: this.state.employeeId,
  216. },
  217. success: function (data) {
  218. if (data.error && data.error.length) {
  219. message.warning(data.error[0].message);
  220. } else {
  221. message.success("修改成功!");
  222. this.props.onCancel();
  223. }
  224. }.bind(this),
  225. }).always(
  226. function () {
  227. this.setState({
  228. loading: false,
  229. });
  230. }.bind(this)
  231. );
  232. }
  233. editPeo() {
  234. let residence = [];
  235. residence[0] = this.props.ModalData.residenceProvince;
  236. residence[1] = this.props.ModalData.residenceCity;
  237. residence[2] = this.props.ModalData.residenceArea;
  238. let nativePlace = [];
  239. nativePlace[0] = this.props.ModalData.nativePlaceProvince;
  240. nativePlace[1] = this.props.ModalData.nativePlaceCity;
  241. let now = [];
  242. now[0] = this.props.ModalData.nowProvince;
  243. now[1] = this.props.ModalData.nowCity;
  244. now[2] = this.props.ModalData.nowArea;
  245. this.setState({
  246. id: this.props.ModalData.id,
  247. doorId: this.props.ModalData.doorId,
  248. name: this.props.ModalData.name,
  249. birthdays: this.props.ModalData.birthdays,
  250. sex: this.props.ModalData.sex,
  251. nation: this.props.ModalData.nation,
  252. residence: residence ? residence : [],
  253. residenceAddress: this.props.ModalData.residenceAddress,
  254. now: now ? now : [],
  255. nowAddress: this.props.ModalData.nowAddress,
  256. nativePlace: nativePlace ? nativePlace : [],
  257. idCard: this.props.ModalData.idCard,
  258. certificationAuthority: this.props.ModalData.certificationAuthority,
  259. marriage: this.props.ModalData.marriage,
  260. son: this.props.ModalData.son,
  261. girl: this.props.ModalData.girl,
  262. politicalOutlook: this.props.ModalData.politicalOutlook || this.props.ModalData.politicalOutlook == 0
  263. ? this.props.ModalData.politicalOutlook
  264. : undefined,
  265. employeeId: this.props.ModalData.employeeId,
  266. });
  267. }
  268. render() {
  269. return (
  270. <Modal
  271. maskClosable={false}
  272. visible={this.props.visible}
  273. footer={null}
  274. width={800}
  275. style={{ position: "relative", zIndex: 9999 }}
  276. onCancel={this.props.onCancel}
  277. >
  278. <Spin spinning={this.state.loading}>
  279. <h2
  280. style={{
  281. textAlign: "center",
  282. paddingBottom: 10,
  283. marginBottom: 10,
  284. }}
  285. >
  286. {this.props.isAddPeo ? "新增人事档案" : "修改人事档案"}
  287. </h2>
  288. <div className="clearfix">
  289. <FormItem
  290. className="half-item"
  291. {...formItemLayout}
  292. label="员工编号"
  293. >
  294. <Input
  295. placeholder="请输入员工编号"
  296. style={{ width: 200 }}
  297. value={this.state.employeeId}
  298. onChange={(e) => {
  299. this.setState({
  300. employeeId: e.target.value,
  301. });
  302. }}
  303. />
  304. <Button
  305. disabled={!(this.state.employeeId || this.state.employeeId == 0)}
  306. style={{ position: "absolute" }}
  307. type={"primary"}
  308. onClick={this.verifyId}
  309. >
  310. 验证重复
  311. </Button>
  312. </FormItem>
  313. <FormItem
  314. className="half-item"
  315. {...formItemLayout}
  316. label="门禁编号"
  317. >
  318. <Input
  319. style={{ width: 200 }}
  320. placeholder="请输入门禁编号"
  321. value={this.state.doorId}
  322. onChange={(e) => {
  323. this.setState({
  324. doorId: e.target.value,
  325. });
  326. }}
  327. />
  328. <Button
  329. disabled={!(this.state.doorId || this.state.doorId == 0)}
  330. style={{ position: "absolute" }}
  331. type={"primary"}
  332. onClick={this.verifyDoor}
  333. >
  334. 验证重复
  335. </Button>
  336. </FormItem>
  337. </div>
  338. <div className="clearfix">
  339. <FormItem className="half-item" {...formItemLayout} label="姓名">
  340. <Input
  341. placeholder="请输入姓名"
  342. style={{ width: 200 }}
  343. value={this.state.name}
  344. onChange={(e) => {
  345. this.setState({
  346. name: e.target.value,
  347. });
  348. }}
  349. />
  350. </FormItem>
  351. <FormItem
  352. className="half-item"
  353. {...formItemLayout}
  354. label="出生日期"
  355. >
  356. <DatePicker
  357. value={
  358. this.state.birthdays ? moment(this.state.birthdays) : null
  359. }
  360. onChange={(e, t) => {
  361. this.setState({
  362. birthdays: t,
  363. });
  364. }}
  365. />
  366. </FormItem>
  367. </div>
  368. <div className="clearfix">
  369. <FormItem className="half-item" {...formItemLayout} label="性别">
  370. <Radio.Group
  371. onChange={(e) => {
  372. this.setState({ sex: e.target.value });
  373. }}
  374. value={this.state.sex}
  375. >
  376. <Radio value={0}>男</Radio>
  377. <Radio value={1}>女</Radio>
  378. </Radio.Group>
  379. </FormItem>
  380. <FormItem className="half-item" {...formItemLayout} label="民族">
  381. <Input
  382. placeholder="输入民族(例:汉族)"
  383. style={{ width: 200 }}
  384. value={this.state.nation}
  385. onChange={(e) => {
  386. this.setState({
  387. nation: e.target.value,
  388. });
  389. }}
  390. />
  391. </FormItem>
  392. </div>
  393. <div className="clearfix">
  394. <FormItem
  395. className="half-item"
  396. {...formItemLayout}
  397. label="户籍地址"
  398. >
  399. <Cascader
  400. options={this.state.Area}
  401. value={this.state.residence}
  402. placeholder="选择城市"
  403. style={{ width: "200px" }}
  404. onChange={(e, pre) => {
  405. this.setState({ residence: e });
  406. }}
  407. />
  408. </FormItem>
  409. <FormItem
  410. className="half-item"
  411. {...formItemLayout}
  412. label="户籍街道地址"
  413. >
  414. <Input
  415. placeholder="输入街道地址"
  416. style={{ width: 200 }}
  417. value={this.state.residenceAddress}
  418. onChange={(e) => {
  419. this.setState({
  420. residenceAddress: e.target.value,
  421. });
  422. }}
  423. />
  424. </FormItem>
  425. </div>
  426. <div className="clearfix">
  427. <FormItem
  428. className="half-item"
  429. {...formItemLayout}
  430. label="现住地址"
  431. >
  432. <Cascader
  433. options={this.state.Area}
  434. value={this.state.now}
  435. placeholder="选择城市"
  436. style={{ width: "200px" }}
  437. onChange={(e, pre) => {
  438. this.setState({ now: e });
  439. }}
  440. />
  441. </FormItem>
  442. <FormItem
  443. className="half-item"
  444. {...formItemLayout}
  445. label="现住街道地址"
  446. >
  447. <Input
  448. placeholder="输入街道地址"
  449. style={{ width: 200 }}
  450. value={this.state.nowAddress}
  451. onChange={(e) => {
  452. this.setState({
  453. nowAddress: e.target.value,
  454. });
  455. }}
  456. />
  457. </FormItem>
  458. </div>
  459. <div className="clearfix">
  460. <FormItem className="half-item" {...formItemLayout} label="籍贯">
  461. <Cascader
  462. options={this.state.Birthplaces}
  463. value={this.state.nativePlace}
  464. placeholder="选择籍贯"
  465. style={{ width: "200px" }}
  466. onChange={(e, pre) => {
  467. this.setState({ nativePlace: e });
  468. }}
  469. />
  470. </FormItem>
  471. <FormItem
  472. className="half-item"
  473. {...formItemLayout}
  474. label="身份证"
  475. >
  476. <Input
  477. placeholder="输入身份证信息"
  478. style={{ width: 200 }}
  479. value={this.state.idCard}
  480. onChange={(e) => {
  481. this.setState({
  482. idCard: e.target.value,
  483. });
  484. }}
  485. />
  486. </FormItem>
  487. </div>
  488. <div className="clearfix">
  489. <FormItem
  490. className="half-item"
  491. {...formItemLayout}
  492. label="身份证领证机关"
  493. >
  494. <Input
  495. placeholder="输入机关名称"
  496. style={{ width: 200 }}
  497. value={this.state.certificationAuthority}
  498. onChange={(e) => {
  499. // let reg = /^[1-9]\d{5}(18|19|20|(3\d))\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/;
  500. this.setState({
  501. certificationAuthority: e.target.value,
  502. });
  503. }}
  504. />
  505. {/* <span style={{ color: "red", marginLeft: "15px" }}>*</span> */}
  506. </FormItem>
  507. <FormItem
  508. className="half-item"
  509. {...formItemLayout}
  510. label="婚姻状态"
  511. >
  512. <Radio.Group
  513. onChange={(e) => {
  514. this.setState({ marriage: e.target.value });
  515. }}
  516. value={this.state.marriage}
  517. >
  518. <Radio value={0}>未婚</Radio>
  519. <Radio value={1}>已婚</Radio>
  520. <Radio value={2}>离异</Radio>
  521. </Radio.Group>
  522. </FormItem>
  523. </div>
  524. <div className="clearfix">
  525. <FormItem
  526. className="half-item"
  527. labelCol={{ span: 6 }}
  528. wrapperCol={{ span: 30 }}
  529. label="子女数量"
  530. >
  531. <span>儿子:</span>
  532. <Input
  533. placeholder="输入数量"
  534. style={{ width: 80 }}
  535. type={"number"}
  536. value={this.state.son}
  537. onChange={(e) => {
  538. this.setState({
  539. son: e.target.value,
  540. });
  541. }}
  542. />
  543. <span style={{ marginLeft: 10 }}>女儿:</span>
  544. <Input
  545. placeholder="输入数量"
  546. style={{ width: 80 }}
  547. type={"number"}
  548. value={this.state.girl}
  549. onChange={(e) => {
  550. this.setState({
  551. girl: e.target.value,
  552. });
  553. }}
  554. />
  555. </FormItem>
  556. <FormItem
  557. className="half-item"
  558. {...formItemLayout}
  559. label="政治面貌"
  560. >
  561. <Select
  562. placeholder="请选择政治面貌"
  563. style={{ width: 200 }}
  564. onChange={(e) => {
  565. this.setState({ politicalOutlook: e });
  566. }}
  567. value={this.state.politicalOutlook}
  568. >
  569. <Select.Option value={0}>群众</Select.Option>
  570. <Select.Option value={1}>中共预备党员</Select.Option>
  571. <Select.Option value={2}>中共党员</Select.Option>
  572. <Select.Option value={3}>致公党党员</Select.Option>
  573. </Select>
  574. </FormItem>
  575. </div>
  576. <Checkbox
  577. style={{
  578. paddingLeft: '34px',
  579. paddingTop: '10px',
  580. }}
  581. checked={this.state.establish}
  582. onChange={
  583. (e) => {
  584. this.setState({
  585. establish: e.target.checked
  586. });
  587. }}>
  588. 是否同步创建系统账户
  589. </Checkbox>
  590. {!this.state.establish ? <Button
  591. type="primary"
  592. shape="round"
  593. size="large"
  594. style={{
  595. position: "relative",
  596. left: "24%",
  597. top: '10px',
  598. transform: "translateX(-50%)",
  599. }}
  600. onClick={this.props.isAddPeo ? ()=>{this.inspect(this.addOk)} : ()=>{this.inspect(this.editOk)}}
  601. >
  602. 保存
  603. </Button> : null}
  604. {this.state.establish ? <div>
  605. <div>----------------------------------------------------------------------------------------------------------------------------------------------------------------</div>
  606. <UserProcessing
  607. userDetaile={this.props.aid}
  608. name={this.state.name}
  609. aid={this.props.aid}
  610. inspect={(v)=>{this.inspect(v)}}
  611. onPreservation={(aid)=>{
  612. if(this.props.isAddPeo){
  613. this.addOk(aid);
  614. }else{
  615. this.editOk(aid);
  616. }
  617. }}
  618. />
  619. </div> : null}
  620. </Spin>
  621. </Modal>
  622. )
  623. }
  624. }
  625. export default UserProfile;