|  | @@ -251,7 +251,7 @@ $(document).ready(() => {
 | 
	
		
			
				|  |  |              const newVal = $('#gr-search').val()
 | 
	
		
			
				|  |  |              let html = ''
 | 
	
		
			
				|  |  |              if (newVal && newVal === oldSearchVal) {
 | 
	
		
			
				|  |  | -                accountList.filter(item => item && cur_uid !== item.id && (item.name.indexOf(newVal) !== -1 || (item.mobile && item.mobile.indexOf(newVal) !== -1))).forEach(item => {
 | 
	
		
			
				|  |  | +                accountList.filter(item => item && changesUid !== item.id && (item.name.indexOf(newVal) !== -1 || (item.mobile && item.mobile.indexOf(newVal) !== -1))).forEach(item => {
 | 
	
		
			
				|  |  |                      html += `<dd class="border-bottom p-2 mb-0 " data-id="${item.id}" >
 | 
	
		
			
				|  |  |                          <p class="mb-0 d-flex"><span class="text-primary">${item.name}</span><span
 | 
	
		
			
				|  |  |                                  class="ml-auto">${item.mobile || ''}</span></p>
 | 
	
	
		
			
				|  | @@ -268,7 +268,7 @@ $(document).ready(() => {
 | 
	
		
			
				|  |  |                          </a> ${group.groupName}</dt>
 | 
	
		
			
				|  |  |                          <div class="dd-content" data-toggleid="${idx}">`
 | 
	
		
			
				|  |  |                          group.groupList.forEach(item => {
 | 
	
		
			
				|  |  | -                            if (item.id !== cur_uid) {
 | 
	
		
			
				|  |  | +                            if (item.id !== changesUid) {
 | 
	
		
			
				|  |  |                                  html += `<dd class="border-bottom p-2 mb-0 " data-id="${item.id}" >
 | 
	
		
			
				|  |  |                                      <p class="mb-0 d-flex"><span class="text-primary">${item.name}</span><span
 | 
	
		
			
				|  |  |                                              class="ml-auto">${item.mobile || ''}</span></p>
 |