Files
ZERO_CODE/ZeroCodeProject/project_template/permissions/permissions.vue
vermouth789 fe39320977 123
123
2026-01-11 00:11:34 +08:00

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>