Blame view

ant-design-vue-jeecg/src/views/system/UserList.vue 15.8 KB
肖超群 authored
1
2
3
4
5
6
7
<template>
  <a-card :bordered="false">

    <!-- 查询区域 -->
    <div class="table-page-search-wrapper">
      <a-form layout="inline" @keyup.enter.native="searchQuery">
        <a-row :gutter="24">
谭毅彬 authored
8
          <a-col :md="6" :sm="8">
肖超群 authored
9
            <a-form-item label="账号">
谭毅彬 authored
10
11
12
13
14
15
16
              <!--<a-input placeholder="请输入账号" v-model="queryParam.username"></a-input>-->
              <j-input placeholder="请输入账号(模糊查询)" v-model="queryParam.username"></j-input>
            </a-form-item>
          </a-col>
          <a-col :md="6" :sm="8">
            <a-form-item label="姓名">
              <a-input placeholder="请输入姓名" v-model="queryParam.realname"></a-input>
肖超群 authored
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
            </a-form-item>
          </a-col>
          <a-col :md="6" :sm="8">
            <a-form-item label="性别">
              <a-select v-model="queryParam.sex" 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>
          <template v-if="toggleSearchStatus">

            <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">
谭毅彬 authored
37
              <a-form-item label="状态">
肖超群 authored
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
                <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>
          </template>

          <a-col :md="6" :sm="8">
            <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>
              <a @click="handleToggleSearch" style="margin-left: 8px">
                {{ toggleSearchStatus ? '收起' : '展开' }}
                <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
              </a>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>

    <!-- 操作按钮区域 -->
62
    <div class="table-operator">
肖超群 authored
63
      <a-button v-has="'user:add'" @click="handleAdd" type="primary" icon="plus">添加用户</a-button>
易文鹏 authored
64
      <a-button v-has="'user:export'" type="primary" icon="download" @click="handleExportXls('用户信息')">导出</a-button>
65
      <a-upload v-has="'user:import'" name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
肖超群 authored
66
67
        <a-button type="primary" icon="import">导入</a-button>
      </a-upload>
68
      <j-third-app-button biz-type="user" :selected-row-keys="selectedRowKeys" syncToApp syncToLocal @sync-finally="onSyncFinally"/>
肖超群 authored
69
70
71
72
      <a-button type="primary" icon="hdd" @click="recycleBinVisible=true">回收站</a-button>
      <a-dropdown v-if="selectedRowKeys.length > 0">
        <a-menu slot="overlay" @click="handleMenuClick">
          <a-menu-item key="1">
73
            <a-icon type="delete" v-has="'user:deleteBatch'" @click="batchDel"/>删除</a-menu-item>
肖超群 authored
74
          <a-menu-item key="2">
75
            <a-icon type="lock" v-has="'user:frozenBatch'" @click="batchFrozen('2')"/>冻结</a-menu-item>
肖超群 authored
76
          <a-menu-item key="3">
77
            <a-icon v-has="'user:thawBatch'" type="unlock" @click="batchFrozen('1')"/>解冻</a-menu-item>
肖超群 authored
78
        </a-menu>
79
        <a-button style="margin-left: 8px">批量操作<a-icon type="down"/></a-button>
肖超群 authored
80
      </a-dropdown>
81
      <j-super-query :fieldList="superQueryFieldList" v-has="'user:superQuery'" @handleSuperQuery="handleSuperQuery"/>
肖超群 authored
82
83
84
85
86
    </div>

    <!-- table区域-begin -->
    <div>
      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
87
88
        <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择
        <a style="font-weight: 600">{{ selectedRowKeys.length }}</a> 项
肖超群 authored
89
90
91
92
93
94
        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
      </div>

      <a-table
        ref="table"
        size="middle"
95
        bordered
肖超群 authored
96
        rowKey="id"
97
        :scroll="{x:true}"
肖超群 authored
98
99
100
101
102
        :columns="columns"
        :dataSource="dataSource"
        :pagination="ipagination"
        :loading="loading"
        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
谭毅彬 authored
103
        class="j-table-force-nowrap"
肖超群 authored
104
105
        @change="handleTableChange">
106
        <!-- <span slot="selectedWarehouses" slot-scope="selectedWarehouses" >
