|
|
@@ -1774,9 +1774,14 @@ export default {
|
|
|
spinner: 'el-icon-loading',
|
|
|
background: 'rgba(0, 0, 0, 0.7)'
|
|
|
});
|
|
|
+ const requestData = {
|
|
|
+ userIds: this.ids,
|
|
|
+ notes: this.notesOpen.notes,
|
|
|
+ type: this.notesOpen.type,
|
|
|
+ nameType: this.notesOpen.nameType
|
|
|
+ };
|
|
|
|
|
|
-
|
|
|
- batchUpdateExternalContactNotes({userIds:this.ids,notes:this.notesOpen.notes,type:this.notesOpen.type,nameType:this.notesOpen.nameType}).then(res => {
|
|
|
+ batchUpdateExternalContactNotes(requestData).then(res => {
|
|
|
|
|
|
this.resultMessage = res.msg;
|
|
|
this.resultDialogVisible = true; // 显示弹窗
|