Merge remote-tracking branch 'origin/build' into build

This commit is contained in:
wanglei
2024-06-26 09:24:21 +08:00

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 })
} }
}) })
} }