BUG 30342

This commit is contained in:
aixianling
2022-06-27 16:40:27 +08:00
parent 8a5c639806
commit 7e7eef95ea
6 changed files with 12 additions and 12 deletions

View File

@@ -165,14 +165,14 @@ export default {
},
getDetail() {
let {id} = this.$route.query
id && this.$http.post(`app/appcommunityhouseinfo/queryDetailById?id=${id}`).then(res => {
id && this.$http.post(`/app/appcommunityhouseinfo/queryDetailById?id=${id}`).then(res => {
if (res?.data) {
this.houseInfo = res.data
}
})
},
submit() {
this.$http.post(`app/appcommunityhouseinfo/update`, this.houseInfo).then(res => {
this.$http.post(`/app/appcommunityhouseinfo/update`, this.houseInfo).then(res => {
if (res?.code == 0) {
this.$u.toast('提交成功')
setTimeout(() => {