|  | @@ -133,14 +133,19 @@ export default {
 | 
											
												
													
														|  |    methods: {
 |  |    methods: {
 | 
											
												
													
														|  |      async getList() {
 |  |      async getList() {
 | 
											
												
													
														|  |        try {
 |  |        try {
 | 
											
												
													
														|  | -        // const arr = [36,39,41,42,43,44,45,46,47,48,49,50,52,54,55,56]
 |  | 
 | 
											
												
													
														|  | 
 |  | +        const arr = [36,39,41,42,43,44,45,46,47,48,49,50,52,54,55,56]
 | 
											
												
													
														|  |          const res = await getOrganMemberList({
 |  |          const res = await getOrganMemberList({
 | 
											
												
													
														|  |            page: 1,
 |  |            page: 1,
 | 
											
												
													
														|  |            rows: 10,
 |  |            rows: 10,
 | 
											
												
													
														|  |            ...this.searchList,
 |  |            ...this.searchList,
 | 
											
												
													
														|  |            organIds: this.organId,
 |  |            organIds: this.organId,
 | 
											
												
													
														|  |          });
 |  |          });
 | 
											
												
													
														|  | -        this.tableList = res.data;
 |  | 
 | 
											
												
													
														|  | 
 |  | +        this.tableList  = []
 | 
											
												
													
														|  | 
 |  | +       res.data.forEach(ele => {
 | 
											
												
													
														|  | 
 |  | +         if(arr.indexOf (ele.organId) == -1){
 | 
											
												
													
														|  | 
 |  | +           this.tableList.push(ele)
 | 
											
												
													
														|  | 
 |  | +         }
 | 
											
												
													
														|  | 
 |  | +       });
 | 
											
												
													
														|  |          // this.tableList = res.data.rows;
 |  |          // this.tableList = res.data.rows;
 | 
											
												
													
														|  |          // this.rules.total = res.data.total;
 |  |          // this.rules.total = res.data.total;
 | 
											
												
													
														|  |          // console.log(this.tableList)
 |  |          // console.log(this.tableList)
 |