107
108
109
          <a-tag v-for="selectedWarehouse in selectedWarehouses" :key="selectedWarehouse" color=pink>
            {{ solutionWarehouse(selectedWarehouse) }}
          </a-tag>
110
        </span> -->
111
112
113
        <span slot="selectedRoleList" slot-scope="selectedRoleList" >
          <a-tag v-for="selectedRole in selectedRoleList" :key="selectedRole" color=pink>
114
115
116
117
            {{ solutionRole(selectedRole) }}
          </a-tag>
        </span>
肖超群 authored
118
119
120
121
122
123
        <span slot="zoneCodes" slot-scope="zoneCodes" >
          <a-tag v-for="zoneCode in zoneCodes" :key="zoneCode" color=pink>
            {{ solutionZoneCode(zoneCode) }}
          </a-tag>
        </span>
谭毅彬 authored
124
        <template slot="avatarslot" slot-scope="text, record">
肖超群 authored
125
126
127
128
129
130
          <div class="anty-img-wrap">
            <a-avatar shape="square" :src="getAvatarView(record.avatar)" icon="user"/>
          </div>
        </template>

        <span slot="action" slot-scope="text, record">
131
          <a v-has="'user:edit'" @click="handleEdit(record)">编辑</a><a-divider type="vertical"/>
谭毅彬 authored
132
          <a-dropdown><a class="ant-dropdown-link">更多 <a-icon type="down"/></a>
肖超群 authored
133
134
135
136
            <a-menu slot="overlay">
              <a-menu-item>
                <a href="javascript:;" @click="handleDetail(record)">详情</a>
              </a-menu-item>
137
              <a-menu-item v-has="'user:changePassword'">
肖超群 authored
138
139
140
                <a href="javascript:;" @click="handleChangePassword(record.username)">密码</a>
              </a-menu-item>
易文鹏 authored
141
              <a-menu-item v-has="'user:delete'">
肖超群 authored
142
143
144
145
146
147
148
                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
                  <a>删除</a>
                </a-popconfirm>
              </a-menu-item>

              <a-menu-item v-if="record.status==1">
                <a-popconfirm title="确定冻结吗?" @confirm="() => handleFrozen(record.id,2,record.username)">
易文鹏 authored
149
                  <a v-has="'user:frozen'">冻结</a>
肖超群 authored
150
151
152
153
154
                </a-popconfirm>
              </a-menu-item>

              <a-menu-item v-if="record.status==2">
                <a-popconfirm title="确定解冻吗?" @confirm="() => handleFrozen(record.id,1,record.username)">
易文鹏 authored
155
                  <a v-has="'user:thaw'">解冻</a>
肖超群 authored
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
                </a-popconfirm>
              </a-menu-item>

              <a-menu-item>
                <a href="javascript:;" @click="handleAgentSettings(record.username)">代理人</a>
              </a-menu-item>

            </a-menu>
          </a-dropdown>
        </span>


      </a-table>
    </div>
    <!-- table区域-end -->

    <user-modal ref="modalForm" @ok="modalFormOk"></user-modal>

    <password-modal ref="passwordmodal" @ok="passwordModalOk"></password-modal>

    <sys-user-agent-modal ref="sysUserAgentModal"></sys-user-agent-modal>

    <!-- 用户回收站 -->
    <user-recycle-bin-modal :visible.sync="recycleBinVisible" @ok="modalFormOk"/>

  </a-card>
</template>

<script>
肖超群 authored
185
186
187
import UserModal from './modules/UserModal'
import PasswordModal from './modules/PasswordModal'
import {putAction, getFileAccessHttpUrl} from '@/api/manage';
肖超群 authored
188
import {frozenBatch, getAllWarehouseList, queryall, getZoneList, getAllZoneList} from '@/api/api'
肖超群 authored
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import {JeecgListMixin} from '@/mixins/JeecgListMixin'
import SysUserAgentModal from "./modules/SysUserAgentModal";
import JInput from '@/components/jeecg/JInput'
import UserRecycleBinModal from './modules/UserRecycleBinModal'
import JSuperQuery from '@/components/jeecg/JSuperQuery'
import JThirdAppButton from '@/components/jeecgbiz/thirdApp/JThirdAppButton'

