Commit 0e6dfc5f by liangjianmin

fix(api): 修正费用申请接口及调用地址

- 将费用申请接口从 addFeeApprove 修改为 addFeeApply
- 更新请求接口地址,确保调用正确的费用申请 API
- 修正页面调用处的接口名称,避免调用错误的审批接口
- 保持环境配置及其他 API 接口不变,确保稳定性
parent 224a5cb9
Showing with 2 additions and 2 deletions
...@@ -183,7 +183,7 @@ ...@@ -183,7 +183,7 @@
return; return;
} }
this.request(API.addFeeApprove, 'POST', this.form, true).then(res => { this.request(API.addFeeApply, 'POST', this.form, true).then(res => {
if (res.code === 0) { if (res.code === 0) {
uni.showToast({ uni.showToast({
title: '提交成功', title: '提交成功',
......
...@@ -50,7 +50,7 @@ const API = { ...@@ -50,7 +50,7 @@ const API = {
/** /**
* 新增费用减免申请 * 新增费用减免申请
*/ */
addFeeApprove: API_BASE + '/api/approve/addFeeApprove', addFeeApply: API_BASE + '/api/order/addFeeApply',
/** /**
* 根据订单号获取客户名称 * 根据订单号获取客户名称
*/ */
......
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