| | |
| | | 联系电话: |
| | | <input type="text" v-model="peopleCallPhone" placeholder="请输入联系电话" /> |
| | | </div> |
| | | <div> |
| | | 身份证号: |
| | | <input type="text" v-model="peopleCardID" placeholder="请输入身份证号" /> |
| | | </div> |
| | | <el-button type="primary" icon="el-icon-search" @click="searchPeopleDetail">搜索</el-button> |
| | | <el-button type="primary" icon="el-icon-delete" @click="clearPeopleDetailSearchValue">清空</el-button> |
| | | </div> |
| | |
| | | |
| | | peoplePoliceName: '', |
| | | peopleCallPhone: '', |
| | | peopleCardID: '', |
| | | peopleInfoList: [], |
| | | peoplePage: { |
| | | total: 0, |
| | |
| | | personInfoClose () { |
| | | this.peoplePoliceName = '' |
| | | this.peopleCallPhone = '' |
| | | this.peopleCardID = '' |
| | | this.peoplePage.currentPage = 1 |
| | | |
| | | this.peopleInfoList = [] |
| | |
| | | clearPeopleDetailSearchValue () { |
| | | this.peoplePoliceName = '' |
| | | this.peopleCallPhone = '' |
| | | this.peopleCardID = '' |
| | | this.peoplePage.currentPage = 1 |
| | | this.peopleInfoList = [] |
| | | this.getPersonInfoPage(1) |
| | |
| | | areaId: this.peopleSearchQuery.id, |
| | | realName: this.peoplePoliceName, |
| | | phone: this.peopleCallPhone, |
| | | cardNo: this.peopleCardID, |
| | | current: this.peoplePage.currentPage, |
| | | size: this.peoplePage.pageSize |
| | | }).then(res => { |