|
@@ -1,18 +1,15 @@
|
|
|
<template>
|
|
|
<a-card :bordered="false">
|
|
|
-
|
|
|
<!-- 查询区域 -->
|
|
|
<div class="table-page-search-wrapper">
|
|
|
<a-form layout="inline">
|
|
|
<a-row :gutter="24">
|
|
|
-
|
|
|
<a-col :md="6" :sm="12">
|
|
|
<a-form-item label="账号">
|
|
|
<a-input placeholder="请输入账号查询" v-model="queryParam.username"></a-input>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
-
|
|
|
<a-col :md="6" :sm="12">
|
|
|
<a-form-item label="姓名">
|
|
|
<a-input placeholder="请输入姓名查询" v-model="queryParam.realname"></a-input>
|
|
@@ -28,37 +25,34 @@
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-item label="邮箱">
|
|
|
+ <a-input placeholder="请输入邮箱查询" v-model="queryParam.email"></a-input>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-item label="手机号码">
|
|
|
+ <a-input placeholder="请输入手机号码查询" v-model="queryParam.phone"></a-input>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="邮箱">
|
|
|
- <a-input placeholder="请输入邮箱查询" v-model="queryParam.email"></a-input>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="手机号码">
|
|
|
- <a-input placeholder="请输入手机号码查询" v-model="queryParam.phone"></a-input>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
-
|
|
|
- <a-col :md="6" :sm="8">
|
|
|
- <a-form-item label="状态">
|
|
|
- <a-select v-model="queryParam.status" placeholder="请选择用户状态查询">
|
|
|
- <a-select-option value="">请选择用户状态</a-select-option>
|
|
|
- <a-select-option value="1">正常</a-select-option>
|
|
|
- <a-select-option value="2">解冻</a-select-option>
|
|
|
- </a-select>
|
|
|
- </a-form-item>
|
|
|
- </a-col>
|
|
|
+ <a-col :md="6" :sm="8">
|
|
|
+ <a-form-item label="状态">
|
|
|
+ <a-select v-model="queryParam.status" placeholder="请选择用户状态查询">
|
|
|
+ <a-select-option value="">请选择用户状态</a-select-option>
|
|
|
+ <a-select-option value="1">正常</a-select-option>
|
|
|
+ <a-select-option value="2">解冻</a-select-option>
|
|
|
+ </a-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
|
|
|
<a-col :md="6" :sm="8">
|
|
|
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
|
+ <span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
|
|
|
</span>
|
|
|
</a-col>
|
|
|
-
|
|
|
</a-row>
|
|
|
</a-form>
|
|
|
</div>
|
|
@@ -70,7 +64,6 @@
|
|
|
|
|
|
<!-- table区域-begin -->
|
|
|
<div>
|
|
|
-
|
|
|
<a-table
|
|
|
ref="table"
|
|
|
bordered
|
|
@@ -80,22 +73,25 @@
|
|
|
:dataSource="dataSource"
|
|
|
:pagination="ipagination"
|
|
|
:loading="loading"
|
|
|
- @change="handleTableChange">
|
|
|
-
|
|
|
+ @change="handleTableChange"
|
|
|
+ >
|
|
|
<template slot="avatarslot" slot-scope="text, record">
|
|
|
<div class="anty-img-wrap">
|
|
|
- <a-avatar shape="square" :src="getAvatarView(record.avatar)" icon="user"/>
|
|
|
+ <a-avatar shape="square" :src="getAvatarView(record.avatar)" icon="user" />
|
|
|
</div>
|
|
|
</template>
|
|
|
+ <template slot="leaderName" slot-scope="text, record">
|
|
|
+ <span>
|
|
|
+ {{ text ? text : '-' }}
|
|
|
+ </span>
|
|
|
+ </template>
|
|
|
|
|
|
<span slot="action" slot-scope="text, record">
|
|
|
<a @click="handleEdit(record)">编辑</a>
|
|
|
- <a-divider type="vertical"/>
|
|
|
+ <a-divider type="vertical" />
|
|
|
|
|
|
<a-dropdown>
|
|
|
- <a class="ant-dropdown-link">
|
|
|
- 更多 <a-icon type="down"/>
|
|
|
- </a>
|
|
|
+ <a class="ant-dropdown-link"> 更多 <a-icon type="down" /> </a>
|
|
|
<a-menu slot="overlay">
|
|
|
<a-menu-item>
|
|
|
<a href="javascript:;" @click="handleDetail(record)">详情</a>
|
|
@@ -111,14 +107,14 @@
|
|
|
</a-popconfirm>
|
|
|
</a-menu-item>
|
|
|
|
|
|
- <a-menu-item v-if="record.status==1">
|
|
|
- <a-popconfirm title="确定冻结吗?" @confirm="() => handleFrozen(record.id,2)">
|
|
|
+ <a-menu-item v-if="record.status == 1">
|
|
|
+ <a-popconfirm title="确定冻结吗?" @confirm="() => handleFrozen(record.id, 2)">
|
|
|
<a>冻结</a>
|
|
|
</a-popconfirm>
|
|
|
</a-menu-item>
|
|
|
|
|
|
- <a-menu-item v-if="record.status==2">
|
|
|
- <a-popconfirm title="确定解冻吗?" @confirm="() => handleFrozen(record.id,1)">
|
|
|
+ <a-menu-item v-if="record.status == 2">
|
|
|
+ <a-popconfirm title="确定解冻吗?" @confirm="() => handleFrozen(record.id, 1)">
|
|
|
<a>解冻</a>
|
|
|
</a-popconfirm>
|
|
|
</a-menu-item>
|
|
@@ -126,12 +122,9 @@
|
|
|
<a-menu-item>
|
|
|
<a href="javascript:;" @click="handleAgentSettings(record.username)">代理人</a>
|
|
|
</a-menu-item>
|
|
|
-
|
|
|
</a-menu>
|
|
|
</a-dropdown>
|
|
|
</span>
|
|
|
-
|
|
|
-
|
|
|
</a-table>
|
|
|
</div>
|
|
|
<!-- table区域-end -->
|
|
@@ -145,27 +138,27 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import UserModal from './modules/UserModal'
|
|
|
- import PasswordModal from './modules/PasswordModal'
|
|
|
- import {putAction} from '@/api/manage';
|
|
|
- import {frozenBatch} from '@/api/api'
|
|
|
- import {JeecgListMixin} from '@/mixins/JeecgListMixin'
|
|
|
- import SysUserAgentModal from "./modules/SysUserAgentModal";
|
|
|
-
|
|
|
- export default {
|
|
|
- name: "UserList",
|
|
|
- mixins: [JeecgListMixin],
|
|
|
- components: {
|
|
|
- SysUserAgentModal,
|
|
|
- UserModal,
|
|
|
- PasswordModal
|
|
|
- },
|
|
|
- data() {
|
|
|
- return {
|
|
|
- description: '这是用户管理页面',
|
|
|
- queryParam: {},
|
|
|
- columns: [
|
|
|
- /*{
|
|
|
+import UserModal from './modules/UserModal'
|
|
|
+import PasswordModal from './modules/PasswordModal'
|
|
|
+import { putAction } from '@/api/manage'
|
|
|
+import { frozenBatch } from '@/api/api'
|
|
|
+import { JeecgListMixin } from '@/mixins/JeecgListMixin'
|
|
|
+import SysUserAgentModal from './modules/SysUserAgentModal'
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'UserList',
|
|
|
+ mixins: [JeecgListMixin],
|
|
|
+ components: {
|
|
|
+ SysUserAgentModal,
|
|
|
+ UserModal,
|
|
|
+ PasswordModal,
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ description: '这是用户管理页面',
|
|
|
+ queryParam: {},
|
|
|
+ columns: [
|
|
|
+ /*{
|
|
|
title: '#',
|
|
|
dataIndex: '',
|
|
|
key:'rowIndex',
|
|
@@ -175,154 +168,171 @@
|
|
|
return parseInt(index)+1;
|
|
|
}
|
|
|
},*/
|
|
|
- {
|
|
|
- title: '用户账号',
|
|
|
- align: "center",
|
|
|
- dataIndex: 'username',
|
|
|
- width: 120
|
|
|
- },
|
|
|
- {
|
|
|
- title: '真实姓名',
|
|
|
- align: "center",
|
|
|
- width: 100,
|
|
|
- dataIndex: 'realname',
|
|
|
- },
|
|
|
- {
|
|
|
- title: '头像',
|
|
|
- align: "center",
|
|
|
- width: 120,
|
|
|
- dataIndex: 'avatar',
|
|
|
- scopedSlots: {customRender: "avatarslot"}
|
|
|
- },
|
|
|
+ {
|
|
|
+ title: '用户账号',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'username',
|
|
|
+ width: 120,
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '真实姓名',
|
|
|
+ align: 'center',
|
|
|
+ width: 100,
|
|
|
+ dataIndex: 'realname',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '头像',
|
|
|
+ align: 'center',
|
|
|
+ width: 120,
|
|
|
+ dataIndex: 'avatar',
|
|
|
+ scopedSlots: { customRender: 'avatarslot' },
|
|
|
+ },
|
|
|
|
|
|
- {
|
|
|
- title: '性别',
|
|
|
- align: "center",
|
|
|
- width: 80,
|
|
|
- dataIndex: 'sex_dictText',
|
|
|
- sorter: true
|
|
|
- },
|
|
|
- {
|
|
|
- title: '生日',
|
|
|
- align: "center",
|
|
|
- width: 180,
|
|
|
- dataIndex: 'birthday'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '手机号码',
|
|
|
- align: "center",
|
|
|
- width: 100,
|
|
|
- dataIndex: 'phone'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '邮箱',
|
|
|
- align: "center",
|
|
|
- dataIndex: 'email'
|
|
|
- },
|
|
|
- {
|
|
|
- title: '状态',
|
|
|
- align: "center",
|
|
|
- width: 80,
|
|
|
- dataIndex: 'status_dictText'
|
|
|
- },
|
|
|
- /* {
|
|
|
+ {
|
|
|
+ title: '性别',
|
|
|
+ align: 'center',
|
|
|
+ width: 80,
|
|
|
+ dataIndex: 'sex_dictText',
|
|
|
+ sorter: true,
|
|
|
+ },
|
|
|
+ // {
|
|
|
+ // title: '生日',
|
|
|
+ // align: 'center',
|
|
|
+ // width: 180,
|
|
|
+ // dataIndex: 'birthday',
|
|
|
+ // },
|
|
|
+ {
|
|
|
+ title: '手机号码',
|
|
|
+ align: 'center',
|
|
|
+ width: 100,
|
|
|
+ dataIndex: 'phone',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '邮箱',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'email',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '汇报上级',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'leaderName',
|
|
|
+ scopedSlots: { customRender: 'leaderName' },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '所属部门',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'departName',
|
|
|
+ scopedSlots: { customRender: 'departName' },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '用户角色',
|
|
|
+ align: 'center',
|
|
|
+ dataIndex: 'roleName',
|
|
|
+ scopedSlots: { customRender: 'roleName' },
|
|
|
+ },
|
|
|
+
|
|
|
+ {
|
|
|
+ title: '状态',
|
|
|
+ align: 'center',
|
|
|
+ width: 80,
|
|
|
+ dataIndex: 'status_dictText',
|
|
|
+ },
|
|
|
+ /* {
|
|
|
title: '创建时间',
|
|
|
align: "center",
|
|
|
width: 150,
|
|
|
dataIndex: 'createTime',
|
|
|
sorter: true
|
|
|
},*/
|
|
|
- {
|
|
|
- title: '操作',
|
|
|
- dataIndex: 'action',
|
|
|
- scopedSlots: {customRender: 'action'},
|
|
|
- align: "center",
|
|
|
- width: 170
|
|
|
- }
|
|
|
-
|
|
|
- ],
|
|
|
- url: {
|
|
|
- imgerver: window._CONFIG['domianURL'] + "/sys/common/view",
|
|
|
- syncUser: "/process/extActProcess/doSyncUser",
|
|
|
- list: "/sys/user/list",
|
|
|
- delete: "/sys/user/delete",
|
|
|
- deleteBatch: "/sys/user/deleteBatch",
|
|
|
- exportXlsUrl: "/sys/user/exportXls",
|
|
|
- importExcelUrl: "sys/user/importExcel",
|
|
|
+ {
|
|
|
+ title: '操作',
|
|
|
+ dataIndex: 'action',
|
|
|
+ scopedSlots: { customRender: 'action' },
|
|
|
+ align: 'center',
|
|
|
+ width: 170,
|
|
|
},
|
|
|
+ ],
|
|
|
+ url: {
|
|
|
+ imgerver: window._CONFIG['domianURL'] + '/sys/common/view',
|
|
|
+ syncUser: '/process/extActProcess/doSyncUser',
|
|
|
+ list: '/sys/user/list',
|
|
|
+ delete: '/sys/user/delete',
|
|
|
+ deleteBatch: '/sys/user/deleteBatch',
|
|
|
+ exportXlsUrl: '/sys/user/exportXls',
|
|
|
+ importExcelUrl: 'sys/user/importExcel',
|
|
|
+ },
|
|
|
+ }
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ importExcelUrl: function () {
|
|
|
+ return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
|
|
|
+ },
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ getAvatarView: function (avatar) {
|
|
|
+ return this.url.imgerver + '/' + avatar
|
|
|
+ },
|
|
|
+
|
|
|
+ batchFrozen: function (status) {
|
|
|
+ if (this.selectedRowKeys.length <= 0) {
|
|
|
+ this.$message.warning('请选择一条记录!')
|
|
|
+ return false
|
|
|
+ } else {
|
|
|
+ let ids = ''
|
|
|
+ let that = this
|
|
|
+ that.selectedRowKeys.forEach(function (val) {
|
|
|
+ ids += val + ','
|
|
|
+ })
|
|
|
+ that.$confirm({
|
|
|
+ title: '确认操作',
|
|
|
+ content: '是否' + (status == 1 ? '解冻' : '冻结') + '选中账号?',
|
|
|
+ onOk: function () {
|
|
|
+ frozenBatch({ ids: ids, status: status }).then((res) => {
|
|
|
+ if (res.success) {
|
|
|
+ that.$message.success(res.message)
|
|
|
+ that.loadData()
|
|
|
+ that.onClearSelected()
|
|
|
+ } else {
|
|
|
+ that.$message.warning(res.message)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
- computed: {
|
|
|
- importExcelUrl: function () {
|
|
|
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
|
|
|
+ handleMenuClick(e) {
|
|
|
+ if (e.key == 1) {
|
|
|
+ this.batchDel()
|
|
|
+ } else if (e.key == 2) {
|
|
|
+ this.batchFrozen(2)
|
|
|
+ } else if (e.key == 3) {
|
|
|
+ this.batchFrozen(1)
|
|
|
}
|
|
|
},
|
|
|
- methods: {
|
|
|
- getAvatarView: function (avatar) {
|
|
|
- return this.url.imgerver + "/" + avatar;
|
|
|
- },
|
|
|
-
|
|
|
- batchFrozen: function (status) {
|
|
|
- if (this.selectedRowKeys.length <= 0) {
|
|
|
- this.$message.warning('请选择一条记录!');
|
|
|
- return false;
|
|
|
+ handleFrozen: function (id, status) {
|
|
|
+ let that = this
|
|
|
+ frozenBatch({ ids: id, status: status }).then((res) => {
|
|
|
+ if (res.success) {
|
|
|
+ that.$message.success(res.message)
|
|
|
+ that.loadData()
|
|
|
} else {
|
|
|
- let ids = "";
|
|
|
- let that = this;
|
|
|
- that.selectedRowKeys.forEach(function (val) {
|
|
|
- ids += val + ",";
|
|
|
- });
|
|
|
- that.$confirm({
|
|
|
- title: "确认操作",
|
|
|
- content: "是否" + (status == 1 ? "解冻" : "冻结") + "选中账号?",
|
|
|
- onOk: function () {
|
|
|
- frozenBatch({ids: ids, status: status}).then((res) => {
|
|
|
- if (res.success) {
|
|
|
- that.$message.success(res.message);
|
|
|
- that.loadData();
|
|
|
- that.onClearSelected();
|
|
|
- } else {
|
|
|
- that.$message.warning(res.message);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- },
|
|
|
- handleMenuClick(e) {
|
|
|
- if (e.key == 1) {
|
|
|
- this.batchDel();
|
|
|
- } else if (e.key == 2) {
|
|
|
- this.batchFrozen(2);
|
|
|
- } else if (e.key == 3) {
|
|
|
- this.batchFrozen(1);
|
|
|
+ that.$message.warning(res.message)
|
|
|
}
|
|
|
- },
|
|
|
- handleFrozen: function (id, status) {
|
|
|
- let that = this;
|
|
|
- frozenBatch({ids: id, status: status}).then((res) => {
|
|
|
- if (res.success) {
|
|
|
- that.$message.success(res.message);
|
|
|
- that.loadData();
|
|
|
- } else {
|
|
|
- that.$message.warning(res.message);
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
- handleChangePassword(username) {
|
|
|
- this.$refs.passwordmodal.show(username);
|
|
|
- },
|
|
|
- handleAgentSettings(username) {
|
|
|
- this.$refs.sysUserAgentModal.agentSettings(username);
|
|
|
- this.$refs.sysUserAgentModal.title = "用户代理人设置";
|
|
|
- },
|
|
|
- passwordModalOk() {
|
|
|
- //TODO 密码修改完成 不需要刷新页面,可以把datasource中的数据更新一下
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleChangePassword(username) {
|
|
|
+ this.$refs.passwordmodal.show(username)
|
|
|
+ },
|
|
|
+ handleAgentSettings(username) {
|
|
|
+ this.$refs.sysUserAgentModal.agentSettings(username)
|
|
|
+ this.$refs.sysUserAgentModal.title = '用户代理人设置'
|
|
|
+ },
|
|
|
+ passwordModalOk() {
|
|
|
+ //TODO 密码修改完成 不需要刷新页面,可以把datasource中的数据更新一下
|
|
|
+ },
|
|
|
+ },
|
|
|
+}
|
|
|
</script>
|
|
|
<style scoped>
|
|
|
- @import '~@assets/less/common.less'
|
|
|
+@import '~@assets/less/common.less';
|
|
|
</style>
|