|
@@ -228,7 +228,7 @@ export default {
|
|
})
|
|
})
|
|
.then(() => {
|
|
.then(() => {
|
|
letterProcessCancel({
|
|
letterProcessCancel({
|
|
- ids: this.recordSelected.map(item => item.leLetterId)
|
|
|
|
|
|
+ ids: this.recordSelected.map(item => item.leLetterId).join(',')
|
|
})
|
|
})
|
|
.then(res => {
|
|
.then(res => {
|
|
this.$refs?.pageRef?.refreshList()
|
|
this.$refs?.pageRef?.refreshList()
|
|
@@ -262,7 +262,7 @@ export default {
|
|
})
|
|
})
|
|
.then(() => {
|
|
.then(() => {
|
|
letterProcessSend({
|
|
letterProcessSend({
|
|
- ids: this.recordSelected.map(item => item.leLetterId)
|
|
|
|
|
|
+ ids: this.recordSelected.map(item => item.leLetterId).join(',')
|
|
})
|
|
})
|
|
.then(res => {
|
|
.then(res => {
|
|
this.$refs?.pageRef?.refreshList()
|
|
this.$refs?.pageRef?.refreshList()
|
|
@@ -296,7 +296,7 @@ export default {
|
|
})
|
|
})
|
|
.then(() => {
|
|
.then(() => {
|
|
letterProcessReject({
|
|
letterProcessReject({
|
|
- ids: this.recordSelected.map(item => item.leLetterId)
|
|
|
|
|
|
+ ids: this.recordSelected.map(item => item.leLetterId).join(',')
|
|
})
|
|
})
|
|
.then(res => {
|
|
.then(res => {
|
|
this.$refs?.pageRef?.refreshList()
|
|
this.$refs?.pageRef?.refreshList()
|