Commit b7c70e62 by liangjianmin

fix(apply): update API request to include a new parameter for customer name retrieval

- Modify the API request in the apply page to include an additional parameter for improved data handling
- Ensure the request now passes a boolean flag to enhance the API call functionality
parent 38342fb6
Showing with 1 additions and 1 deletions
......@@ -115,7 +115,7 @@
return;
}
this.request(API.getCustomerName, 'GET', { order_sn: orderSn }).then(res => {
this.request(API.getCustomerName, 'GET', { order_sn: orderSn },true).then(res => {
if (res.code === 0) {
this.form.customer_name = res.data;
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment