|
@@ -135,7 +135,7 @@ export default {
|
|
|
this.$message.warning('请勾选工单')
|
|
|
return
|
|
|
}
|
|
|
- appraiseApplyBatchUpdateEnd({ ids: this.recordSelected.map(item => item.id).join(',') }).then(res => {
|
|
|
+ appraiseApplyBatchUpdateEnd(this.recordSelected.map(item => item.id)).then(res => {
|
|
|
this.$message({ type: 'success', message: '成功!' })
|
|
|
this.$refs.pageRef.refreshList()
|
|
|
})
|
|
@@ -149,7 +149,7 @@ export default {
|
|
|
this.$message.warning('请勾选工单')
|
|
|
return
|
|
|
}
|
|
|
- appraiseApplyBatchUpdateReset({ ids: this.recordSelected.map(item => item.id).join(',') }).then(res => {
|
|
|
+ appraiseApplyBatchUpdateReset(this.recordSelected.map(item => item.id)).then(res => {
|
|
|
this.$message({ type: 'success', message: '成功!' })
|
|
|
this.$refs.pageRef.refreshList()
|
|
|
})
|