19 lines
800 B
Vue
19 lines
800 B
Vue
<template>
|
|
<div class="main_box">
|
|
<h2>权限管理</h2>
|
|
<el-table :data="tableData" style="width: 100%;height: 604px"
|
|
@selection-change="handleSelectionChange"
|
|
:header-cell-style="{'text-align':'center','background-color':'#389F37','height':'60px','color':'#ffffff','font-size':'15px','font-weight':'400'}"
|
|
:cell-style="{'text-align':'center'}"
|
|
:cell-class-name="cellStyle"
|
|
@select="handleSelection"
|
|
:row-class-name="tableRowClassName">
|
|
<el-table-column fixed prop="permissions_name" label="权限名"/>
|
|
<el-table-column prop="permissions_type" label="权限类型"/>
|
|
</el-table>
|
|
</div>
|
|
</template>
|
|
|
|
<script src="./permissions.js"></script>
|
|
|
|
<style scoped src="./permissions.css"></style> |