| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- <template>
- <div class="app-container calendar-list-container">
- <!-- 查询和其他操作 -->
- <div class="filter-container">
- <el-input clearable class="filter-item" style="width: 200px;" placeholder="请输入角色名称" v-model="listQuery.roleName">
- </el-input>
- <el-button class="filter-item" type="primary" v-waves icon="el-icon-search" @click="handleQuery">查找</el-button>
- <el-button class="filter-item" icon="el-icon-refresh" @click="resetQuery">重置</el-button>
- <el-button class="filter-item" type="primary" @click="handleCreate" icon="el-icon-plus">添加</el-button>
- </div>
- <!-- 查询结果 -->
- <el-table size="small" :data="list" v-loading="listLoading" element-loading-text="正在查询中。。。" border fit highlight-current-row>
- <!--<el-table-column align="center" width="100px" label="角色ID" prop="id" sortable>
- </el-table-column>-->
- <el-table-column type="index" label="序号" header-align="center" align="center">
- </el-table-column>
- <el-table-column align="center" min-width="100px" label="角色名称" prop="roleName">
- </el-table-column>
- <el-table-column align="center" label="操作" width="250" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button type="primary" size="small" @click="handleUpdate(scope.row, false)">编辑</el-button>
- <el-button type="primary" size="small" @click="handleUpdate(scope.row, true)">权限</el-button>
- </template>
- </el-table-column>
- </el-table>
- <!-- 分页 -->
- <div class="pagination-container">
- <el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-page="listQuery.page"
- :page-sizes="[10,20,30,50]" :page-size="listQuery.limit" layout="total, sizes, prev, pager, next, jumper" :total="total">
- </el-pagination>
- </div>
- <!-- 添加或修改对话框 -->
- <el-dialog :title="textMap[dialogStatus]" :visible.sync="dialogFormVisible">
- <el-form :rules="rules" ref="dataForm" :model="dataForm" status-icon label-position="left" label-width="100px" style='width: 400px; margin-left:50px;'>
- <template v-if="!dialogMain">
- <el-form-item label="角色名称" prop="roleName">
- <el-input v-model="dataForm.roleName"></el-input>
- </el-form-item>
- </template>
- <template v-else>
- <el-form-item label="角色权限" prop="password">
- <el-tree
- :data="router"
- show-checkbox
- node-key="name"
- ref="tree"
- :props="defaultProps">
- </el-tree>
- </el-form-item>
- </template>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button @click="dialogFormVisible = false">取消</el-button>
- <el-button v-if="dialogStatus=='create'" type="primary" @click="createData">确定</el-button>
- <template v-else>
- <el-button v-if="!dialogMain" type="primary" @click="updateRoleNames">确定</el-button>
- <el-button v-else type="primary" @click="updateRoleList">确定</el-button>
- </template>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import { asyncRouterMap } from '@/router'
- import { addRole, roleList, updateRoleName, getRoleMenu, updateRoleMenu } from '@/api/role'
- // import { listAdmin } from '@/api/admin'
- import waves from '@/directive/waves' // 水波纹指令
- export default {
- name: 'role',
- directives: {
- waves
- },
- data() {
- return {
- list: null,
- total: null,
- listLoading: true,
- dialogMain: false,
- router: asyncRouterMap,
- listQuery: {
- page: 1,
- limit: 20,
- roleName: ''
- },
- dataForm: {
- roleName: undefined
- },
- dialogFormVisible: false,
- dialogStatus: '',
- textMap: {
- update: '编辑角色',
- create: '添加角色'
- },
- rules: {
- roleName: [
- { required: true, message: '角色名称不能为空', trigger: 'blur' }
- ]
- },
- downloadLoading: false,
- data2: [
- {
- id: 1,
- label: '一级 1',
- children: [
- {
- id: 4,
- label: '二级 1-1',
- children: [
- {
- id: 9,
- label: '三级 1-1-1'
- },
- {
- id: 10,
- label: '三级 1-1-2'
- }
- ]
- }
- ]
- }
- ],
- defaultProps: {
- children: 'children',
- label: 'label'
- }
- }
- },
- created() {
- this.getList()
- this.router = this.initRouter(this.router)
- },
- methods: {
- getList() {
- this.listLoading = true
- roleList(this.listQuery)
- .then(response => {
- this.list = response.data.data.items
- this.total = response.data.data.total
- this.listLoading = false
- })
- .catch(() => {
- this.list = []
- this.total = 0
- this.listLoading = false
- })
- },
- handleQuery() {
- this.listQuery.page = 1
- this.getList()
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.listQuery = {
- roleName: ''
- };
- this.handleQuery();
- },
- handleSizeChange(val) {
- this.listQuery.limit = val
- this.getList()
- },
- handleCurrentChange(val) {
- this.listQuery.page = val
- this.getList()
- },
- resetForm() {
- this.dataForm = {
- id: undefined,
- role: undefined
- }
- if (this.$refs.tree) {
- this.$refs.tree.setCheckedKeys([])
- }
- },
- handleCreate() {
- this.resetForm()
- this.dialogStatus = 'create'
- this.dialogMain = false
- this.dialogFormVisible = true
- this.$nextTick(() => {
- this.$refs['dataForm'].clearValidate()
- })
- },
- createData() {
- this.$refs['dataForm'].validate(valid => {
- if (valid) {
- addRole(this.dataForm).then(response => {
- this.getList()
- this.dialogFormVisible = false
- this.$notify({
- title: '成功',
- message: '创建成功',
- type: 'success',
- duration: 2000
- })
- })
- }
- })
- },
- handleUpdate(row, type) {
- this.dialogMain = type
- this.dataForm = Object.assign({}, { roleName: row.roleName, id: row.id })
- this.dialogStatus = 'update'
- this.dialogFormVisible = true
- if (type) {
- this.getRoleList()
- }
- this.$nextTick(() => {
- this.$refs['dataForm'].clearValidate()
- })
- },
- updateRoleNames() {
- this.$refs['dataForm'].validate(valid => {
- if (valid) {
- updateRoleName(this.dataForm).then(() => {
- this.dialogFormVisible = false
- this.getList()
- this.$notify({
- title: '成功',
- message: '更新成功',
- type: 'success',
- duration: 2000
- })
- })
- }
- })
- },
- updateRoleList() {
- var roleList = this.$refs.tree.getCheckedKeys().join(',')
- updateRoleMenu({
- roleId: this.dataForm.id,
- menuList: roleList
- }).then(() => {
- this.dialogFormVisible = false
- this.$notify({
- title: '成功',
- message: '更新成功',
- type: 'success',
- duration: 2000
- })
- })
- },
- initRouter(list) {
- var router = []
- list.map((obj) => {
- if (obj.meta) {
- obj.label = obj.meta.title
- if (obj.children) this.initRouter(obj.children)
- router.push(obj)
- }
- })
- return router
- },
- getRoleList() {
- getRoleMenu({ roleId: this.dataForm.id }).then(response => {
- this.$refs.tree.setCheckedKeys(response.data.data)
- })
- }
- }
- }
- </script>
|