| | |
| | | atClick: (row) => { |
| | | this.currentValue.push({ |
| | | id: row.id, |
| | | userId: row.userId, |
| | | loginName: row.loginName, |
| | | tel: row.tel, |
| | | }) |
| | |
| | | if (!this.currentValue.some(currentItem => currentItem.id === item.id)) { |
| | | this.currentValue.push({ |
| | | id: item.id, |
| | | userId: item.userId, |
| | | loginName: item.loginName, |
| | | tel: item.tel, |
| | | }) |
| | |
| | | } |
| | | }, |
| | | outputFormat: (val) => { |
| | | return val?.length ? val.map((i) => {return {userId:i.id,userPhone:i.tel} }) : [] |
| | | console.log(val) |
| | | return val?.length ? val.map((i) => {return {userId:i.userId,userPhone:i.tel} }) : [] |
| | | |
| | | }, |
| | | forceDisabled: true, |
| | | }, |