修改审核问题

This commit is contained in:
duan
2025-01-02 16:40:38 +08:00
parent b48e435644
commit c6bd06a8b8
4 changed files with 20 additions and 11 deletions

View File

@@ -459,7 +459,16 @@
this.$Request.getT('/app/taskCenter/selectTaskCenter', {}).then(res => {
if (res.code == 0) {
this.list = res.data
if (!this.isShowMoneyPay) {
if (res.data[0].title == '分享奖励') {
res.data.shift()
this.list = res.data
} else {
this.list = res.data
}
} else {
this.list = res.data
}
}
uni.stopPullDownRefresh();
})