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
nezha-nezha-fronted/nezha-fronted/src/components/page/config/user.vue

139 lines
4.1 KiB
Vue
Raw Normal View History

<template>
<div>
<nz-data-list
ref="dataList"
:api="url"
:custom-table-title.sync="tools.customTableTitle"
:from="fromRoute.user"
:layout="['searchInput', 'elementSet']"
:search-msg="searchMsg"
@search="search"
>
<template v-slot:top-tool-right>
2021-04-13 20:33:12 +08:00
<button id="account-add" v-has="'user_add'" :title="$t('overall.createUser')" class="top-tool-btn margin-r-10"
type="button" @click="add">
<i class="nz-icon-create-square nz-icon"></i>
</button>
2021-04-13 20:33:12 +08:00
<delete-button id="account-list-batch-delete" v-has="'user_delete'" :api="url" :delete-objs="batchDeleteObjs" @after="getTableData" @before="delFlag=true"></delete-button>
</template>
<template v-slot="slotProps">
<user-table
ref="dataTable"
v-loading="slotProps.loading"
:api="url"
:custom-table-title="tools.customTableTitle"
:height="mainTableHeight"
:table-data="tableData"
@del="del"
@edit="edit"
@orderBy="tableDataSort"
@reload="getTableData"
2021-04-13 10:00:48 +08:00
@selectionChange="selectionChange"
@showBottomBox="(targetTab, object) => { $refs.dataList.showBottomBox(targetTab, object) }"></user-table>
</template>
<template v-slot:pagination>
<Pagination ref="Pagination" :page-obj="pageObj" :table-id="tableId" @pageNo='pageNo' @pageSize='pageSize'></Pagination>
</template>
</nz-data-list>
<transition name="right-box">
<user-box v-if="rightBox.show" :obj="object" @close="closeRightBox"></user-box>
</transition>
</div>
</template>
<script>
import deleteButton from '@/components/common/deleteButton'
import userBox from '@/components/common/rightBox/administration/userBox'
import nzDataList from '@/components/common/table/nzDataList'
import dataListMixin from '@/components/common/mixin/dataList'
import userTable from '@/components/common/table/settings/userTable'
export default {
name: 'user',
components: {
nzDataList,
userBox,
deleteButton,
userTable
},
mixins: [dataListMixin],
data () {
return {
url: 'sys/user',
blankObject: { // 空白对象
id: '',
name: '',
username: '',
email: '',
pin: '',
pinChange: '',
status: '1',
createTime: '',
receiver: [],
roleIds: '',
roles: [],
lang: '',
notifications: []
},
tableId: 'userTable',
searchMsg: { // 给搜索框子组件传递的信息
zheze_none: true,
searchLabelList: [{
id: 10,
name: this.$t('config.user.user'),
type: 'input',
label: 'name',
disabled: false
}]
2021-04-13 10:00:48 +08:00
}
}
},
methods: {
statusChange (user) {
if (user.roles) {
user.roleIds = user.roles.map(t => t.id)
}
this.$put('sys/user', user).then(response => {
if (response.code === 200) {
this.rightBox.show = false
this.$message({ duration: 1000, type: 'success', message: this.$t('tip.saveSuccess') })
} else {
this.$message.error(response.msg)
}
this.getTableData()
})
},
edit (u) {
this.$get(`${this.url}/${u.id}`).then(response => {
console.log(response)
const user = response.user
if (response.code === 200) {
this.object = {
id: user.id,
name: user.name,
username: user.username,
email: user.email,
status: user.status + '',
createAt: this.utcTimeToTimezoneStr(user.createAt),
receiver: user.receiver,
roleIds: Number(user.roles.map(item => item.id).join(',')),
roles: user.roles,
lang: user.lang,
notifications: user.notifications,
pin: '',
pinChange: ''
}
this.rightBox.show = true
}
})
},
},
computed: {
isCurrentUser () {
return function (username) {
return localStorage.getItem('nz-username') === username
}
}
}
}
</script>