This commit is contained in:
yanran200730
2022-11-30 13:48:26 +08:00
parent 7f4607c3ba
commit b4ae677932
2 changed files with 14 additions and 7 deletions

View File

@@ -105,6 +105,11 @@
label: '可见范围', label: '可见范围',
formart: v => v === '0' ? '不限' : '指定网格' formart: v => v === '0' ? '不限' : '指定网格'
}, },
{
prop: 'arriveTime',
align: 'center',
label: '上架时间'
},
{ {
prop: 'status', prop: 'status',
align: 'center', align: 'center',

View File

@@ -103,13 +103,15 @@
this.getList() this.getList()
} }
}) })
}).catch(() => { }).catch(action => {
if (action === 'cancel') {
this.instance.post(`/app/appintegralmemberapply/auditApply?id=${id}&opType=2`).then(res => { this.instance.post(`/app/appintegralmemberapply/auditApply?id=${id}&opType=2`).then(res => {
if (res.code == 0) { if (res.code == 0) {
this.$message.success('审核拒绝成功') this.$message.success('审核拒绝成功')
this.getList() this.getList()
} }
}) })
}
}) })
} }
} }