refactor(xumu): 修改 AppOutAudit 详情获取接口

- 将 getAuditInfo 接口更改为 getAuditPage 接口
- 更新接口 URL 以适应后端接口变更
This commit is contained in:
aixianling
2025-01-21 09:20:06 +08:00
parent ba8dc41c83
commit 8daf15cf3f

View File

@@ -41,7 +41,7 @@ export default {
},
getDetail() {
const {id} = this.$route.query
return id && this.instance.post("/api/breed/out/getAuditInfo", null, {params: {id}}).then(res => {
return id && this.instance.post("/api/breed/out/getAuditPage", null, {params: {id}}).then(res => {
if (res?.data) {
const detail = res.data
return this.detail = {...detail}