| | |
| | | |
| | | methods: { |
| | | selectTenantStatistic(){ |
| | | var that = this; |
| | | var that = this |
| | | selectTenantStatistic({ |
| | | keyword:this.keyword |
| | | }).then(res=>{ |
| | | that.zdryNum = res.data.data.count; |
| | | that.zdryNum = res.data.data.count |
| | | }) |
| | | }, |
| | | // 下拉值发生改变 |
| | | changeSelect () { |
| | | this.pages.current = 1 |
| | | this.pages.currentPage = 1 |
| | | this.initTableList() |
| | | }, |
| | | |
| | | // 点击搜索 |
| | | searchBtn () { |
| | | this.pages.current = 1 |
| | | this.pages.currentPage = 1 |
| | | this.initTableList() |
| | | }, |
| | | |
| | | // 重置搜索 |
| | | resetSearch () { |
| | | this.pages.current = 1 |
| | | this.pages.currentPage = 1 |
| | | this.keyword = '' |
| | | this.keyManFlag = '' |
| | | this.initTableList() |
| | |
| | | |
| | | // 分页处理 |
| | | handleCurrentChange (current) { |
| | | this.pages.current = current |
| | | this.pages.currentPage = current |
| | | this.initTableList() |
| | | }, |
| | | |