| | |
| | | icon="el-icon-search" |
| | | size="mini" |
| | | @click="handleQuery" |
| | | style="margin: 0 15px;" |
| | | >查询</el-button |
| | | > |
| | | <el-button icon="el-icon-refresh" size="mini" @click="resetQuery" |
| | |
| | | </el-form-item> |
| | | </el-form> |
| | | |
| | | <el-row :gutter="10" class="mb8"> |
| | | <el-row :gutter="10" class="mb8" style="margin-left: 8px;"> |
| | | <el-col :span="1.5"> |
| | | <el-button type="primary" size="mini" @click="tongji" |
| | | >统计病种</el-button |
| | |
| | | }, |
| | | // 团检病种页面查询人员列表 |
| | | getList() { |
| | | this.queryParams.beginTime = this.createTimeList[0]; |
| | | if(this.createTimeList){ |
| | | this.queryParams.beginTime = this.createTimeList[0]; |
| | | this.queryParams.endTime = this.createTimeList[1]; |
| | | }else if(this.createTimeList == null){ |
| | | this.queryParams.beginTime = null; |
| | | this.queryParams.endTime = null; |
| | | } |
| | | |
| | | getPeopleList(this.queryParams).then((res) => { |
| | | this.tableData = res.data.voList; |
| | | this.total = res.data.total; |