export default {
  name: "UserList",
  mixins: [JeecgListMixin],
  components: {
    JThirdAppButton,
    SysUserAgentModal,
    UserModal,
    PasswordModal,
    JInput,
    UserRecycleBinModal,
    JSuperQuery
  },
  data() {
    return {
      description: '这是用户管理页面',
      queryParam: {},
      recycleBinVisible: false,
213
      allWarehouseList: [],
肖超群 authored
214
      zoneList: [],
215
      rolesOptions: [],
肖超群 authored
216
217
218
219
220
221
222
223
224
      columns: [
        /*{
          title: '#',
          dataIndex: '',
          key:'rowIndex',
          width:60,
          align:"center",
          customRender:function (t,r,index) {
            return parseInt(index)+1;
肖超群 authored
225
          }
肖超群 authored
226
227
        },*/
        {
谭毅彬 authored
228
          title: '账号',
肖超群 authored
229
          align: "center",
230
          dataIndex: 'username'
肖超群 authored
231
232
        },
        {
谭毅彬 authored
233
          title: '姓名',
肖超群 authored
234
235
236
237
          align: "center",
          dataIndex: 'realname',
        },
        {
238
          title: '工号',
肖超群 authored
239
          align: "center",
240
          dataIndex: 'workNo',
肖超群 authored
241
        },
242
243
244
245
246
247
248
        // {
        //   title: '头像',
        //   align: "center",
        //   width: 100,
        //   dataIndex: 'avatar',
        //   scopedSlots: {customRender: "avatarslot"}
        // },
肖超群 authored
249
肖超群 authored
250
251
252
        {
          title: '性别',
          align: "center",
253
          dataIndex: 'sex_dictText'
肖超群 authored
254
255
        },
        {
256
          title: '角色',
肖超群 authored
257
          align: "center",
258
259
          dataIndex: 'selectedRoleList',
          key: 'selectedRoleList',
260
          scopedSlots: {customRender: 'selectedRoleList'}
肖超群 authored
261
        },
262
263
264
265
266
267
        // {
        //   title: '生日',
        //   align: "center",
        //   width: 100,
        //   dataIndex: 'birthday'
        // },
肖超群 authored
268
269
270
271
272
273
        {
          title: '手机号码',
          align: "center",
          dataIndex: 'phone'
        },
        {
274
          title: '邮箱',
肖超群 authored
275
          align: "center",
276
277
          dataIndex: 'email'
        },
278
279
280
281
282
283
284
285
286
287
288
289
290
291
        // {
        //   title: '所属仓库',
        //   align: "center",
        //   dataIndex: 'selectedWarehouses',
        //   key: 'selectedWarehouses',
        //   scopedSlots: {customRender: 'selectedWarehouses'}
        // },
        // {
        //   title: '所属库区',
        //   align: "center",
        //   dataIndex: 'zoneCodes',
        //   key: 'zoneCodes',
        //   scopedSlots: {customRender: 'zoneCodes'}
        // },
肖超群 authored
292
293
294
295
296
297
298
299
300
301
302
        // {
        //   title: '部门',
        //   align: "center",
        //   width: 180,
        //   dataIndex: 'orgCodeTxt'
        // },
        // {
        //   title: '负责部门',
        //   align: "center",
        //   dataIndex: 'departIds_dictText'
        // },
肖超群 authored
303
304
305
306
307
308
309
310
        {
          title: '状态',
          align: "center",
          dataIndex: 'status_dictText'
        },
        {
          title: '操作',
          dataIndex: 'action',
谭毅彬 authored
311
          fixed: 'right',
肖超群 authored
312
313
          scopedSlots: {customRender: 'action'},
          align: "center",
314
          width: 147
肖超群 authored
315
        }
肖超群 authored
316
317
318

      ],
      superQueryFieldList: [
谭毅彬 authored
319
320
        {type: 'input', value: 'username', text: '账号',},
        {type: 'input', value: 'realname', text: '姓名',},
肖超群 authored
321
322
323
324
325
326
327
328
329
        {type: 'select', value: 'sex', dbType: 'int', text: '性别', dictCode: 'sex'},
      ],
      url: {
        syncUser: "/act/process/extActProcess/doSyncUser",
        list: "/sys/user/list",
        delete: "/sys/user/delete",
        deleteBatch: "/sys/user/deleteBatch",
        exportXlsUrl: "/sys/user/exportXls",
        importExcelUrl: "sys/user/importExcel",
肖超群 authored
330
      },
肖超群 authored
331
332
333
334
335
336
337
    }
  },
  computed: {
    importExcelUrl: function () {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
    }
  },
338
339
340
  created() {
    this.loadFrom();
  },
肖超群 authored
341
  methods: {
342
    loadFrom() {
肖超群 authored
343
      getAllZoneList().then((res) => {
肖超群 authored
344
345
346
347
        if (res.success) {
          this.zoneList = res.result
        }
      });
348
349
350
351
352
      getAllWarehouseList().then((res) => {
        if (res.success) {
          this.allWarehouseList = res.result
        }
      });
353
354
355
356
357
358
359
360
      queryall().then((res) => {
        if (res.success) {
          this.rolesOptions = res.result.map((item, index, arr) => {
            return {label: item.id + "", value: item.roleName}
          })
          console.info(this.rolesOptions);
        }
      });
361
362
363
364
365
366
367
368
369
370
371
    },
    solutionWarehouse(value) {
      var actions = []
      Object.keys(this.allWarehouseList).some((key) => {
        if (this.allWarehouseList[key].code == ('' + value)) {
          actions.push(this.allWarehouseList[key].name)
          return true
        }
      })
      return actions.join('')
    },
肖超群 authored
372
373
374
375
376
377
378
379
380
381
    solutionZoneCode(value) {
      var actions = []
      Object.keys(this.zoneList).some((key) => {
        if (this.zoneList[key].code == ('' + value)) {
          actions.push(this.zoneList[key].name)
          return true
        }
      })
      return actions.join('')
    },
382
383
384
385
386
387
388
389
390
391
    solutionRole(value) {
      var actions = []
      Object.keys(this.rolesOptions).some((key) => {
        if (this.rolesOptions[key].label == ('' + value)) {
          actions.push(this.rolesOptions[key].value)
          return true
        }
      })
      return actions.join('')
    },
肖超群 authored
392
393
394
395
396
397
398
399
400
    getAvatarView: function (avatar) {
      return getFileAccessHttpUrl(avatar)
    },
    batchFrozen: function (status) {
      if (this.selectedRowKeys.length <= 0) {
        this.$message.warning('请选择一条记录!');
        return false;
      } else {
        let ids = "";
肖超群 authored
401
        let that = this;
肖超群 authored
402
403
404
405
406
407
408
409
        let isAdmin = false;
        that.selectionRows.forEach(function (row) {
          if (row.username == 'admin') {
            isAdmin = true;
          }
        });
        if (isAdmin) {
          that.$message.warning('管理员账号不允许此操作,请重新选择!');
肖超群 authored
410
411
          return;
        }
肖超群 authored
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
        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);
              }
            });
