eladmin 1.0 版本发布

This commit is contained in:
郑杰
2018-12-22 18:54:09 +08:00
commit 952ae1e8f3
137 changed files with 8136 additions and 0 deletions

View File

@@ -0,0 +1,114 @@
<template>
<div class="app-container">
<search :roles="roles" :query="query"/>
<!--表格渲染-->
<el-table v-loading="loading" :data="data" size="small" border style="width: 100%;">
<el-table-column prop="username" label="用户名"/>
<el-table-column label="头像">
<template slot-scope="scope">
<img :src="scope.row.avatar" class="el-avatar">
</template>
</el-table-column>
<el-table-column prop="email" label="邮箱"/>
<el-table-column label="状态">
<template slot-scope="scope">
<span>{{ scope.row.enabled ? '激活':'锁定' }}</span>
</template>
</el-table-column>
<el-table-column prop="createTime" label="注册日期">
<template slot-scope="scope">
<span>{{ time(scope.row.createTime) }}</span>
</template>
</el-table-column>
<el-table-column label="操作" width="150px" align="center">
<template slot-scope="scope">
<edit v-if="checkPermission(['ADMIN','USER_ALL','USER_EDIT'])" :data="scope.row" :roles="roles" :sup_this="sup_this"/>
<el-popover
v-if="checkPermission(['ADMIN','USER_ALL','USER_DELETE'])"
v-model="scope.row.delPopover"
placement="top"
width="180">
<p>确定删除本条数据吗</p>
<div style="text-align: right; margin: 0">
<el-button size="mini" type="text" @click="scope.row.delPopover = false">取消</el-button>
<el-button :loading="delLoading" type="primary" size="mini" @click="subDelete(scope.$index, scope.row)">确定</el-button>
</div>
<el-button slot="reference" type="danger" size="mini" @click="scope.row.delPopover = true">删除</el-button>
</el-popover>
</template>
</el-table-column>
</el-table>
<!--分页组件-->
<el-pagination
:total="total"
style="margin-top: 8px;"
layout="total, prev, pager, next, sizes"
@size-change="sizeChange"
@current-change="pageChange"/>
</div>
</template>
<script>
import checkPermission from '@/utils/permission' // 权限判断函数
import initData from '../../../mixins/initData'
import { del } from '@/api/user'
import { getRoleTree } from '@/api/role'
import { parseTime } from '@/utils/index'
import search from './module/search'
import edit from './module/edit'
export default {
components: { search, edit },
mixins: [initData],
data() {
return {
roles: [], delLoading: false, sup_this: this
}
},
created() {
this.getRoles()
this.$nextTick(() => {
this.init()
})
},
methods: {
checkPermission,
beforeInit() {
this.url = 'api/users'
const sort = 'id,desc'
const query = this.query
const type = query.type
const value = query.value
const enabled = query.enabled
this.params = { page: this.page, size: this.size, sort: sort }
if (type && value) { this.params[type] = value }
if (enabled !== '' && enabled !== null) { this.params['enabled'] = enabled }
return true
},
subDelete(index, row) {
this.delLoading = true
del(row.id).then(res => {
this.delLoading = false
row.delPopover = false
this.init(search.data().query)
this.$notify({
title: '删除成功',
type: 'success',
duration: 2500
})
})
},
time(time) {
return parseTime(time)
},
getRoles() {
getRoleTree().then(res => {
this.roles = res
})
}
}
}
</script>
<style scoped>
</style>