This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/src/components/table/administration/UserTable.vue

167 lines
4.5 KiB
Vue
Raw Normal View History

2021-06-11 10:00:22 +08:00
<template>
<el-table
id="userTable"
ref="dataTable"
:data="tableData"
:height="height"
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"
:selectable="checkSelectable"
2021-06-11 10:00:22 +08:00
width="55">
</el-table-column>
<el-table-column
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>
<template v-else-if="item.prop === 'lastLoginTime'">
<template v-if="scope.row[item.prop]">
{{dateFormatByAppearance(scope.row[item.prop]) || '-'}}
</template>
<template v-else>
<span>-</span>
</template>
</template>
2021-06-11 10:00:22 +08:00
<template v-else-if="item.prop === 'status'">
<el-switch
v-if="scope.row.id"
v-model="scope.row.status"
active-value="1"
:disabled="(scope.row.username === loginName) || (scope.row.username==='admin' && scope.row.id===1) || scope.row.buildIn === 1"
inactive-value="0"
@change="()=>{statusChange(scope.row)}">
</el-switch>
2021-06-11 10:00:22 +08:00
</template>
<span v-else>{{scope.row[item.prop] || '-'}}</span>
2021-06-11 10:00:22 +08:00
</template>
</el-table-column>
<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'
import axios from 'axios'
import { storageKey } from '@/utils/constants'
2021-06-11 10:00:22 +08:00
export default {
name: 'userTable',
props: {
isNoData: {
type: Boolean,
default: false
}
},
2021-06-11 10:00:22 +08:00
mixins: [table],
data () {
return {
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) {
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
// }
axios.put('sys/user', user).then(response => {
if (response.status === 200) {
// this.rightBox.show = false
2021-06-11 10:00:22 +08:00
this.$message({ duration: 1000, type: 'success', message: this.$t('tip.saveSuccess') })
} else {
this.$message.error(response.data.message)
2021-06-11 10:00:22 +08:00
}
this.$emit('reload')
})
},
// 禁止勾选buildIn为1的项即禁止修改、删除admin的账号
checkSelectable (row) {
return row.buildIn !== 1
2021-06-11 10:00:22 +08:00
}
}
}
</script>