zhuanjiaoDetail.jsx 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. import React from "react";
  2. import { Spin, Button, Tabs, Table, message, Modal } from "antd";
  3. import $ from "jquery/src/ajax";
  4. const ZhuanjiaoDetail = React.createClass({
  5. getInitialState() {
  6. return {
  7. loading: false,
  8. colunmn: [
  9. {
  10. title: "序号",
  11. dataIndex: "id",
  12. key: "id",
  13. },
  14. {
  15. title: "客户姓名",
  16. dataIndex: "userName",
  17. key: "userName",
  18. },
  19. {
  20. title: "管理员",
  21. dataIndex: "usedAName",
  22. key: "usedAName",
  23. },
  24. {
  25. title: "现管理员",
  26. dataIndex: "newAName",
  27. key: "newAName",
  28. },
  29. // 0录入 1 领取 2 转交私有客户 3转交业务 4 未跟进丢失(30) 5未签单丢失(270天)6释放 7转交签单客户
  30. {
  31. title: "转交类型",
  32. dataIndex: "type",
  33. key: "type",
  34. render: text => {
  35. return (
  36. <span>
  37. {
  38. text === 0 ? "录入":
  39. text === 1 ? "领取":
  40. text === 2 ? "转交私有客户":
  41. text === 3 ? "转交业务":
  42. text === 4 ? "未跟进丢失(30天)":
  43. text === 5 ? "未签单丢失(270天)" :
  44. text === 6 ? "移除" :
  45. text === 7 ? "转交签单客户" :""
  46. }
  47. </span>
  48. )
  49. }
  50. },
  51. {
  52. title: "项目名称",
  53. dataIndex: "pName",
  54. key: "pName",
  55. },
  56. {
  57. title: "创建时间",
  58. dataIndex: "createDate",
  59. key: "createDate",
  60. },
  61. ]
  62. };
  63. },
  64. loadData() {
  65. this.setState({
  66. loading: true
  67. });
  68. $.ajax({
  69. method: "get",
  70. dataType: "json",
  71. crossDomain: false,
  72. url: globalConfig.context + "/api/admin/customer/transferList",
  73. data: {
  74. uid: this.props.id,
  75. },
  76. success: function (data) {
  77. if (data.error.length || data.data.list == "") {
  78. if (data.error && data.error.length) {
  79. message.warning(data.error[0].message);
  80. }
  81. } else {
  82. this.setState({
  83. dataSource: data.data,
  84. });
  85. }
  86. }.bind(this),
  87. }).always(
  88. function () {
  89. this.setState({
  90. loading: false,
  91. });
  92. }.bind(this)
  93. );
  94. },
  95. componentWillMount() {
  96. this.loadData()
  97. },
  98. render() {
  99. return (
  100. <Modal
  101. style={{ position: "relative" }}
  102. title="转交记录"
  103. visible={this.props.visible}
  104. onCancel={this.props.cancel}
  105. footer={null}
  106. width={800}
  107. destroyOnClose={true}
  108. >
  109. <Spin spinning={this.state.loading} >
  110. <Table
  111. columns={this.state.colunmn}
  112. dataSource={this.state.dataSource}
  113. pagination={false}
  114. scroll={{ x: "max-content", y: 0 }}
  115. bordered
  116. size="small"
  117. />
  118. </Spin>
  119. </Modal>
  120. );
  121. },
  122. });
  123. export default ZhuanjiaoDetail;