增加areaId

This commit is contained in:
aixianling
2024-06-26 09:03:00 +08:00
parent 463e545c19
commit be8698382a

View File

@@ -34,13 +34,13 @@ export default {
}).then(res => { }).then(res => {
if (res?.data) { if (res?.data) {
this.detail = res.data.records?.[0] || {} this.detail = res.data.records?.[0] || {}
} return this.instance.post("/api/apiForward", null, {
}) params: {url: `${aiBase}/app/appmasssendingtaskbaidu/ailist?size=15&areaId=${this.detail.areaId}`}
this.instance.post("/api/apiForward", null, { }).then(ret => {
params: {url: `${aiBase}/app/appmasssendingtaskbaidu/ailist?size=15`} if (ret?.data) {
}).then(res => { this.tableData = ret.data
if (res?.data) { }
this.tableData = res.data })
} }
}) })
} }