|  |  |  | 
|---|
|  |  |  | renderSelecter() { | 
|---|
|  |  |  | this.pageData.PageSize = 100; | 
|---|
|  |  |  | this.myValue = this.value; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | this.getdataList(); | 
|---|
|  |  |  | }, | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | }; //搜索条件 | 
|---|
|  |  |  |  | 
|---|
|  |  |  | let userType = { userType: "1" }; | 
|---|
|  |  |  | if (this.orgType == 4) { | 
|---|
|  |  |  | let arr = this.$store.state.user.organization; | 
|---|
|  |  |  | this.dataList.push(...arr); | 
|---|
|  |  |  | if (this.isAll) { | 
|---|
|  |  |  | let all = { | 
|---|
|  |  |  | organizationid: "", | 
|---|
|  |  |  | organizationname: "全部" | 
|---|
|  |  |  | }; | 
|---|
|  |  |  | this.dataList.unshift(all); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | this.tempList = this.dataList.map(item => item); | 
|---|
|  |  |  | this.focusEvents.loaded = true; | 
|---|
|  |  |  | this.isLoading = false; | 
|---|
|  |  |  | return; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | listOrganization(searchData) | 
|---|
|  |  |  | .then(response => { | 
|---|