|
@@ -133,14 +133,19 @@ export default {
|
|
|
methods: {
|
|
|
async getList() {
|
|
|
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({
|
|
|
page: 1,
|
|
|
rows: 10,
|
|
|
...this.searchList,
|
|
|
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.rules.total = res.data.total;
|
|
|
// console.log(this.tableList)
|