| | |
| | | <el-card style="height: 100%"> |
| | | <template slot="header"> |
| | | <el-form :inline="true" :model="queryInfo" class="demo-form-inline"> |
| | | <el-form-item label="用户名:"> |
| | | <el-input placeholder="请输入" v-model="queryInfo.nickName"></el-input> |
| | | <el-form-item label="手机号:"> |
| | | <el-input placeholder="请输入" v-model="queryInfo.userMobile"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="用户姓名:"> |
| | | <el-input placeholder="请输入" v-model="queryInfo.realName"></el-input> |
| | |
| | | total: null, |
| | | //查询条件 |
| | | queryInfo: { |
| | | nickName: '', |
| | | userMobile: '', |
| | | realName: '', |
| | | current: 1, |
| | | size: 10 |
| | | }, |
| | |
| | | let param = {} |
| | | param.current = this.queryInfo.current |
| | | param.realName = this.queryInfo.realName |
| | | param.nickName = this.queryInfo.nickName |
| | | param.userMobile = this.queryInfo.userMobile |
| | | param.size = this.queryInfo.size |
| | | getPublicityList(param).then(res => { |
| | | this.publicityList = res.records; |