|
1
2
3
4
5
|
<template>
<a-card :bordered="false">
<!-- 查询区域 -->
<div class="table-page-search-wrapper">
|
|
6
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
7
8
|
<a-row :gutter="24">
|
|
9
|
<a-col :md="6" :sm="12">
|
|
10
|
<a-form-item label="账号">
|
|
11
12
|
<!--<a-input placeholder="请输入账号查询" v-model="queryParam.username"></a-input>-->
<j-input placeholder="输入账号模糊查询" v-model="queryParam.username"></j-input>
|
|
13
14
15
|
</a-form-item>
</a-col>
|
|
16
|
<a-col :md="6" :sm="8">
|
|
17
|
<a-form-item label="性别">
|
|
18
19
|
<a-select v-model="queryParam.sex" placeholder="请选择性别">
<a-select-option value="">请选择</a-select-option>
|
|
20
21
22
23
24
25
26
27
|
<a-select-option value="1">男性</a-select-option>
<a-select-option value="2">女性</a-select-option>
</a-select>
</a-form-item>
</a-col>
<template v-if="toggleSearchStatus">
|
|
28
|
<a-col :md="6" :sm="8">
|
|
29
30
|
<a-form-item label="真实名字">
<a-input placeholder="请输入真实名字" v-model="queryParam.realname"></a-input>
|
|
31
32
33
|
</a-form-item>
</a-col>
|
|
34
|
<a-col :md="6" :sm="8">
|
|
35
36
37
38
39
|
<a-form-item label="手机号码">
<a-input placeholder="请输入手机号码查询" v-model="queryParam.phone"></a-input>
</a-form-item>
</a-col>
|
|
40
|
<a-col :md="6" :sm="8">
|
|
41
42
43
|
<a-form-item label="用户状态">
<a-select v-model="queryParam.status" placeholder="请选择">
<a-select-option value="">请选择</a-select-option>
|
|
44
|
<a-select-option value="1">正常</a-select-option>
|
|
45
|
<a-select-option value="2">冻结</a-select-option>
|
|
46
47
48
49
50
|
</a-select>
</a-form-item>
</a-col>
</template>
|
|
51
|
<a-col :md="6" :sm="8">
|
|
52
|
<span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
|
|
53
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
|
|
54
55
56
57
58
59
60
61
62
63
64
65
66
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
<a @click="handleToggleSearch" style="margin-left: 8px">
{{ toggleSearchStatus ? '收起' : '展开' }}
<a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
</a>
</span>
</a-col>
</a-row>
</a-form>
</div>
<!-- 操作按钮区域 -->
|
|
67
|
<div class="table-operator" style="border-top: 5px">
|
|
68
|
<a-button @click="handleAdd" type="primary" icon="plus">添加用户</a-button>
|
|
69
70
|
<a-button type="primary" icon="download" @click="handleExportXls('用户信息')">导出</a-button>
<a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
|
|
71
72
|
<a-button type="primary" icon="import">导入</a-button>
</a-upload>
|
|
73
74
|
<a-dropdown v-if="selectedRowKeys.length > 0">
<a-menu slot="overlay" @click="handleMenuClick">
|
|
75
76
77
78
79
80
81
82
83
84
85
86
|
<a-menu-item key="1">
<a-icon type="delete" @click="batchDel"/>
删除
</a-menu-item>
<a-menu-item key="2">
<a-icon type="lock" @click="batchFrozen('2')"/>
冻结
</a-menu-item>
<a-menu-item key="3">
<a-icon type="unlock" @click="batchFrozen('1')"/>
解冻
</a-menu-item>
|
|
87
88
|
</a-menu>
<a-button style="margin-left: 8px">
|
|
89
90
|
批量操作
<a-icon type="down"/>
|
|
91
92
93
94
95
96
97
|
</a-button>
</a-dropdown>
</div>
<!-- table区域-begin -->
<div>
<div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
|
|
98
|
<i class="anticon anticon-info-circle ant-alert-icon"></i>已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
|
|
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
</div>
<a-table
ref="table"
bordered
size="middle"
rowKey="id"
:columns="columns"
:dataSource="dataSource"
:pagination="ipagination"
:loading="loading"
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
@change="handleTableChange">
<template slot="avatarslot" slot-scope="text, record, index">
<div class="anty-img-wrap">
|
|
116
|
<a-avatar shape="square" :src="getAvatarView(record.avatar)" icon="user"/>
|
|
117
118
119
120
|
</div>
</template>
<span slot="action" slot-scope="text, record">
|
|
121
|
<a @click="handleEdit(record)">编辑</a>
|
|
122
|
|
|
123
|
<a-divider type="vertical"/>
|
|
124
|
|
|
125
126
|
<a-dropdown>
<a class="ant-dropdown-link">
|
|
127
|
更多 <a-icon type="down"/>
|
|
128
129
|
</a>
<a-menu slot="overlay">
|
|
130
|
<a-menu-item>
|
|
131
132
133
|
<a href="javascript:;" @click="handleDetail(record)">详情</a>
</a-menu-item>
|
|
134
135
|
<a-menu-item>
<a href="javascript:;" @click="handleChangePassword(record.username)">密码</a>
|
|
136
137
138
139
140
141
142
143
144
|
</a-menu-item>
<a-menu-item>
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
<a>删除</a>
</a-popconfirm>
</a-menu-item>
<a-menu-item v-if="record.status==1">
|
|
145
|
<a-popconfirm title="确定冻结吗?" @confirm="() => handleFrozen(record.id,2,record.username)">
|
|
146
147
148
149
150
|
<a>冻结</a>
</a-popconfirm>
</a-menu-item>
<a-menu-item v-if="record.status==2">
|
|
151
|
<a-popconfirm title="确定解冻吗?" @confirm="() => handleFrozen(record.id,1,record.username)">
|
|
152
153
154
155
|
<a>解冻</a>
</a-popconfirm>
</a-menu-item>
|
|
156
157
158
159
|
<a-menu-item>
<a href="javascript:;" @click="handleAgentSettings(record.username)">代理人</a>
</a-menu-item>
|
|
160
161
162
163
164
165
166
167
168
|
</a-menu>
</a-dropdown>
</span>
</a-table>
</div>
<!-- table区域-end -->
|
|
169
|
<user-modal ref="modalForm" @ok="modalFormOk"></user-modal>
|
|
170
171
172
|
<password-modal ref="passwordmodal" @ok="passwordModalOk"></password-modal>
|
|
173
|
<sys-user-agent-modal ref="sysUserAgentModal"></sys-user-agent-modal>
|
|
174
175
176
177
178
179
|
</a-card>
</template>
<script>
import UserModal from './modules/UserModal'
import PasswordModal from './modules/PasswordModal'
|
|
180
181
182
|
import {putAction} from '@/api/manage';
import {frozenBatch} from '@/api/api'
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
|
|
183
|
import SysUserAgentModal from "./modules/SysUserAgentModal";
|
|
184
|
import JInput from '@/components/jeecg/JInput'
|
|
185
186
187
|
export default {
name: "UserList",
|
|
188
|
mixins: [JeecgListMixin],
|
|
189
|
components: {
|
|
190
|
SysUserAgentModal,
|
|
191
|
UserModal,
|
|
192
193
|
PasswordModal,
JInput
|
|
194
|
},
|
|
195
|
data() {
|
|
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
return {
description: '这是用户管理页面',
queryParam: {},
columns: [
/*{
title: '#',
dataIndex: '',
key:'rowIndex',
width:60,
align:"center",
customRender:function (t,r,index) {
return parseInt(index)+1;
}
},*/
{
title: '用户账号',
|
|
212
|
align: "center",
|
|
213
|
dataIndex: 'username',
|
|
214
|
width: 120
|
|
215
216
217
|
},
{
title: '真实姓名',
|
|
218
219
|
align: "center",
width: 100,
|
|
220
221
222
223
|
dataIndex: 'realname',
},
{
title: '头像',
|
|
224
225
|
align: "center",
width: 120,
|
|
226
|
dataIndex: 'avatar',
|
|
227
|
scopedSlots: {customRender: "avatarslot"}
|
|
228
229
230
231
|
},
{
title: '性别',
|
|
232
233
|
align: "center",
width: 80,
|
|
234
235
|
dataIndex: 'sex_dictText',
sorter: true
|
|
236
237
238
|
},
{
title: '生日',
|
|
239
240
|
align: "center",
width: 180,
|
|
241
242
243
244
|
dataIndex: 'birthday'
},
{
title: '手机号码',
|
|
245
246
|
align: "center",
width: 100,
|
|
247
248
249
250
|
dataIndex: 'phone'
},
{
title: '邮箱',
|
|
251
|
align: "center",
|
|
252
253
254
255
|
dataIndex: 'email'
},
{
title: '状态',
|
|
256
257
258
|
align: "center",
width: 80,
dataIndex: 'status_dictText'
|
|
259
|
},
|
|
260
|
/* {
|
|
261
|
title: '创建时间',
|
|
262
263
|
align: "center",
width: 150,
|
|
264
|
dataIndex: 'createTime',
|
|
265
266
|
sorter: true
},*/
|
|
267
268
269
|
{
title: '操作',
dataIndex: 'action',
|
|
270
271
272
|
scopedSlots: {customRender: 'action'},
align: "center",
width: 170
|
|
273
274
275
276
|
}
],
url: {
|
|
277
278
279
280
281
|
imgerver: window._CONFIG['domianURL'] + "/sys/common/view",
syncUser: "/process/extActProcess/doSyncUser",
list: "/sys/user/list",
delete: "/sys/user/delete",
deleteBatch: "/sys/user/deleteBatch",
|
|
282
|
exportXlsUrl: "/sys/user/exportXls",
|
|
283
|
importExcelUrl: "sys/user/importExcel",
|
|
284
285
286
|
},
}
},
|
|
287
288
289
290
|
computed: {
importExcelUrl: function(){
return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
}
|
|
291
292
|
},
methods: {
|
|
293
294
|
getAvatarView: function (avatar) {
return this.url.imgerver + "/" + avatar;
|
|
295
|
},
|
|
296
297
298
|
batchFrozen: function (status) {
if (this.selectedRowKeys.length <= 0) {
|
|
299
300
|
this.$message.warning('请选择一条记录!');
return false;
|
|
301
|
} else {
|
|
302
303
|
let ids = "";
let that = this;
|
|
304
305
306
307
308
309
310
311
312
313
|
let isAdmin = false;
that.selectionRows.forEach(function (row) {
if (row.username == 'admin') {
isAdmin = true;
}
});
if (isAdmin) {
that.$message.warning('管理员账号不允许此操作,请重新选择!');
return;
}
|
|
314
315
|
that.selectedRowKeys.forEach(function (val) {
ids += val + ",";
|
|
316
317
|
});
that.$confirm({
|
|
318
319
320
321
322
|
title: "确认操作",
content: "是否" + (status == 1 ? "解冻" : "冻结") + "选中账号?",
onOk: function () {
frozenBatch({ids: ids, status: status}).then((res) => {
if (res.success) {
|
|
323
324
325
|
that.$message.success(res.message);
that.loadData();
that.onClearSelected();
|
|
326
|
} else {
|
|
327
328
329
330
331
332
333
|
that.$message.warning(res.message);
}
});
}
});
}
},
|
|
334
335
336
337
|
handleMenuClick(e) {
if (e.key == 1) {
this.batchDel();
} else if (e.key == 2) {
|
|
338
|
this.batchFrozen(2);
|
|
339
|
} else if (e.key == 3) {
|
|
340
341
342
|
this.batchFrozen(1);
}
},
|
|
343
|
handleFrozen: function (id, status, username) {
|
|
344
|
let that = this;
|
|
345
346
347
348
349
|
//TODO 后台校验管理员角色
if ('admin' == username) {
that.$message.warning('管理员账号不允许此操作!');
return;
}
|
|
350
351
|
frozenBatch({ids: id, status: status}).then((res) => {
if (res.success) {
|
|
352
353
|
that.$message.success(res.message);
that.loadData();
|
|
354
|
} else {
|
|
355
356
357
358
|
that.$message.warning(res.message);
}
});
},
|
|
359
360
361
|
handleChangePassword(username) {
this.$refs.passwordmodal.show(username);
},
|
|
362
363
364
365
|
handleAgentSettings(username){
this.$refs.sysUserAgentModal.agentSettings(username);
this.$refs.sysUserAgentModal.title = "用户代理人设置";
},
|
|
366
|
passwordModalOk() {
|
|
367
368
369
370
371
372
373
|
//TODO 密码修改完成 不需要刷新页面,可以把datasource中的数据更新一下
}
}
}
</script>
<style scoped>
|
|
374
|
@import '~@assets/less/common.less'
|
|
375
|
</style>
|