<template>
|
<div class="app-container">
|
<div class="filter-container">
|
<el-input v-model="queryParams.username" :placeholder="$t('table.user.username')" class="filter-item search-item" />
|
<el-input v-model="queryParams.deptName" :placeholder="$t('table.user.dept')" class="filter-item search-item" />
|
<el-date-picker
|
v-model="queryParams.timeRange"
|
:range-separator="null"
|
:start-placeholder="$t('table.user.createTime')"
|
value-format="yyyy-MM-dd"
|
class="filter-item search-item date-range-item"
|
type="daterange"
|
/>
|
<el-button class="filter-item" type="primary" @click="search">
|
{{ $t('table.search') }}
|
</el-button>
|
<el-button class="filter-item" type="success" @click="reset">
|
{{ $t('table.reset') }}
|
</el-button>
|
<el-button v-has-permission="['user:add']" class="filter-item" type="success" @click.native="add">
|
{{ $t('table.add') }}
|
</el-button>
|
<el-button v-has-permission="['user:delete']" class="filter-item" type="success" @click.native="batchDelete">
|
{{ $t('table.delete') }}
|
</el-button>
|
<el-button v-has-permission="['user:reset']" class="filter-item" type="success" @click.native="resetPassword">
|
{{ $t('table.resetPassword') }}
|
</el-button>
|
<el-button v-has-permission="['user:export']" class="filter-item" type="success" @click.native="exportExcel">
|
{{ $t('table.export') }}
|
</el-button>
|
<el-button class="filter-item" icon="el-icon-download" type="primary" plain @click="templateDownload">
|
{{ $t('table.templateDownload') }}
|
</el-button>
|
<el-upload
|
class="upload"
|
:action="uploadAction"
|
:headers="headers"
|
list-type="picture"
|
:show-file-list="false"
|
:before-upload="beforeUpload"
|
:on-success="uploadSuccess"
|
:on-error="uploadError"
|
:on-progress="uploadProgress"
|
>
|
<el-button v-has-permission="['user:import']" class="filter-item" icon="el-icon-upload2" type="success" plain>
|
{{ $t('table.import') }}
|
</el-button>
|
</el-upload>
|
<!-- <el-dropdown v-has-any-permission="['user:add','user:delete','user:reset','user:export']" trigger="click" class="filter-item">
|
<el-button>
|
{{ $t('table.more') }}<i class="el-icon-arrow-down el-icon--right" />
|
</el-button>
|
<el-dropdown-menu slot="dropdown">
|
<el-dropdown-item v-has-permission="['user:add']" @click.native="add">{{ $t('table.add') }}</el-dropdown-item>
|
<el-dropdown-item v-has-permission="['user:delete']" @click.native="batchDelete">{{ $t('table.delete') }}</el-dropdown-item>
|
<el-dropdown-item v-has-permission="['user:reset']" @click.native="resetPassword">{{ $t('table.resetPassword') }}</el-dropdown-item>
|
<el-dropdown-item v-has-permission="['user:export']" @click.native="exportExcel">{{ $t('table.export') }}</el-dropdown-item>
|
</el-dropdown-menu>
|
</el-dropdown> -->
|
</div>
|
|
<el-table
|
ref="table"
|
:key="tableKey"
|
v-loading="loading"
|
:data="list"
|
border
|
fit
|
style="width: 100%;"
|
@selection-change="onSelectChange"
|
@sort-change="sortChange"
|
>
|
<el-table-column type="selection" align="center" width="40px" />
|
|
<el-table-column label="部门(护卫点)" align="center" min-width="100px">
|
<template slot-scope="scope">
|
<span>{{ scope.row.deptName }}</span>
|
</template>
|
</el-table-column>
|
<el-table-column :label="$t('table.user.username')" prop="username" :show-overflow-tooltip="true" align="center" min-width="120px">
|
<template slot-scope="scope">
|
<span>{{ scope.row.username }}</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="员工姓名" prop="nickName" :show-overflow-tooltip="true" align="center" min-width="120px">
|
<template slot-scope="scope">
|
<span>{{ scope.row.nickName }}</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="身份证号" prop="certificateNumb" :show-overflow-tooltip="true" align="center" min-width="120px">
|
<template slot-scope="scope">
|
<span>{{ scope.row.certificateNumb }}</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="手机" :show-overflow-tooltip="true" align="center" min-width="120px" />
|
<el-table-column :label="$t('table.user.email')" :show-overflow-tooltip="true" align="center" min-width="150px">
|
<template slot-scope="scope">
|
<span>{{ scope.row.email }}</span>
|
</template>
|
</el-table-column>
|
<el-table-column
|
:label="$t('table.user.status')"
|
:filters="[{ text: $t('common.status.valid'), value: '1' }, { text: $t('common.status.invalid'), value: '0' }]"
|
:filter-method="filterStatus"
|
class-name="status-col"
|
>
|
<template slot-scope="{row}">
|
<el-tag :type="row.status | statusFilter">
|
{{ row.status === '1' ? $t('common.status.valid') : $t('common.status.invalid') }}
|
</el-tag>
|
</template>
|
</el-table-column>
|
<el-table-column :label="$t('table.user.createTime')" prop="createTime" align="center" min-width="180px" sortable="custom">
|
<template slot-scope="scope">
|
<span>{{ scope.row.createTime }}</span>
|
</template>
|
</el-table-column>
|
<el-table-column :label="$t('table.operation')" align="center" min-width="150px" class-name="small-padding fixed-width">
|
<template slot-scope="{row}">
|
<!--<i v-hasPermission="['user:view']" class="el-icon-view table-operation" style="color: #87d068;" @click="view(row)" />-->
|
<i v-hasPermission="['user:update']" class="el-icon-setting table-operation" style="color: #2db7f5;" @click="edit(row)" />
|
<i v-hasPermission="['user:delete']" class="el-icon-delete table-operation" style="color: #f50;" @click="singleDelete(row)" />
|
<el-link v-has-no-permission="['user:view','user:update','user:delete']" class="no-perm">
|
{{ $t('tips.noPermission') }}
|
</el-link>
|
</template>
|
</el-table-column>
|
</el-table>
|
<pagination v-show="total>0" :total="total" :page.sync="pagination.num" :limit.sync="pagination.size" @pagination="search" />
|
<user-edit
|
ref="edit"
|
:dialog-visible="dialog.isVisible"
|
:title="dialog.title"
|
@success="editSuccess"
|
@close="editClose"
|
/>
|
<user-view
|
ref="view"
|
:dialog-visible="userViewVisible"
|
@close="viewClose"
|
/>
|
</div>
|
</template>
|
|
<script>
|
import Pagination from '@/components/Pagination'
|
import UserEdit from './Edit'
|
import UserView from './View'
|
import { getFileType } from '@/utils'
|
import { getToken } from '@/utils/auth'
|
import NProgress from 'nprogress'
|
export default {
|
name: 'UserManage',
|
components: { Pagination, UserEdit, UserView },
|
filters: {
|
sexFilter(status) {
|
const map = {
|
0: 'success',
|
1: 'danger',
|
2: 'info'
|
}
|
return map[status]
|
},
|
statusFilter(status) {
|
const map = {
|
0: 'danger',
|
1: 'success'
|
}
|
return map[status]
|
}
|
},
|
data() {
|
return {
|
uploadAction: `${process.env.VUE_APP_BASE_API}system/user/import`,
|
headers: {
|
Authorization: `bearer ${getToken()}`
|
},
|
dialog: {
|
isVisible: false,
|
title: ''
|
},
|
userViewVisible: false,
|
tableKey: 0,
|
loading: false,
|
list: null,
|
total: 0,
|
queryParams: {},
|
sort: {},
|
selection: [],
|
pagination: {
|
size: 10,
|
num: 1
|
}
|
}
|
},
|
computed: {
|
currentUser() {
|
return this.$store.state.account.user
|
}
|
},
|
mounted() {
|
this.fetch()
|
},
|
methods: {
|
templateDownload() {
|
this.$download('system/user/template', {}, 'excel_import_user.xlsx')
|
},
|
beforeUpload(file) {
|
const type = getFileType(file.name)
|
if (type !== 'xlsx') {
|
this.$message({
|
message: this.$t('tips.onlySupportXlsx'),
|
type: 'error'
|
})
|
return false
|
} else {
|
return true
|
}
|
},
|
uploadError() {
|
this.$message({
|
message: this.$t('tips.uploadFailed'),
|
type: 'error'
|
})
|
NProgress.done()
|
},
|
uploadSuccess(response) {
|
const data = response.data
|
this.data = data.data
|
this.error = data.error
|
this.time = data.time
|
NProgress.done()
|
this.fetch()
|
this.dialogVisible = true
|
},
|
uploadProgress() {
|
NProgress.start()
|
},
|
transSex(sex) {
|
switch (sex) {
|
case '0':
|
return this.$t('common.sex.male')
|
case '1':
|
return this.$t('common.sex.female')
|
default:
|
return this.$t('common.sex.secret')
|
}
|
},
|
filterStatus(value, row) {
|
return row.status === value
|
},
|
filterSex(value, row) {
|
return row.sex === value
|
},
|
viewClose() {
|
this.userViewVisible = false
|
},
|
editClose() {
|
this.dialog.isVisible = false
|
},
|
editSuccess() {
|
this.search()
|
},
|
onSelectChange(selection) {
|
this.selection = selection
|
},
|
search() {
|
this.fetch({
|
...this.queryParams,
|
...this.sort
|
})
|
},
|
reset() {
|
this.queryParams = {}
|
this.sort = {}
|
this.$refs.table.clearSort()
|
this.$refs.table.clearFilter()
|
this.search()
|
},
|
exportExcel() {
|
this.$download('system/user/excel', {
|
pageSize: this.pagination.size,
|
pageNum: this.pagination.num,
|
...this.queryParams
|
}, `user_${new Date().getTime()}.xlsx`)
|
},
|
add() {
|
this.dialog.title = this.$t('common.add')
|
this.dialog.isVisible = true
|
},
|
resetPassword() {
|
if (!this.selection.length) {
|
this.$message({
|
message: this.$t('tips.noDataSelected'),
|
type: 'warning'
|
})
|
return
|
}
|
this.$confirm(this.$t('tips.confirmRestPassword'), this.$t('common.tips'), {
|
confirmButtonText: this.$t('common.confirm'),
|
cancelButtonText: this.$t('common.cancel'),
|
type: 'warning'
|
}).then(() => {
|
const userNames = []
|
this.selection.forEach((u) => {
|
userNames.push(u.username)
|
})
|
this.$put('system/user/password/reset', {
|
usernames: userNames.join(',')
|
}).then(() => {
|
this.$message({
|
message: this.$t('tips.resetPasswordSuccess'),
|
type: 'success'
|
})
|
this.clearSelections()
|
})
|
}).catch(() => {
|
this.clearSelections()
|
})
|
},
|
singleDelete(row) {
|
this.$refs.table.toggleRowSelection(row, true)
|
this.batchDelete()
|
},
|
batchDelete() {
|
if (!this.selection.length) {
|
this.$message({
|
message: this.$t('tips.noDataSelected'),
|
type: 'warning'
|
})
|
return
|
}
|
let contain = false
|
this.$confirm(this.$t('tips.confirmDelete'), this.$t('common.tips'), {
|
confirmButtonText: this.$t('common.confirm'),
|
cancelButtonText: this.$t('common.cancel'),
|
type: 'warning'
|
}).then(() => {
|
const userIds = []
|
this.selection.forEach((u) => {
|
if (u.userId === this.currentUser.userId) {
|
contain = true
|
return
|
}
|
userIds.push(u.userId)
|
})
|
if (contain) {
|
this.$message({
|
message: this.$t('tips.containCurrentUser'),
|
type: 'warning'
|
})
|
this.clearSelections()
|
} else {
|
this.delete(userIds)
|
}
|
}).catch(() => {
|
this.clearSelections()
|
})
|
},
|
clearSelections() {
|
this.$refs.table.clearSelection()
|
},
|
delete(userIds) {
|
this.loading = true
|
this.$delete(`system/user/${userIds}`).then(() => {
|
this.$message({
|
message: this.$t('tips.deleteSuccess'),
|
type: 'success'
|
})
|
this.search()
|
})
|
},
|
view(row) {
|
this.$refs.view.setUser(row)
|
this.userViewVisible = true
|
},
|
edit(row) {
|
let roleId = []
|
if (row.roleId && typeof row.roleId === 'string') {
|
roleId = row.roleId.split(',')
|
row.roleId = roleId
|
}
|
this.$get(`system/user/${row.userId}`).then((r) => {
|
row.deptIds = r.data.data
|
this.$refs.edit.setUser(row)
|
this.dialog.title = this.$t('common.edit')
|
this.dialog.isVisible = true
|
})
|
},
|
fetch(params = {}) {
|
params.pageSize = this.pagination.size
|
params.pageNum = this.pagination.num
|
if (this.queryParams.timeRange) {
|
params.createTimeFrom = this.queryParams.timeRange[0]
|
params.createTimeTo = this.queryParams.timeRange[1]
|
}
|
this.loading = true
|
this.$get('system/user', {
|
...params
|
}).then((r) => {
|
const data = r.data.data
|
this.total = data.total
|
this.list = data.rows
|
this.loading = false
|
})
|
},
|
sortChange(val) {
|
this.sort.field = val.prop
|
this.sort.order = val.order
|
this.search()
|
}
|
}
|
}
|
</script>
|
<style lang="scss" scoped>
|
</style>
|