肖超群 authored
428
429
          }
        });
肖超群 authored
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
      }
    },
    handleMenuClick(e) {
      if (e.key == 1) {
        this.batchDel();
      } else if (e.key == 2) {
        this.batchFrozen(2);
      } else if (e.key == 3) {
        this.batchFrozen(1);
      }
    },
    handleFrozen: function (id, status, username) {
      let that = this;
      //TODO 后台校验管理员角色
      if ('admin' == username) {
        that.$message.warning('管理员账号不允许此操作!');
        return;
      }
      frozenBatch({ids: id, status: status}).then((res) => {
        if (res.success) {
          that.$message.success(res.message);
          that.loadData();
        } else {
          that.$message.warning(res.message);
肖超群 authored
454
        }
肖超群 authored
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
      });
    },
    handleChangePassword(username) {
      this.$refs.passwordmodal.show(username);
    },
    handleAgentSettings(username) {
      this.$refs.sysUserAgentModal.agentSettings(username);
      this.$refs.sysUserAgentModal.title = "用户代理人设置";
    },
    passwordModalOk() {
      //TODO 密码修改完成 不需要刷新页面,可以把datasource中的数据更新一下
    },
    onSyncFinally({isToLocal}) {
      // 同步到本地时刷新下数据
      if (isToLocal) {
        this.loadData()
      }
    },
肖超群 authored
473
  }
肖超群 authored
474
475

}
肖超群 authored
476
477
</script>
<style scoped>
肖超群 authored
478
@import '~@assets/less/common.less'
肖超群 authored
479
</style>