agreeButton.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. import React, { Component } from "react";
  2. import { Modal, Button, Input, Form, message } from "antd";
  3. import $ from "jquery/src/ajax";
  4. import { moneyVerify } from "@/tools.js";
  5. class ReasonInput extends Component {
  6. constructor(props) {
  7. super(props);
  8. this.state = {
  9. visible: false,
  10. reason: this.props.reason,
  11. flag: false,
  12. flagS: false,
  13. };
  14. this.reset = this.reset.bind(this);
  15. this.judge = this.judge.bind(this);
  16. this.onOk = this.onOk.bind(this);
  17. this.sendRequest = this.sendRequest.bind(this);
  18. this.inputAjax = this.inputAjax.bind(this);
  19. }
  20. // componentWillMount() {
  21. // let reason = this.props.reason
  22. // this.setState({
  23. // reason
  24. // })
  25. // // const data = this.props.data;
  26. // // const backData = this.props.backData;
  27. // // const ajaxData = this.props.ajaxData;
  28. // // Object.assign(backData, ajaxData);
  29. // // // this.sendRequest()
  30. // // this.onOk(data,backData)
  31. // // console.log("222222",this.props);
  32. // }
  33. // 理由请求
  34. sendRequest(data, backData) {
  35. if(this.state.flagS) return
  36. this.setState({
  37. flagS: true,
  38. loading: true,
  39. });
  40. $.ajax({
  41. method: "post",
  42. dataType: "json",
  43. crossDomain: false,
  44. url: globalConfig.context + "/api/admin/orderChange/orderChangeAudit",
  45. data: {
  46. changeId: backData.id,
  47. remarks: this.props.reason,
  48. status: data.status,
  49. processState: this.props.processState,
  50. // 驳回位置
  51. rejectState: this.props.rejectState
  52. },
  53. success: function(data) {
  54. if (data.error.length || data.data.list == "") {
  55. if (data.error && data.error.length) {
  56. message.warning(data.error[0].message);
  57. // if (!this.state.flag) return;
  58. this.setState({
  59. flagS: !this.state.flagS,
  60. });
  61. return
  62. }
  63. } else {
  64. message.success("操作成功!");
  65. this.props.visible();
  66. // this.changeModal();
  67. this.props.onCancel();
  68. // window.location.reload()
  69. this.setState({
  70. flagS: !this.state.flagS
  71. })
  72. }
  73. }.bind(this)
  74. }).done(
  75. function() {
  76. // if (this.props.loadData) {
  77. // this.props.loadData("2");
  78. // }
  79. this.setState({
  80. loading: false,
  81. })
  82. }.bind(this)
  83. );
  84. }
  85. // 输入框请求
  86. inputAjax(_data, backData) {
  87. if (this.state.flag) return;
  88. this.setState({
  89. flag: true,
  90. loading: true,
  91. })
  92. $.ajax({
  93. method: "post",
  94. dataType: "json",
  95. crossDomain: false,
  96. url: globalConfig.context + "/api/admin/orderChange/updateOrderChange",
  97. data: backData,
  98. success: function(data) {
  99. if (data.error.length || data.data.list == "") {
  100. if (data.error && data.error.length) {
  101. message.warning(data.error[0].message);
  102. // if (!this.state.flag) return;
  103. this.setState({
  104. flag: !this.state.flag
  105. });
  106. return
  107. }
  108. } else {
  109. this.setState({
  110. flag: !this.state.flag
  111. });
  112. }
  113. }.bind(this)
  114. }).done(
  115. function() {
  116. this.sendRequest(this.props.data, backData);
  117. this.setState({
  118. loading: false,
  119. })
  120. }.bind(this)
  121. );
  122. }
  123. reset() {
  124. this.setState({
  125. reason: this.props.reason
  126. });
  127. }
  128. changeModal() {
  129. this.setState(
  130. {
  131. visible: !this.state.visible
  132. },
  133. () => {
  134. this.reset();
  135. }
  136. );
  137. const data = this.props.data;
  138. const backData = this.props.backData;
  139. backData.consultantExamine = []
  140. backData.managerExamine = []
  141. const ajaxData = this.props.ajaxData;
  142. if(ajaxData.ContactsLists) {
  143. ajaxData.ContactsLists = [];
  144. ajaxData.contactList = [];
  145. }
  146. Object.assign(backData, ajaxData);
  147. // this.sendRequest()
  148. this.onOk(data,backData)
  149. // this.setState({reason: this.props.reason})
  150. // console.log(this.props,this.state)
  151. }
  152. judge() {
  153. if (!this.props.reason) {
  154. message.error("理由不能为空!");
  155. return false;
  156. }
  157. }
  158. onOk(data, backData) {
  159. console.log(this.props);
  160. if (!this.props.reason) {
  161. message.error("理由不能为空!");
  162. return false;
  163. }
  164. if( this.props.data.status == 2 && this.props.processState == 5) {
  165. if (
  166. moneyVerify(this.props.ajaxData.cwCost) ||
  167. moneyVerify(this.props.ajaxData.refundableAmount)
  168. ) {
  169. return;
  170. }
  171. }
  172. if (
  173. this.props.processState <= 1 ||
  174. this.props.processState == 4 ||
  175. this.props.processState >= 6
  176. ) {
  177. // 判断权限是否大于营销管理员
  178. this.sendRequest(data, backData);
  179. } else {
  180. this.inputAjax(data, backData);
  181. }
  182. // data.onChange(this.state.reason);
  183. }
  184. render() {
  185. const { visible } = this.state;
  186. const data = this.props.data;
  187. const backData = this.props.backData;
  188. const ajaxData = this.props.ajaxData;
  189. Object.assign(backData, ajaxData);
  190. return (
  191. <div style={{ display: "inline-block" }}>
  192. <Button
  193. type={data.type}
  194. loading={this.state.loading}
  195. onClick={() => {
  196. this.changeModal();
  197. }}
  198. >
  199. {data.name}
  200. </Button>
  201. <Modal
  202. maskClosable={false}
  203. title={data.title}
  204. visible={false}
  205. onCancel={() => {
  206. this.changeModal();
  207. }}
  208. // onOk={_e => {
  209. // this.onOk(data, backData);
  210. // }}
  211. >
  212. <Form.Item>
  213. <Input.TextArea
  214. rows={4}
  215. placeholder={data.placeholder}
  216. value={this.state.reason}
  217. onChange={e => {
  218. // console.log(this.props);
  219. this.setState({
  220. reason: e.target.value
  221. });
  222. }}
  223. />
  224. </Form.Item>
  225. </Modal>
  226. </div>
  227. );
  228. }
  229. }
  230. const AgreeButton = Form.create()(ReasonInput);
  231. export default AgreeButton;