BUG 28331

This commit is contained in:
aixianling
2022-03-17 17:58:58 +08:00
parent 6e1abeb311
commit abc8e3a9b7

View File

@@ -217,8 +217,11 @@ export default {
}, },
del(row) { del(row) {
this.$confirm('确定删除该数据?').then(() => { this.$confirm('确定删除该数据?').then(() => {
uni.showLoading() uni.showLoading({})
this.$http.post("/app/appapplicationinfo/delete", null, {params: {ids: row.id}}).then((res) => { let {id: ids, appId} = row
this.$http.post("/app/appapplicationinfo/delete", null, {
params: {ids, appId}
}).then((res) => {
if (res?.code == 0) { if (res?.code == 0) {
this.$u.toast('删除成功!') this.$u.toast('删除成功!')
this.getUserList() this.getUserList()