diff --git a/src/AppConfig.js b/src/AppConfig.js index 3299fdb06..d94d50e63 100644 --- a/src/AppConfig.js +++ b/src/AppConfig.js @@ -100,7 +100,7 @@ export function initAxiosInterceptors(props) { // TODO 读取到package.json中的配置? var proxy = "http://localhost:3000" // proxy = "https://pre-newweb.educoder.net" - // proxy = "https://testforgeplus.trustie.net/" + proxy = "https://testforgeplus.trustie.net/" // 在这里使用requestMap控制,避免用户通过双击等操作发出重复的请求; // 如果需要支持重复的请求,考虑config里面自定义一个allowRepeat参考来控制 diff --git a/src/forge/Order/order_form.js b/src/forge/Order/order_form.js index bef078d96..836103643 100644 --- a/src/forge/Order/order_form.js +++ b/src/forge/Order/order_form.js @@ -299,6 +299,7 @@ class order_form extends Component { }); this.setState({ done_ratio: "0", + issue_current_user: true, }); } else if (e === "3") { this.props.form.setFieldsValue({ @@ -306,6 +307,11 @@ class order_form extends Component { }); this.setState({ done_ratio: "100", + issue_current_user: true, + }); + }else if (e === "5") { + this.setState({ + issue_current_user: false, }); } };