| | |
| | | <el-form-item label="用户Id:"> |
| | | <el-input v-model="queryParam.userId"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="用户名:"> |
| | | <el-input v-model="queryParam.userName"></el-input> |
| | | <el-form-item label="真实姓名:"> |
| | | <el-input v-model="queryParam.realName"></el-input> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" @click="submitForm">查询</el-button> |
| | |
| | | userId: null, |
| | | userName: null, |
| | | pageIndex: 1, |
| | | pageSize: 10 |
| | | pageSize: 10, |
| | | realName: null |
| | | }, |
| | | listLoading: true, |
| | | tableData: [], |
| | |
| | | search () { |
| | | this.listLoading = true |
| | | userApi.getUserEventPageList(this.queryParam).then(data => { |
| | | const re = data.response |
| | | const re = data.data |
| | | this.tableData = re.list |
| | | this.total = re.total |
| | | this.queryParam.pageIndex = re.pageNum |