diff --git a/src/project/wuxi/AppPhotoReport/AppPhotoReport.vue b/src/project/wuxi/AppPhotoReport/AppPhotoReport.vue index d213131..bf53717 100644 --- a/src/project/wuxi/AppPhotoReport/AppPhotoReport.vue +++ b/src/project/wuxi/AppPhotoReport/AppPhotoReport.vue @@ -77,7 +77,7 @@ export default { return //当数据总量和列表总量一样时,不用再加载数据 } this.$loading() - this.$instance.post(`/app/appclapeventinfo/listByWxApplet`, null, { + this.$instance.post(`/app/appresidentreportinfo/list`, null, { params: { current: this.current, size: 15 } @@ -92,7 +92,7 @@ export default { }, handleDelete(ids) { this.$dialog.confirm({content: "是否要进行删除?"}).then(() => { - this.$instance.post("/app/appclapeventinfo/delete", null, { + this.$instance.post("/app/appresidentreportinfo/delete", null, { params: {ids} }).then(res => { if (res?.code == 0) { diff --git a/src/project/wuxi/AppPhotoReport/PhotoDetail.vue b/src/project/wuxi/AppPhotoReport/PhotoDetail.vue index 3dce1fa..71816e9 100644 --- a/src/project/wuxi/AppPhotoReport/PhotoDetail.vue +++ b/src/project/wuxi/AppPhotoReport/PhotoDetail.vue @@ -87,7 +87,7 @@ export default { methods: { getInfo(id = this.info.id) { this.$loading() - this.$instance.post(`/app/appclapeventinfo/queryDetailById?id=${id}`).then(res => { + this.$instance.post(`/app/appresidentreportinfo/queryDetailById?id=${id}`).then(res => { if (res?.data) { this.info = res.data if (res.data.eventStatus > 1) { diff --git a/src/project/wuxi/AppPhotoReport/PhotoForm.vue b/src/project/wuxi/AppPhotoReport/PhotoForm.vue index 456d60b..415fc8d 100644 --- a/src/project/wuxi/AppPhotoReport/PhotoForm.vue +++ b/src/project/wuxi/AppPhotoReport/PhotoForm.vue @@ -164,7 +164,7 @@ export default { }) }, getDict() { - this.$instance.post(`/app/appclapeventgroup/list?current=1&size=100000`).then(res => { + this.$instance.post(`/app/appresidentreportgroup/list?current=1&size=100000`).then(res => { if (res.code == 0) { this.dictList = res.data.records.map(v => { return { @@ -201,7 +201,7 @@ export default { this.flag = true this.$loading() - this.$instance.post(`/app/appclapeventinfo/addOrUpdate`, { + this.$instance.post(`/app/appresidentreportinfo/addByApplet`, { ...this.form, openid: this.user.openid, portrait: this.user.avatarUrl,