123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <template>
- <div class="app-container">
- <div class="filter-container">
- <el-button class="filter-item" style="margin-left: 10px;" type="primary" icon="el-icon-edit" @click="handleCreate">
- 添加角色
- </el-button>
- </div>
- <el-table :key="tableKey" v-loading="listLoading" :data="list" border fit highlight-current-row style="width:100%">
- <el-table-column label="序号" align="center" width="50">
- <template slot-scope="scope">{{ scope.$index + 1 }}</template>
- </el-table-column>
- <el-table-column label="角色名称" align="center">
- <template slot-scope="scope">{{ scope.row.roleName }}</template>
- </el-table-column>
- <el-table-column label="角色描述" width="100" align="center">
- <template slot-scope="scope">{{ scope.row.roleDesc }}</template>
- </el-table-column>
- <el-table-column label="创建时间" align="center">
- <template slot-scope="scope">{{ scope.row.createTime }}</template>
- </el-table-column>
- <el-table-column label="更新时间" align="center">
- <template slot-scope="scope">{{ scope.row.updateTime }}</template>
- </el-table-column>
- <el-table-column label="操作" width="250" align="center">
- <template slot-scope="scope">
- <el-button size="mini" type="primary" @click="handleShowNextLevel(scope.$index, scope.row)">分配
- </el-button>
- <el-button size="mini" type="primary" @click="handleUpdate(scope.$index, scope.row)">修改
- </el-button>
- <el-button size="mini" type="danger" @click="handleDelete(scope.$index, scope.row)">删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination v-show="total>0" :total="total" :page.sync="listQuery.pageNum" :limit.sync="listQuery.pageSize" @pagination="getList" />
- </div>
- </template>
- <script>
- import { fetchList, deleteRole } from '@/api/role'
- import Pagination from '@/components/Pagination'
- export default {
- name: 'RoleList',
- components: { Pagination },
- filters: {
- levelFilter(value) {
- if (value === 0) {
- return '一级'
- } else if (value === 1) {
- return '二级'
- }
- },
- iconFilter(value) {
- if (!value) {
- return ''
- }
- if (value.substr(0, 7) === 'el-icon') {
- return '<i class="' + value + '" />'
- } else {
- return '<svg-icon :icon-class="' + value + '" />'
- }
- },
- disableNextLevel(value) {
- if (value === 0) {
- return false
- } else {
- return true
- }
- }
- },
- data() {
- return {
- tableKey: 0,
- list: [],
- total: 5,
- listLoading: true,
- listQuery: {
- pageNum: 1,
- pageSize: 10,
- parentId: 0
- }
- }
- },
- watch: {
- $route(route) {
- this.resetParentId()
- this.getList()
- }
- },
- created() {
- this.resetParentId()
- this.getList()
- },
- methods: {
- isElementIcon(value) {
- return value.substr(0, 7) === 'el-icon'
- },
- resetParentId() {
- this.listQuery.pageNum = 1
- if (this.$route.query.parentId != null) {
- this.parentId = this.$route.query.parentId
- } else {
- this.parentId = 0
- }
- },
- getList() {
- this.listLoading = true
- fetchList(this.listQuery).then(response => {
- this.listLoading = false
- console.log(response)
- this.list = response.data.results
- this.total = response.data.totalRecord
- // Just to simulate the time of the request
- setTimeout(() => {
- this.listLoading = false
- }, 1.5 * 1000)
- })
- },
- handleShowNextLevel(index, row) {
- this.$router.push({ path: '/sys/roles', query: { parentId: row.id } })
- },
- handleUpdate(index, row) {
- this.$router.push({ path: '/sys/roles/update', query: { id: row.id } })
- },
- handleCreate() {
- this.$router.push({ path: '/sys/roles/add' })
- },
- handleDelete(index, row) {
- this.$confirm('是否要删除该菜单', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- deleteRole(row.id).then(response => {
- this.$message({
- message: '删除成功',
- type: 'success',
- duration: 1000
- })
- this.getList()
- })
- })
- }
- }
- }
- </script>
- <style scoped>
- </style>
|