diff --git a/project/oms/apps/statistics/AppCorpStatistics/coDetail.vue b/project/oms/apps/statistics/AppCorpStatistics/coDetail.vue index 10d39061..26ae527b 100644 --- a/project/oms/apps/statistics/AppCorpStatistics/coDetail.vue +++ b/project/oms/apps/statistics/AppCorpStatistics/coDetail.vue @@ -34,13 +34,13 @@ export default { }).then(res => { if (res?.data) { this.detail = res.data.records?.[0] || {} - } - }) - this.instance.post("/api/apiForward", null, { - params: {url: `${aiBase}/app/appmasssendingtaskbaidu/ailist?size=15`} - }).then(res => { - if (res?.data) { - this.tableData = res.data + return this.instance.post("/api/apiForward", null, { + params: {url: `${aiBase}/app/appmasssendingtaskbaidu/ailist?size=15&areaId=${this.detail.areaId}`} + }).then(ret => { + if (ret?.data) { + this.tableData = ret.data + } + }) } }) }