BUG 30376

This commit is contained in:
aixianling
2022-06-28 11:40:06 +08:00
parent 29dac41f38
commit 511a98026e

View File

@@ -15,12 +15,15 @@
</div>
</div>
</div>
<div class="photo-item__bottom">
<div class="photo-item__bottom flex">
<div class="flex fill">
<i :class="'status-' + item.eventStatus"></i>
<span :class="'status-' + item.eventStatus">{{ item.statusName }}</span>
</div>
<div class="color-red" @click.stop="handleDelete(item.id)">删除</div>
</div>
<AiEmpty v-if="!list.length"></AiEmpty>
</div>
<AiEmpty v-if="!list.length"/>
</div>
<div class="btn-wrapper">
<div class="btn" @click="toReport" hover-class="text-hover">我要上报</div>
@@ -30,6 +33,7 @@
<script>
import {mapState} from 'vuex'
export default {
name: "AppPhotoReport",
appName: "随手拍",
@@ -107,6 +111,20 @@
}).catch(() => {
uni.hideLoading()
})
},
handleDelete(ids) {
this.$dialog.confirm({content: "是否要进行删除?"}).then(() => {
this.$instance.post("/app/appclapeventinfo/delete", null, {
params: {ids}
}).then(res => {
if (res?.code == 0) {
this.$u.toast("删除成功!")
this.current = 1
this.isMore = false
this.getList()
}
})
}).catch(() => 0)
}
},