修正接口请求
This commit is contained in:
@@ -115,7 +115,7 @@ export default {
|
||||
methods: {
|
||||
getDetail() {
|
||||
let {id} = this.$route.query
|
||||
this.instance.post("/appfinancingdemand/queryDetailById", null, {
|
||||
this.instance.post("/app/appfinancingdemand/queryDetailById", null, {
|
||||
params: {id}
|
||||
}).then(res => {
|
||||
if (res?.data) {
|
||||
@@ -125,7 +125,7 @@ export default {
|
||||
},
|
||||
handleCancel() {
|
||||
this.$confirm("是否要回退本次融资需求订单?").then(() => {
|
||||
this.instance.post("/appfinancingdemand/cancelObtain", null, {
|
||||
this.instance.post("/app/appfinancingdemand/cancelObtain", null, {
|
||||
params: {id: this.detail.id}
|
||||
}).then(res => {
|
||||
if (res?.code == 0) {
|
||||
@@ -139,7 +139,7 @@ export default {
|
||||
this.$refs.AuditForm.validate(v => {
|
||||
if (v) {
|
||||
let {id} = this.detail
|
||||
this.instance.post("/appfinancingdemand/confirmLoan", null, {
|
||||
this.instance.post("/app/appfinancingdemand/confirmLoan", null, {
|
||||
params: {id, ...this.form}
|
||||
}).then(res => {
|
||||
if (res?.code == 0) {
|
||||
|
||||
Reference in New Issue
Block a user