mirror of https://github.com/halo-dev/halo-admin
feat: support update comment status in batch.
parent
115379bcb9
commit
27862d46c5
|
@ -38,6 +38,17 @@ commentApi.updateStatus = (target, commentId, status) => {
|
|||
})
|
||||
}
|
||||
|
||||
commentApi.updateStatusInBatch = (target, ids, status) => {
|
||||
return service({
|
||||
url: `${baseUrl}/${target}/comments/status`,
|
||||
data: {
|
||||
ids: ids,
|
||||
status: status
|
||||
},
|
||||
method: 'put'
|
||||
})
|
||||
}
|
||||
|
||||
commentApi.delete = (target, commentId) => {
|
||||
return service({
|
||||
url: `${baseUrl}/${target}/comments/${commentId}`,
|
||||
|
@ -110,16 +121,19 @@ commentApi.createComment = (comment, type) => {
|
|||
|
||||
commentApi.commentStatus = {
|
||||
PUBLISHED: {
|
||||
value: 'PUBLISHED',
|
||||
color: 'green',
|
||||
status: 'success',
|
||||
text: '已发布'
|
||||
},
|
||||
AUDITING: {
|
||||
value: 'AUDITING',
|
||||
color: 'yellow',
|
||||
status: 'warning',
|
||||
text: '待审核'
|
||||
},
|
||||
RECYCLE: {
|
||||
value: 'RECYCLE',
|
||||
color: 'red',
|
||||
status: 'error',
|
||||
text: '回收站'
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
>
|
||||
<a
|
||||
href="javascript:void(0);"
|
||||
@click="handlePublishMore"
|
||||
@click="handleEditStatusMore(commentStatus.PUBLISHED.value)"
|
||||
>
|
||||
通过
|
||||
</a>
|
||||
|
@ -76,7 +76,7 @@
|
|||
>
|
||||
<a
|
||||
href="javascript:void(0);"
|
||||
@click="handleRecycleMore"
|
||||
@click="handleEditStatusMore(commentStatus.RECYCLE.value)"
|
||||
>
|
||||
移到回收站
|
||||
</a>
|
||||
|
@ -632,33 +632,16 @@ export default {
|
|||
this.handleClearRowKeys()
|
||||
this.handlePaginationChange(1, this.pagination.size)
|
||||
},
|
||||
handlePublishMore() {
|
||||
handleEditStatusMore(status) {
|
||||
if (this.selectedRowKeys.length <= 0) {
|
||||
this.$message.success('请至少选择一项!')
|
||||
return
|
||||
}
|
||||
for (let index = 0; index < this.selectedRowKeys.length; index++) {
|
||||
const element = this.selectedRowKeys[index]
|
||||
commentApi.updateStatus(this.type, element, 'PUBLISHED').then(response => {
|
||||
this.$log.debug(`commentId: ${element}, status: PUBLISHED`)
|
||||
this.selectedRowKeys = []
|
||||
this.loadComments()
|
||||
})
|
||||
}
|
||||
},
|
||||
handleRecycleMore() {
|
||||
if (this.selectedRowKeys.length <= 0) {
|
||||
this.$message.success('请至少选择一项!')
|
||||
return
|
||||
}
|
||||
for (let index = 0; index < this.selectedRowKeys.length; index++) {
|
||||
const element = this.selectedRowKeys[index]
|
||||
commentApi.updateStatus(this.type, element, 'RECYCLE').then(response => {
|
||||
this.$log.debug(`commentId: ${element}, status: RECYCLE`)
|
||||
this.selectedRowKeys = []
|
||||
this.loadComments()
|
||||
})
|
||||
}
|
||||
commentApi.updateStatusInBatch(this.type, this.selectedRowKeys, status).then(response => {
|
||||
this.$log.debug(`commentIds: ${this.selectedRowKeys}, status: ${status}`)
|
||||
this.selectedRowKeys = []
|
||||
this.loadComments()
|
||||
})
|
||||
},
|
||||
handleDeleteMore() {
|
||||
if (this.selectedRowKeys.length <= 0) {
|
||||
|
|
Loading…
Reference in New Issue