2021-06-11 10:00:22 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<el-table
|
|
|
|
|
|
id="userTable"
|
|
|
|
|
|
ref="dataTable"
|
|
|
|
|
|
:data="tableData"
|
|
|
|
|
|
:height="height"
|
2023-06-16 17:51:08 +08:00
|
|
|
|
empty-text=" "
|
2021-06-11 10:00:22 +08:00
|
|
|
|
border
|
|
|
|
|
|
@header-dragend="dragend"
|
|
|
|
|
|
@sort-change="tableDataSort"
|
|
|
|
|
|
@selection-change="selectionChange"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-table-column
|
|
|
|
|
|
:resizable="false"
|
|
|
|
|
|
align="center"
|
|
|
|
|
|
type="selection"
|
2023-06-07 14:52:24 +08:00
|
|
|
|
:selectable="checkSelectable"
|
2021-06-11 10:00:22 +08:00
|
|
|
|
width="55">
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column
|
2023-05-25 18:31:26 +08:00
|
|
|
|
v-for="(item, index) in customTableTitles"
|
|
|
|
|
|
:key="item.prop+index"
|
2021-06-11 10:00:22 +08:00
|
|
|
|
:fixed="item.fixed"
|
|
|
|
|
|
:label="item.label"
|
|
|
|
|
|
:min-width="`${item.minWidth}`"
|
|
|
|
|
|
:prop="item.prop"
|
|
|
|
|
|
:resizable="true"
|
|
|
|
|
|
:sort-orders="['ascending', 'descending']"
|
|
|
|
|
|
:sortable="item.sortable"
|
|
|
|
|
|
:width="`${item.width}`"
|
|
|
|
|
|
>
|
|
|
|
|
|
<template #header>
|
|
|
|
|
|
<span class="data-column__span">{{item.label}}</span>
|
|
|
|
|
|
<div class="col-resize-area"></div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<template #default="scope" :column="item">
|
|
|
|
|
|
<template v-if="item.prop === 'roles'">
|
|
|
|
|
|
<template v-if="scope.row[item.prop]">
|
|
|
|
|
|
{{scope.row[item.prop].map(t=>t.name).join(',')}}
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<template v-else>
|
|
|
|
|
|
<span>-</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</template>
|
2022-04-19 13:11:26 +08:00
|
|
|
|
<template v-else-if="item.prop === 'lastLoginTime'">
|
|
|
|
|
|
<template v-if="scope.row[item.prop]">
|
2023-06-25 15:49:54 +08:00
|
|
|
|
{{dateFormatByAppearance(scope.row[item.prop]) || '-'}}
|
2022-04-19 13:11:26 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
<template v-else>
|
|
|
|
|
|
<span>-</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</template>
|
2021-06-11 10:00:22 +08:00
|
|
|
|
<template v-else-if="item.prop === 'status'">
|
2023-06-05 17:52:00 +08:00
|
|
|
|
<el-switch
|
2023-05-25 18:31:26 +08:00
|
|
|
|
v-if="scope.row.id"
|
|
|
|
|
|
v-model="scope.row.status"
|
|
|
|
|
|
active-value="1"
|
2023-06-08 17:59:30 +08:00
|
|
|
|
:disabled="(scope.row.username === loginName) || (scope.row.username==='admin' && scope.row.id===1) || scope.row.buildIn === 1"
|
2023-05-25 18:31:26 +08:00
|
|
|
|
inactive-value="0"
|
|
|
|
|
|
@change="()=>{statusChange(scope.row)}">
|
2023-06-05 17:52:00 +08:00
|
|
|
|
</el-switch>
|
2021-06-11 10:00:22 +08:00
|
|
|
|
</template>
|
2023-06-25 15:49:54 +08:00
|
|
|
|
<span v-else>{{scope.row[item.prop] || '-'}}</span>
|
2021-06-11 10:00:22 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
2023-06-16 17:51:08 +08:00
|
|
|
|
<template v-slot:empty >
|
|
|
|
|
|
<div class="table-no-data" v-if="isNoData">
|
|
|
|
|
|
<div class="table-no-data__title">{{ $t('npm.noData') }}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
2021-06-11 10:00:22 +08:00
|
|
|
|
</el-table>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import table from '@/mixins/table'
|
2023-08-25 10:18:20 +08:00
|
|
|
|
import axios from 'axios'
|
2022-04-14 15:52:07 +08:00
|
|
|
|
import { storageKey } from '@/utils/constants'
|
2021-06-11 10:00:22 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: 'userTable',
|
2023-06-16 17:51:08 +08:00
|
|
|
|
props: {
|
|
|
|
|
|
isNoData: {
|
|
|
|
|
|
type: Boolean,
|
|
|
|
|
|
default: false
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2021-06-11 10:00:22 +08:00
|
|
|
|
mixins: [table],
|
|
|
|
|
|
data () {
|
|
|
|
|
|
return {
|
2022-04-14 15:52:07 +08:00
|
|
|
|
loginName: localStorage.getItem(storageKey.username),
|
2021-06-11 10:00:22 +08:00
|
|
|
|
tableTitle: [ // 原始table列
|
|
|
|
|
|
{
|
|
|
|
|
|
label: 'ID',
|
|
|
|
|
|
prop: 'id',
|
|
|
|
|
|
show: true,
|
2022-04-25 15:29:44 +08:00
|
|
|
|
width: 100,
|
2021-06-11 10:00:22 +08:00
|
|
|
|
sortable: 'custom'
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t('config.user.name'),
|
|
|
|
|
|
prop: 'name',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
sortable: 'custom'
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t('config.user.username'),
|
|
|
|
|
|
prop: 'username',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 150
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t('config.user.roles'),
|
|
|
|
|
|
prop: 'roles',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 150
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: 'E-mail',
|
|
|
|
|
|
prop: 'email',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
minWidth: 150
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t('config.user.lastLoginTime'),
|
|
|
|
|
|
prop: 'lastLoginTime',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 200
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t('config.user.lastLoginIp'),
|
|
|
|
|
|
prop: 'lastLoginIp',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 150
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t('config.user.source'),
|
|
|
|
|
|
prop: 'source',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 150
|
|
|
|
|
|
}, {
|
|
|
|
|
|
label: this.$t('config.user.enable'),
|
|
|
|
|
|
prop: 'status',
|
|
|
|
|
|
show: true,
|
|
|
|
|
|
width: 100
|
|
|
|
|
|
}
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
statusChange (user) {
|
|
|
|
|
|
if (user.roles) {
|
2022-01-25 16:25:49 +08:00
|
|
|
|
user.roleIds = user.roles.map(t => t.id).join(',')
|
2021-06-11 10:00:22 +08:00
|
|
|
|
}
|
2021-06-16 15:28:06 +08:00
|
|
|
|
// if (!user.id){
|
|
|
|
|
|
// return
|
|
|
|
|
|
// }
|
2023-08-25 10:18:20 +08:00
|
|
|
|
axios.put('sys/user', user).then(response => {
|
|
|
|
|
|
if (response.status === 200) {
|
2022-01-25 16:25:49 +08:00
|
|
|
|
// this.rightBox.show = false
|
2021-06-11 10:00:22 +08:00
|
|
|
|
this.$message({ duration: 1000, type: 'success', message: this.$t('tip.saveSuccess') })
|
|
|
|
|
|
} else {
|
2023-08-25 10:18:20 +08:00
|
|
|
|
this.$message.error(response.data.message)
|
2021-06-11 10:00:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
this.$emit('reload')
|
|
|
|
|
|
})
|
2023-06-07 14:52:24 +08:00
|
|
|
|
},
|
|
|
|
|
|
// 禁止勾选buildIn为1的项,即禁止修改、删除admin的账号
|
|
|
|
|
|
checkSelectable (row) {
|
|
|
|
|
|
return row.buildIn !== 1
|
2021-06-11 10:00:22 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|