|
@@ -1,131 +1,136 @@
|
|
|
<template>
|
|
|
- <div class="zy-template">
|
|
|
- <div class="zy-module zy-template_search">
|
|
|
- <el-form ref="form" :model="condition" label-width="60px">
|
|
|
- <el-form-item label="用户名:" class="form-item">
|
|
|
- <el-input v-model="condition.username" size="small"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="昵称:" class="form-item">
|
|
|
- <el-input v-model="condition.nickname" size="small"></el-input>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="性别:" class="form-item">
|
|
|
- <el-select v-model="condition.gender" placeholder="请选择" size="small">
|
|
|
- <el-option value="1" label="男"/>
|
|
|
- <el-option value="2" label="女"/>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- <el-form-item class="form-item">
|
|
|
- <el-button type="primary" size="small" @click="submit">查询</el-button>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
+ <div class="zy-template">
|
|
|
+ <div class="zy-module zy-template_search">
|
|
|
+ <el-form ref="form" :model="condition" label-width="60px">
|
|
|
+ <el-form-item label="关键字:" class="form-item">
|
|
|
+ <el-input v-model="condition.key" size="small" placeholder="用户名/昵称"></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="性别:" class="form-item">
|
|
|
+ <el-select v-model="condition.gender" size="small" value="">
|
|
|
+ <el-option value="1" label="男"/>
|
|
|
+ <el-option value="2" label="女"/>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item class="form-item">
|
|
|
+ <el-button type="primary" size="small" @click="submit">查询</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ </div>
|
|
|
|
|
|
- <div class="zy-template_table">
|
|
|
- <el-table :data="page.records" max-height="800" stripe size="small" header-cell-class-name="header-cell"
|
|
|
- style="width: 100%;">
|
|
|
- <el-table-column prop="avatar" label="头像" width="80" min-width="5%">
|
|
|
- <template #default="scope">
|
|
|
- <img :src="scope.row.avatar" width="50" height="50" style="border-radius: 100px;" />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column prop="nickname" label="昵称" width="120" min-width="10%" />
|
|
|
- <el-table-column prop="gender" label="性别" width="80" min-width="5%" />
|
|
|
- <el-table-column prop="area" label="地区" width="250" min-width="20%" />
|
|
|
- <el-table-column prop="openId" label="open-id" width="250" min-width="10%" />
|
|
|
- <el-table-column prop="username" label="用户名" width="150" min-width="10%" />
|
|
|
- <el-table-column prop="phone" label="手机号" width="150" min-width="10%" />
|
|
|
- <el-table-column prop="createTime" label="注册时间" width="150" min-width="10%" />
|
|
|
- <el-table-column label="操作" min-width="10%" />
|
|
|
- </el-table>
|
|
|
- <el-pagination class="pagination" background layout="prev, pager, next" :current-page="page.current"
|
|
|
- :total="page.total" :page-size="page.size" @current-change="pagination" />
|
|
|
- </div>
|
|
|
+ <div class="zy-template_table">
|
|
|
+ <el-table :data="page.records" max-height="800" stripe size="small" header-cell-class-name="header-cell"
|
|
|
+ style="width: 100%;">
|
|
|
+ <el-table-column prop="avatar" label="头像" width="80" min-width="5%">
|
|
|
+ <template #default="scope">
|
|
|
+ <img :src="scope.row.avatar" width="50" height="50" style="border-radius: 100px;" alt="avatar"/>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="nickname" label="昵称" width="120" min-width="10%"/>
|
|
|
+ <el-table-column label="性别" width="80" min-width="5%">
|
|
|
+ <template #default="scope">
|
|
|
+ {{scope.row.gender===1?'男':'女'}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="地区" width="250" min-width="20%">
|
|
|
+ <template #default="scope">
|
|
|
+ {{scope.row.country}}{{scope.row.province}}{{scope.row.city}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="openId" label="微信open-id" width="250" min-width="10%"/>
|
|
|
+ <el-table-column prop="username" label="用户名" width="150" min-width="10%"/>
|
|
|
+ <el-table-column prop="phone" label="手机号" width="150" min-width="10%"/>
|
|
|
+ <el-table-column prop="createTime" label="注册时间" width="150" min-width="10%"/>
|
|
|
+ <el-table-column label="操作" min-width="10%"/>
|
|
|
+ </el-table>
|
|
|
+ <el-pagination class="pagination" background layout="prev, pager, next" :current-page="page.current"
|
|
|
+ :total="page.total" :page-size="page.size" @current-change="pagination"/>
|
|
|
+ </div>
|
|
|
|
|
|
- </div>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- export default {
|
|
|
- data() {
|
|
|
- return {
|
|
|
- condition: {
|
|
|
- username: '',
|
|
|
- nickname: ''
|
|
|
- },
|
|
|
- page: {
|
|
|
- current: 1,
|
|
|
- size: 20,
|
|
|
- },
|
|
|
- };
|
|
|
- },
|
|
|
- mounted: function() {
|
|
|
- this.getUserList();
|
|
|
- },
|
|
|
- methods: {
|
|
|
+ export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ condition: {
|
|
|
+ key: '',
|
|
|
+ gender: ''
|
|
|
+ },
|
|
|
+ page: {
|
|
|
+ current: 1,
|
|
|
+ size: 20,
|
|
|
+ },
|
|
|
+ };
|
|
|
+ },
|
|
|
+ mounted: function () {
|
|
|
+ this.getUserList(this.page);
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
|
|
|
- /**
|
|
|
- * 提交查询条件
|
|
|
- */
|
|
|
- submit: function() {
|
|
|
- const param = {
|
|
|
- username: this.condition.username,
|
|
|
- nickname: this.condition.nickname
|
|
|
- };
|
|
|
- this.getUserList(param);
|
|
|
- },
|
|
|
- /**
|
|
|
- * 分页点击事件
|
|
|
- */
|
|
|
- pagination: function(current) {
|
|
|
- const param = {
|
|
|
- username: this.condition.username,
|
|
|
- nickname: this.condition.nickname,
|
|
|
- current: current,
|
|
|
- size: this.page.size,
|
|
|
- };
|
|
|
- this.getUserList(param);
|
|
|
- },
|
|
|
- /**
|
|
|
- * 获取用户列表
|
|
|
- */
|
|
|
- getUserList: function(params) {
|
|
|
- const that = this;
|
|
|
- this.Post(this.Global.getUserList, params).then(res => {
|
|
|
- that.page = res.data;
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
+ /**
|
|
|
+ * 提交查询条件
|
|
|
+ */
|
|
|
+ submit: function () {
|
|
|
+ const param = {
|
|
|
+ key: this.condition.key,
|
|
|
+ gender: this.condition.gender
|
|
|
+ };
|
|
|
+ this.getUserList(param);
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 分页点击事件
|
|
|
+ */
|
|
|
+ pagination: function (current) {
|
|
|
+ const param = {
|
|
|
+ key: this.condition.key,
|
|
|
+ gender: this.condition.gender,
|
|
|
+ current: current,
|
|
|
+ size: this.page.size,
|
|
|
+ };
|
|
|
+ this.getUserList(param);
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 获取用户列表
|
|
|
+ */
|
|
|
+ getUserList: function (params) {
|
|
|
+ const that = this;
|
|
|
+ this.Post(this.Global.getUserList, params).then(res => {
|
|
|
+ that.page = res.data;
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ };
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
- .header-cell {
|
|
|
- background: #f3f5f9 !important;
|
|
|
- }
|
|
|
+ .header-cell {
|
|
|
+ background: #f3f5f9 !important;
|
|
|
+ }
|
|
|
|
|
|
- .zy-template {
|
|
|
- width: 100%;
|
|
|
+ .zy-template {
|
|
|
+ width: 100%;
|
|
|
|
|
|
- &_search {
|
|
|
- overflow: hidden;
|
|
|
+ &_search {
|
|
|
+ overflow: hidden;
|
|
|
|
|
|
- & .form-item {
|
|
|
- margin-bottom: 0;
|
|
|
- float: left;
|
|
|
- width: 230px;
|
|
|
- }
|
|
|
- }
|
|
|
+ & .form-item {
|
|
|
+ margin-bottom: 0;
|
|
|
+ float: left;
|
|
|
+ width: 230px;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- &_table {
|
|
|
- border-radius: 5px;
|
|
|
- width: 100%;
|
|
|
- background: white;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 20px;
|
|
|
- }
|
|
|
+ &_table {
|
|
|
+ border-radius: 5px;
|
|
|
+ width: 100%;
|
|
|
+ background: white;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 20px;
|
|
|
+ }
|
|
|
|
|
|
- & .pagination {
|
|
|
- margin-top: 20px;
|
|
|
- }
|
|
|
- }
|
|
|
+ & .pagination {
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
</style>
|